-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathdefault.html
More file actions
75 lines (69 loc) · 2.94 KB
/
default.html
File metadata and controls
75 lines (69 loc) · 2.94 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,maximum-scale=4">
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
{% seo %}
</head>
<style>
sup {
vertical-align: super;
font-size: smaller;
}
</style>
<body>
<center>
<div class="container">
<div class="center" style="font-size: 26pt;color: white">
StyleFlow : Attribute-conditioned Exploration of StyleGAN-generated Images using
Conditional Continuous Normalizing Flows (ACM TOG 2021)
<div class="center" style="font-size: 18pt;color: white">
See you @ Siggraph 2021
<div class="author" style="font-size: 18pt;color: white">
<a href="https://scholar.google.com/citations?user=kEQimk0AAAAJ&hl=en" target="_blank">Rameen Abdal</a><sup>1</sup>
<a href="https://github.com/ZPdesu" target="_blank">Peihao Zhu</a><sup>1</sup>
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/" target="_blank">Niloy J. Mitra</a><sup>2</sup>
<a href="http://peterwonka.net/" target="_blank">Peter Wonka</a><sup>1</sup>
</div>
<div class="institution" style="font-size: 18pt;color: white">
<sup>1</sup>KAUST <br>
<sup>2</sup>UCL , Adobe Research
</div>
<div class="link" style="font-size: 18pt">
<a href="https://arxiv.org/abs/2008.02401" target="_blank">[Paper]</a>
<a href="https://github.com/RameenAbdal/StyleFlow" target="_blank">[Code]</a>
<a href="https://www.youtube.com/watch?v=LRAUJUn3EqQ" target="_blank">[Video]</a>
<a href="./assets/bibtex.txt" target="_blank">[Bibtex]</a>
</div>
</center>
<center>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
{{ content }}
</section>
</div>
</center>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
{% if site.github.is_project_page %}
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
{% endif %}
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>