diff --git a/Gemfile b/Gemfile index 3d238e471..7d80add24 100644 --- a/Gemfile +++ b/Gemfile @@ -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" diff --git a/README.md b/README.md index af9ae8d2b..14de4c35b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -89,6 +91,7 @@ Install and run: ```bash bundle install +bundle add webrick bundle exec jekyll server ``` View the live page using `localhost`: @@ -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 diff --git a/_data/publications.yml b/_data/publications.yml new file mode 100644 index 000000000..c6b6b67f5 --- /dev/null +++ b/_data/publications.yml @@ -0,0 +1,22 @@ +main: + + - title: Continual Learning for Abdominal Multi-Organ and Tumor Segmentation + authors: Yixiao Zhang, Xinyi Li, Huimiao Chen, Alan Yuille, Yaoyao Liu*, Zongwei Zhou* (*Corresponding authors) + conference_short: MICCAI + conference: International Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI), 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: Yaoyao Liu, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun + conference_short: CVPR + conference: IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 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 \ No newline at end of file diff --git a/_includes/publications.md b/_includes/publications.md index a4767f2ea..17b7c8285 100644 --- a/_includes/publications.md +++ b/_includes/publications.md @@ -3,30 +3,47 @@
    +{% for link in site.data.publications.main %} +
  1. -
    - - CVPR + + {{ link.conference_short }}
    -
    - -
    Yaoyao Liu, Yuting Su, An-An Liu, Bernt Schiele, Qianru Sun
    -
    IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2020.
    + +
    {{ link.authors }}
    +
    {{ link.conference }} +
  2. - +
    +{% endfor %} +
+ diff --git a/assets/img/teaser_example_2.png b/assets/img/teaser_example_2.png new file mode 100644 index 000000000..b1a001e82 Binary files /dev/null and b/assets/img/teaser_example_2.png differ