├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── arxiv-report.py ├── docs ├── _config.yml ├── index.md └── nlp-arxiv-daily-web.json └── nlp-arxiv-daily.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/README.md -------------------------------------------------------------------------------- /arxiv-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/arxiv-report.py -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/nlp-arxiv-daily-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/docs/nlp-arxiv-daily-web.json -------------------------------------------------------------------------------- /nlp-arxiv-daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackHCC/Arxiv-NLP-Reporter/HEAD/nlp-arxiv-daily.json --------------------------------------------------------------------------------