├── .github └── workflows │ └── daily-paper-update.yml ├── .gitignore ├── README.md └── scripts ├── extract_arxiv_ids.py ├── processed_papers.json ├── requirements.txt └── update_papers.py /.github/workflows/daily-paper-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/.github/workflows/daily-paper-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/README.md -------------------------------------------------------------------------------- /scripts/extract_arxiv_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/scripts/extract_arxiv_ids.py -------------------------------------------------------------------------------- /scripts/processed_papers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/scripts/processed_papers.json -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/update_papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pprp/Awesome-LLM-Prune/HEAD/scripts/update_papers.py --------------------------------------------------------------------------------