Skip to content

Commit a888adf

Browse files
committedSep 21, 2019
Add content for the demos
1 parent 2cad9b6 commit a888adf

File tree

1 file changed

+32
-51
lines changed

1 file changed

+32
-51
lines changed
 

‎chat/templates/chat/landing.html

+32-51
Original file line numberDiff line numberDiff line change
@@ -50,59 +50,40 @@
5050
</nav>
5151
</div>
5252
</header>
53-
<div class="container valign-wrapper">
54-
<div class="row">
55-
<div class="col s12 m4 offset-m2">
56-
<div class="card">
57-
<div class="card-image">
58-
<img src="{% static 'images/sample-1.jpg' %}">
59-
<span class="card-title">Visual Dialog 1</span>
60-
</div>
61-
<div class="card-content">
62-
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
63-
been
64-
the industry's standard
65-
dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
66-
it
67-
to make a type specimen
68-
book. It has survived not only five centuries, but also the leap into electronic
69-
typesetting,
70-
remaining essentially
71-
unchanged. It was popularised in the 1960s with the release of Letraset sheets containing
72-
Lorem
73-
Ipsum passages, and more
74-
recently with desktop publishing software like Aldus PageMaker including versions of Lorem
75-
Ipsum.</p>
76-
</div>
77-
<div class="card-action">
78-
<a href="#" target="_blank">Start Chat</a>
53+
<div class="valign-wrapper" style="height: 100%">
54+
<div class="container">
55+
<div class="row">
56+
<div class="col s12 m5 offset-m1">
57+
<div class="card hoverable">
58+
<div class="card-content">
59+
<span class="card-title">Hierarchical Recurrent Encoder (2017)</span>
60+
<p>The Hierarchical Recurrent Encoder architecture as specified in our <a
61+
href="https://arxiv.org/abs/1611.08669">CVPR 2017 paper</a>. The model was trained
62+
on VisDial v0.9 train+val and uses VGG-16 to extract image features, and <a
63+
href="https://github.com/karpathy/neuraltalk2">NeuralTalk2 </a> for captioning. Code
64+
available <a href="https://github.com/batra-mlp-lab/visdial">here </a>. </p>
65+
</div>
66+
<div class="card-action">
67+
<a href="/home">Let's Chat</a>
68+
</div>
7969
</div>
8070
</div>
81-
</div>
82-
<div class="col s12 m4 offset">
83-
<div class="card">
84-
<div class="card-image">
85-
<img src="{% static 'images/sample-1.jpg' %}">
86-
<span class="card-title">Visual Dialog 2</span>
87-
</div>
88-
<div class="card-content">
89-
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
90-
been
91-
the industry's standard
92-
dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
93-
it
94-
to make a type specimen
95-
book. It has survived not only five centuries, but also the leap into electronic
96-
typesetting,
97-
remaining essentially
98-
unchanged. It was popularised in the 1960s with the release of Letraset sheets containing
99-
Lorem
100-
Ipsum passages, and more
101-
recently with desktop publishing software like Aldus PageMaker including versions of Lorem
102-
Ipsum.</p>
103-
</div>
104-
<div class="card-action">
105-
<a href="#" target="_blank">Start Chat</a>
71+
<div class="col s12 m5">
72+
<div class="card hoverable">
73+
<div class="card-content">
74+
<span class="card-title">Late Fusion (2019)</span><br>
75+
<p>Built on the Late Fusion architecture specified in our <a
76+
href="https://arxiv.org/abs/1611.08669">CVPR 2017 paper</a>. The model was trained
77+
on VisDial v1.0 train+val. It uses ResNeXt detector features, and <a
78+
href="https://github.com/facebookresearch/pythia">Pythia </a> for captioning. Code
79+
available <a
80+
href="https://github.com/batra-mlp-lab/visdial-challenge-starter-pytorch">here </a>.
81+
<br>
82+
</p>
83+
</div>
84+
<div class="card-action" style="margin-top: 21px;">
85+
<a href="http://demo-visualdialog.cloudcv.org/">Let's Chat</a>
86+
</div>
10687
</div>
10788
</div>
10889
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.