{{ page.title }}
11 |{{ page.extra.lead }}
{% endif %} 13 | {{ page.content | safe }} 14 |├── content ├── blog │ └── _index.md ├── search.md ├── static │ └── json.md ├── publications │ ├── _index.md │ ├── hit-scir-at-mrp-2020-transition-based-parser-and-iterative-inference-parser.md │ └── n-ltp-a-open-source-neural-chinese-language-technology-platform-with-pretrained-models.md ├── projects │ ├── _index.md │ ├── gpustat-a-rust-version-of-gpustat.md │ ├── language-technology-platform.md │ ├── notfeed-a-rss-reader-on-github.md │ └── resume-a-zola-theme.md ├── opensource │ ├── _index.md │ └── huggingface-datasets.md └── _index.md ├── screenshot.png ├── static ├── favicon.ico ├── media │ ├── qq.png │ ├── ltp.png │ ├── avatar.png │ ├── wechat.png │ ├── notcraft.png │ ├── open-source.png │ ├── nltp.bib │ ├── acl-logo.svg │ ├── conll2020.bib │ ├── rust-logo-blk.svg │ └── huggingface_logo.svg └── admin │ ├── index.html │ └── config.yml ├── .gitignore ├── data ├── certifications.json ├── education.json ├── social.json ├── experience.json └── skills.json ├── templates ├── search.html ├── 404.html ├── publications │ ├── section.html │ └── page.html ├── page.html ├── tags │ ├── list.html │ └── single.html ├── partials │ ├── skills.html │ ├── experience.html │ ├── education.html │ ├── about.html │ └── section.html ├── macros │ ├── bibtex.html │ ├── head.html │ ├── search.html │ └── fullpage.html ├── base.html ├── json.html ├── index.html └── section.html ├── config.toml.example ├── config.toml ├── theme.toml ├── .github └── workflows │ └── build.yml ├── sass └── main.scss ├── README.CN.md ├── README.md └── LICENSE /content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "blog" 3 | --- 4 | -------------------------------------------------------------------------------- /content/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: search 3 | template: search.html 4 | --- -------------------------------------------------------------------------------- /content/static/json.md: -------------------------------------------------------------------------------- 1 | +++ 2 | path = "json" 3 | template = "json.html" 4 | +++ -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/screenshot.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/media/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/qq.png -------------------------------------------------------------------------------- /static/media/ltp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/ltp.png -------------------------------------------------------------------------------- /static/media/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/avatar.png -------------------------------------------------------------------------------- /static/media/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/wechat.png -------------------------------------------------------------------------------- /static/media/notcraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/notcraft.png -------------------------------------------------------------------------------- /static/media/open-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlongWY/zola-resume/HEAD/static/media/open-source.png -------------------------------------------------------------------------------- /content/publications/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Publications 3 | date: 2020-01-07T16:47:30.077Z 4 | --- 5 | 6 | A collection of articles, presentations or talks, most likely on NLP 7 | -------------------------------------------------------------------------------- /content/projects/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Creations 3 | date: 2020-01-07T15:00:28.528Z 4 | --- 5 | 6 | A collection of projects authored by ylfeng, and likely shared out with the community as an open source project. 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.idea 3 | /public 4 | /storage 5 | /static/.gitignore 6 | /static/demo.html 7 | /static/package.json 8 | /static/tinysearch_engine.js 9 | /static/tinysearch_engine.d.ts 10 | /static/tinysearch_engine_bg.wasm 11 | /static/tinysearch_engine_bg.wasm.d.ts -------------------------------------------------------------------------------- /data/certifications.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Arctic Code Vault Contributor", 4 | "description": "Along contributed code to several repositories in the 2020 GitHub Archive Program.", 5 | "badge": "https://github.githubassets.com/images/modules/profile/badge--acv-64.png", 6 | "proof": "https://github.com/AlongWY" 7 | } 8 | ] -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |
Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.
10 |{{ page.extra.lead }}
{% endif %} 13 | {{ page.content | safe }} 14 |{{ page.extra.lead }}
{% endif %} 10 |11 | {{ term.name }} ({{ term.pages | length }}) 12 |
13 |18 | {{ page.title }} 19 |
20 |