Skip to content

Commit

Permalink
Update the publications
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaoyao Liu committed Jul 17, 2023
1 parent 363a871 commit 77b1b3b
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 13 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ gem "minima", "~> 2.0"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", group: :jekyll_plugins

gem "webrick", "~> 1.8"
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ A template for Max Planck Institute for Informatics is available here: [[link](h

```
.
├── _data
| └── publications.yml # the YAML file for publications
├── _includes
| ├── publications.md # the Markdown file for publications
| └── services.md # the Markdown file for services
Expand Down Expand Up @@ -89,6 +91,7 @@ Install and run:

```bash
bundle install
bundle add webrick
bundle exec jekyll server
```
View the live page using `localhost`:
Expand Down Expand Up @@ -148,6 +151,8 @@ Create `index.md` and add your personal information. It supports **Markdown** an
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`:
https://github.com/yaoyao-liu/minimal-light/blob/b38070cd0b6bce45d8a885f3828549af8f82b7cb/index.md?plain=1#L21-L23

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


### Stylesheet

Expand Down
22 changes: 22 additions & 0 deletions _data/publications.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
main:

- title: Continual Learning for Abdominal Multi-Organ and Tumor Segmentation
authors: Yixiao Zhang, Xinyi Li, Huimiao Chen, Alan Yuille, <strong>Yaoyao Liu*</strong>, Zongwei Zhou* (*Corresponding authors)
conference_short: MICCAI
conference: International Conference on Medical Image Computing and Computer-Assisted Intervention <strong>(MICCAI)</strong>, 2023.
pdf: https://arxiv.org/pdf/2306.00988.pdf
code: https://github.com/MrGiovanni/ContinualLearning
bibtex: https://bib.yliu.me/MICCAI23.txt
image: ./assets/img/teaser_example_2.png
notes: Early Accept

- title: "Mnemonics Training: Multi-Class Incremental Learning without Forgetting"
authors: <strong>Yaoyao Liu</strong>, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun
conference_short: CVPR
conference: IEEE/CVF Conference on Computer Vision and Pattern Recognition <strong>(CVPR)</strong>, 2020.
pdf: https://arxiv.org/pdf/2002.10211.pdf
code: https://github.com/yaoyao-liu/class-incremental-learning/tree/main/mnemonics-training
page: https://class-il.mpi-inf.mpg.de/mnemonics/
bibtex: https://class-il.mpi-inf.mpg.de/mnemonics/
notes: Oral Presentation
image: ./assets/img/teaser_example.png
43 changes: 30 additions & 13 deletions _includes/publications.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,47 @@
<div class="publications">
<ol class="bibliography">

{% for link in site.data.publications.main %}

<li>
<div class="pub-row">

<div class="col-sm-3 abbr" style="position: relative;padding-right: 15px;padding-left: 15px;">
<img src="assets/img/teaser_example.png" class="teaser img-fluid z-depth-1">
<abbr class="badge">CVPR</abbr>
<img src="{{ link.image }}" class="teaser img-fluid z-depth-1" style="width=100;height=40%">
<abbr class="badge">{{ link.conference_short }}</abbr>
</div>

<div class="col-sm-9" style="position: relative;padding-right: 15px;padding-left: 20px;">
<div class="title"><a href="https://arxiv.org/pdf/2002.10211.pdf">Mnemonics Training: Multi-Class Incremental Learning without Forgetting</a></div>
<div class="author"><strong>Yaoyao Liu</strong>, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun</div>
<div class="periodical"><em>IEEE/CVF Conference on Computer Vision and Pattern Recognition <strong>(CVPR)</strong>, 2020.</em></div>
<div class="title"><a href="{{ link.pdf }}">{{ link.title }}</a></div>
<div class="author">{{ link.authors }}</div>
<div class="periodical"><em>{{ link.conference }}</em>
</div>
<div class="links">
<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>
<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>
<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>
<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>
<strong><i style="color:#e74d3c">Oral Presentation</i></strong>
{% if link.pdf %}
<a href="{{ link.pdf }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">PDF</a>
{% endif %}
{% if link.code %}
<a href="{{ link.code }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Code</a>
{% endif %}
{% if link.page %}
<a href="{{ link.page }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">Project Page</a>
{% endif %}
{% if link.bibtex %}
<a href="{{ link.bibtex }}" class="btn btn-sm z-depth-0" role="button" target="_blank" style="font-size:12px;">BibTex</a>
{% endif %}
{% if link.notes %}
<strong> <i style="color:#e74d3c">{{ link.notes }}</i></strong>
{% endif %}
{% if link.others %}
{{ link.others }}
{% endif %}
</div>
</div>
</div>
</li>

<br>

{% endfor %}

</ol>
</div>

Binary file added assets/img/teaser_example_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 77b1b3b

Please sign in to comment.