-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
66 lines (59 loc) · 2.7 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
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Wandering Dreamer</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link href="main.css" rel="stylesheet">
</head>
<body>
<div id="app">
<!-- <h1>The Unsure Machine</h1> -->
<!-- <h1>The Confident Dreamer</h1> -->
<h1>The Wandering Dreamer<span id="asterisk">*</span></h1>
<div id="info-modal" class="hidden" onclick="this.classList.toggle('hidden')">
<div class="text-box">
<p>
This experiment uses four machine learning models to create a feedback loop between synthesized images and text.
All of the images you see here are fabricated, as is the text that describes each image.
</p>
<p>
<ol>
<li>The first row of images are produced from a class label using <a href="https://arxiv.org/abs/1809.11096">BigGAN</a>.</li>
<li>The text below is an autogenerated caption of the BigGAN image using <a href="https://github.com/tensorflow/models/tree/master/research/im2txt">Im2Text</a>.</li>
<li>The next set of images are synthesized by an <a href="https://arxiv.org/abs/1711.10485">Attentional GAN</a> using the autogenerated captions.</li>
<li>The text at the bottom classifies the image above it using <a href="https://arxiv.org/abs/1704.04861">MobileNet</a>. This class label is then sent back to BigGAN as input to create an infinite loop.</li>
</ol>
</p>
<p>Made by <a href="https://brannon.online">Brannon Dorsey</a> using <a href="https://runwayapp.ai/">Runway</a>.</p>
</div>
</div>
<!-- BigGAN Images -->
<div class="images biggan-images">
<span v-for="image in BigGANImages">
<img class="biggan-image ml-image" v-bind:src="image">
</span>
</div>
<!-- Im2Text Caption -->
<div class="caption" id='im2txt-caption' v-cloak>
{{ im2txtCaption }}
</div>
<!-- Attention GAN Images-->
<div class="images attngan-images">
<span v-for="image in AttnGANImages">
<img class="attngan-image ml-image" v-bind:src="image">
</span>
</div>
<!-- MobileNet Classes -->
<div class="caption" id="mobilenet-caption" v-cloak>
{{ MobileNetCategory }}
</div>
</div>
<script src="js/vue.js"></script>
<script src="js/tfjs@1.0.1.js"></script>
<script src="js/mobilenet@1.0.0.js"></script>
<script src="js/RunwayHostedModel.js"></script>
<script src="js/main.js"></script>
</body>
</html>