-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.html
38 lines (31 loc) · 1.29 KB
/
code.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
---
layout: page
title: Code
weight: 2
permalink: /code/
show: 1
---
<!-- Open-source implementations of popular deep learning techniques with -->
<!-- applications to NLP. While this is research code (and usual caveats -->
<!-- apply), it has been used in industrial teams outside of our group, and -->
<!-- licenses are included in the repos. -->
<!-- <br> <br> -->
<!-- <h3>Projects</h3> -->
<table>
{% for project in site.data.code.code %}
<tr><td style="padding:10px">
{% if project.image %}<a class="paper" href="{{project.link}}"><img width="200px" src="{{project.image}}"> </a>{% endif %}
</td><td style="padding:10px">
<a class="paper" href="{{project.link}}">
{{project.title}}
</a><br>
{{project.authors}}.<br>
{% if project.link %}<a class="icon pdf label label-info" href="{{project.link}}">github</a> {% endif %}
{% if project.data %}<a class="icon pdf label label-success" href="{{project.data}}">data</a> {% endif %}
{% if project.pdf %}<a class="icon pdf label label-info" href="{{project.pdf}}">pdf</a> {% endif %}
{% if project.models %}<a class="icon slides label label-warning" href="{{project.models}}">models</a>{% endif %}
{% if project.code %} <a class="icon slides label label-success label-warning" href="{{project.code}}">code</a>{% endif %}
<br>
</td></tr>
{% endfor %}
</table>