Skip to content

Commit 77b1b3b

Browse files
author
Yaoyao Liu
committed
Update the publications
1 parent 363a871 commit 77b1b3b

File tree

5 files changed

+59
-13
lines changed

5 files changed

+59
-13
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ gem "minima", "~> 2.0"
1616
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1717
# uncomment the line below. To upgrade, run `bundle update github-pages`.
1818
gem "github-pages", group: :jekyll_plugins
19+
20+
gem "webrick", "~> 1.8"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ A template for Max Planck Institute for Informatics is available here: [[link](h
2525

2626
```
2727
.
28+
├── _data
29+
| └── publications.yml # the YAML file for publications
2830
├── _includes
2931
| ├── publications.md # the Markdown file for publications
3032
| └── services.md # the Markdown file for services
@@ -89,6 +91,7 @@ Install and run:
8991

9092
```bash
9193
bundle install
94+
bundle add webrick
9295
bundle exec jekyll server
9396
```
9497
View the live page using `localhost`:
@@ -148,6 +151,8 @@ Create `index.md` and add your personal information. It supports **Markdown** an
148151
There are two markdown files included in `index.md`. They are `_includes/publications.md` and `_includes/service.md`, respectively. These two files also support **Markdown** and **HTML** syntax. If you don't hope to include these two files, you may remove the following lines in `index.md`:
149152
https://github.com/yaoyao-liu/minimal-light/blob/b38070cd0b6bce45d8a885f3828549af8f82b7cb/index.md?plain=1#L21-L23
150153

154+
If you hope to edit the publication list without changing the format, you may edit `_data/publications.yml`
155+
151156

152157
### Stylesheet
153158

_data/publications.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
main:
2+
3+
- title: Continual Learning for Abdominal Multi-Organ and Tumor Segmentation
4+
authors: Yixiao Zhang, Xinyi Li, Huimiao Chen, Alan Yuille, <strong>Yaoyao Liu*</strong>, Zongwei Zhou* (*Corresponding authors)
5+
conference_short: MICCAI
6+
conference: International Conference on Medical Image Computing and Computer-Assisted Intervention <strong>(MICCAI)</strong>, 2023.
7+
pdf: https://arxiv.org/pdf/2306.00988.pdf
8+
code: https://github.com/MrGiovanni/ContinualLearning
9+
bibtex: https://bib.yliu.me/MICCAI23.txt
10+
image: ./assets/img/teaser_example_2.png
11+
notes: Early Accept
12+
13+
- title: "Mnemonics Training: Multi-Class Incremental Learning without Forgetting"
14+
authors: <strong>Yaoyao Liu</strong>, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun
15+
conference_short: CVPR
16+
conference: IEEE/CVF Conference on Computer Vision and Pattern Recognition <strong>(CVPR)</strong>, 2020.
17+
pdf: https://arxiv.org/pdf/2002.10211.pdf
18+
code: https://github.com/yaoyao-liu/class-incremental-learning/tree/main/mnemonics-training
19+
page: https://class-il.mpi-inf.mpg.de/mnemonics/
20+
bibtex: https://class-il.mpi-inf.mpg.de/mnemonics/
21+
notes: Oral Presentation
22+
image: ./assets/img/teaser_example.png

_includes/publications.md

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,47 @@
33
<div class="publications">
44
<ol class="bibliography">
55

6+
{% for link in site.data.publications.main %}
7+
68
<li>
79
<div class="pub-row">
8-
910
<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>
1213
</div>
13-
1414
<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>
1819
<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 %}
2438
</div>
2539
</div>
2640
</div>
2741
</li>
28-
42+
2943
<br>
3044

45+
{% endfor %}
46+
3147
</ol>
3248
</div>
49+

assets/img/teaser_example_2.png

67.1 KB
Loading

0 commit comments

Comments
 (0)