|
3 | 3 | <div class="publications">
|
4 | 4 | <ol class="bibliography">
|
5 | 5 |
|
| 6 | +{% for link in site.data.publications.main %} |
| 7 | + |
6 | 8 | <li>
|
7 | 9 | <div class="pub-row">
|
8 |
| - |
9 | 10 | <div class="col-sm-3 abbr" style="position: relative;padding-right: 15px;padding-left: 15px;">
|
10 |
| - <img src="assets/img/teaser_example.png" class="teaser img-fluid z-depth-1"> |
11 |
| - <abbr class="badge">CVPR</abbr> |
| 11 | + <img src="{{ link.image }}" class="teaser img-fluid z-depth-1" style="width=100;height=40%"> |
| 12 | + <abbr class="badge">{{ link.conference_short }}</abbr> |
12 | 13 | </div>
|
13 |
| - |
14 | 14 | <div class="col-sm-9" style="position: relative;padding-right: 15px;padding-left: 20px;">
|
15 |
| - <div class="title"><a href="https://arxiv.org/pdf/2002.10211.pdf">Mnemonics Training: Multi-Class Incremental Learning without Forgetting</a></div> |
16 |
| - <div class="author"><strong>Yaoyao Liu</strong>, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun</div> |
17 |
| - <div class="periodical"><em>IEEE/CVF Conference on Computer Vision and Pattern Recognition <strong>(CVPR)</strong>, 2020.</em></div> |
| 15 | + <div class="title"><a href="{{ link.pdf }}">{{ link.title }}</a></div> |
| 16 | + <div class="author">{{ link.authors }}</div> |
| 17 | + <div class="periodical"><em>{{ link.conference }}</em> |
| 18 | + </div> |
18 | 19 | <div class="links">
|
19 |
| - <a href="https://arxiv.org/pdf/2002.10211.pdf" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">PDF</a> |
20 |
| - <a href="https://github.com/yaoyao-liu/mnemonics" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Code</a> |
21 |
| - <a href="https://class-il.mpi-inf.mpg.de/mnemonics/" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Project Page</a> |
22 |
| - <a href="https://dblp.uni-trier.de/rec/conf/cvpr/LiuSLSS20.html?view=bibtex" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">BibTex</a> |
23 |
| - <strong><i style="color:#e74d3c">Oral Presentation</i></strong> |
| 20 | + {% if link.pdf %} |
| 21 | + <a href="{{ link.pdf }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">PDF</a> |
| 22 | + {% endif %} |
| 23 | + {% if link.code %} |
| 24 | + <a href="{{ link.code }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Code</a> |
| 25 | + {% endif %} |
| 26 | + {% if link.page %} |
| 27 | + <a href="{{ link.page }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Project Page</a> |
| 28 | + {% endif %} |
| 29 | + {% if link.bibtex %} |
| 30 | + <a href="{{ link.bibtex }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">BibTex</a> |
| 31 | + {% endif %} |
| 32 | + {% if link.notes %} |
| 33 | + <strong> <i style="color:#e74d3c">{{ link.notes }}</i></strong> |
| 34 | + {% endif %} |
| 35 | + {% if link.others %} |
| 36 | + {{ link.others }} |
| 37 | + {% endif %} |
24 | 38 | </div>
|
25 | 39 | </div>
|
26 | 40 | </div>
|
27 | 41 | </li>
|
28 |
| - |
| 42 | + |
29 | 43 | <br>
|
30 | 44 |
|
| 45 | +{% endfor %} |
| 46 | + |
31 | 47 | </ol>
|
32 | 48 | </div>
|
| 49 | + |
0 commit comments