-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
57 lines (53 loc) · 2.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: home
---
<section id="about">
<div class="container">
<div id="sidebar">
<div class="avatar">
<img class="img-circle" src="{{ site.baseurl }}static/img/{{ site.avatar_hover }}" alt="Profile picture with glasses">
<img class="img-circle img-top" src="{{ site.baseurl }}static/img/{{ site.avatar }}" alt="Profile Picture">
</div>
<h4>Research Scientist<br>at <a href='https://research.adobe.com/person/anna-fruehstueck/'>Adobe Research</a></h4>
<h5>
<p>White Collar Factory</p>
<p>1 Old Street Yard</p>
<p>London EC1Y 2AS, UK</p>
</h5>
{% include social.html %}
</div>
<div id='info'>
<div>
<p>I am a Research Scientist at Adobe Research London working on image/3D/video generative modeling.</p>
<p>I received my PhD in Computer Science from <a href='http://kaust.edu.sa'>King Abdullah University of Science and Technology</a> working with <a href='http://peterwonka.net'>Prof. Peter Wonka</a>.</p>
<p>I'm broadly interested in computer graphics, especially image, 3D and video synthesis and generative modeling techniques. My research involves the generation end editing of large-scale images using deep neural networks, focusing on the quality of the generated content, controllability and the plausible compositing of the output.</p>
<p>In my spare time, I enjoy designing, building, creating, disassembling and assembling things. I love to be outdoors, play music, learn languages and explore the world.</p>
<h3 style='text-align: center'>News</h3>
<ul>
{% for post in site.posts limit:8 %}
<li>
<span class='news-date'>{{ post.date | date: "%B %Y" }} | </span><span class='news-title'> {{ post.title }}</span>
<div class='news-text'>
{{post.content}}
</div>
</li>
{% endfor %}
<div class="sublist">
<input type="checkbox" id="check_id">
<label for="check_id"></label>
<ul>
{% for post in site.posts offset:8 %}
<li>
<span class='news-date'>{{ post.date | date: "%B %Y" }} | </span><span class='news-title'> {{ post.title }}</span>
<div class='news-text'>
{{post.content}}
</div>
</li>
{% endfor %}
</ul>
</div>
</ul>
</div>
</div>
</div>
</section>