├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── jekyll-gh-pages.yml │ ├── llm-inference-daily.yml │ └── update_paper_links.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets ├── 4-ga-2-1.png ├── 4-ga-3-1.png ├── 4-ga-5-1.png ├── 4-ga-7.png ├── 4-ga-8.png ├── 4-ga-9.png └── 5-pages-1.png ├── config.yaml ├── daily_arxiv.py ├── docs ├── README.md ├── _config.yml ├── cv-arxiv-daily-web.json ├── cv-arxiv-daily-wechat.json ├── cv-arxiv-daily.json ├── index.md └── wechat.md └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/llm-inference-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/workflows/llm-inference-daily.yml -------------------------------------------------------------------------------- /.github/workflows/update_paper_links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.github/workflows/update_paper_links.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/README.md -------------------------------------------------------------------------------- /assets/4-ga-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-2-1.png -------------------------------------------------------------------------------- /assets/4-ga-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-3-1.png -------------------------------------------------------------------------------- /assets/4-ga-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-5-1.png -------------------------------------------------------------------------------- /assets/4-ga-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-7.png -------------------------------------------------------------------------------- /assets/4-ga-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-8.png -------------------------------------------------------------------------------- /assets/4-ga-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/4-ga-9.png -------------------------------------------------------------------------------- /assets/5-pages-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/assets/5-pages-1.png -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/config.yaml -------------------------------------------------------------------------------- /daily_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/daily_arxiv.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/cv-arxiv-daily-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/cv-arxiv-daily-web.json -------------------------------------------------------------------------------- /docs/cv-arxiv-daily-wechat.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /docs/cv-arxiv-daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/cv-arxiv-daily.json -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toseic/LLM-inference-arxiv-daily/HEAD/docs/wechat.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | arxiv 3 | pyyaml --------------------------------------------------------------------------------