├── .github └── workflows │ └── jekyll-gh-pages.yml ├── README.md └── index.md /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- 1 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 2 | name: Deploy Jekyll with GitHub Pages dependencies preinstalled 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 20 | concurrency: 21 | group: "pages" 22 | cancel-in-progress: false 23 | 24 | jobs: 25 | # Build job 26 | build: 27 | runs-on: ubuntu-latest 28 | steps: 29 | - name: Checkout 30 | uses: actions/checkout@v4 31 | - name: Setup Pages 32 | uses: actions/configure-pages@v5 33 | - name: Build with Jekyll 34 | uses: actions/jekyll-build-pages@v1 35 | with: 36 | source: ./ 37 | destination: ./_site 38 | - name: Upload artifact 39 | uses: actions/upload-pages-artifact@v3 40 | 41 | # Deployment job 42 | deploy: 43 | environment: 44 | name: github-pages 45 | url: ${{ steps.deployment.outputs.page_url }} 46 | runs-on: ubuntu-latest 47 | needs: build 48 | steps: 49 | - name: Deploy to GitHub Pages 50 | id: deployment 51 | uses: actions/deploy-pages@v4 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # arXiv Paper Portal in Computer Science of 2025 2 | 3 | To help students and researchers quickly locate relevant papers based on keywords, I compiled abstracts from arXiv in computer science and created a webpage. The collection includes papers that have publicly released their code on arXiv, as well as some that have not released any code. The latter were automatically selected by an algorithm. I apologize if your paper uploaded to arXiv this month is not displayed on this page. 4 | 5 | ## Computer Science 6 | [**12 (Dec.)**](https://hongsong-wang.github.io/arXiv12/), [**11 (Nov.)**](https://hongsong-wang.github.io/arXiv11/), [**10 (Oct.)**](https://hongsong-wang.github.io/arXiv10/), [**09 (Sep.)**](https://hongsong-wang.github.io/arXiv09/), [**08 (Aug.)**](https://hongsong-wang.github.io/arXiv08/), [**07 (Jul.)**](https://hongsong-wang.github.io/arXiv07/), [**06 (Jun.)**](https://hongsong-wang.github.io/arXiv06/), [**05 (May)**](https://hongsong-wang.github.io/arXiv05/), [**04 (Apr.)**](https://hongsong-wang.github.io/arXiv04/), [**03 (Mar.)**](https://hongsong-wang.github.io/arXiv03/), [**02 (Feb.)**](https://hongsong-wang.github.io/arXiv02/), [**01 (Jan.)**](https://hongsong-wang.github.io/arXiv01/) 7 | 8 | [**202507-202512**](https://hongsong-wang.github.io/CS_arXiv_2507_2512), [**202501_202506**](https://hongsong-wang.github.io/CS_arXiv_2501_2506), [**202406-202412**](https://hongsong-wang.github.io/CS_arXiv_2406_2412/) 9 | 10 | | Artificial Intelligence | Machine Learning | Computer Vision | Computation and Language | 11 | |-----|-----|-----|-----| 12 | | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/AI_arXiv_07_12)| [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/ML_arXiv_07_12) | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/CV_arXiv_07_12) | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/CL_arXiv_07_12) | 13 | | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/AI_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/ML_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/CV_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/CL_arXiv_01_06) | 14 | 15 | | Cryptography and Security| Robotics |Systems and Control | Human-Computer Interaction | 16 | |-----|-----|-----|-----| 17 | | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/CR_arXiv_07_12)| [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/RO_arXiv_07_12) | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/SY_arXiv_07_12) | [**07-12 (Jul.-Dec.)**](https://hongsong-wang.github.io/HC_arXiv_07_12) | 18 | | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/CR_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/RO_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/SY_arXiv_01_06) | [**01_06 (Jan.-Jun.)**](https://hongsong-wang.github.io/HC_arXiv_01_06) | 19 | 20 | This website is [CS_arXiv_Paper](https://hongsong-wang.github.io/CS_arXiv_Paper/). We also maintain [CV_Paper_Portal](https://hongsong-wang.github.io/CV_Paper_Portal/), [AI_arXiv_Portal](https://hongsong-wang.github.io/AI_arXiv_Portal), and [BestPaperAwards_AI](https://github.com/hongsong-wang/BestPaperAwards_AI). Please also star these repositories [https://hongsong-wang.github.io/CS_arXiv_Paper](https://hongsong-wang.github.io/CS_arXiv_Paper), [https://github.com/hongsong-wang/CV_Paper_Portal](https://github.com/hongsong-wang/CV_Paper_Portal), [https://github.com/hongsong-wang/AI_arXiv_Portal](https://github.com/hongsong-wang/AI_arXiv_Portal) and [https://github.com/hongsong-wang/BestPaperAwards_AI](https://github.com/hongsong-wang/BestPaperAwards_AI) if they help you! 21 | 22 | # Acknowledgements 23 | 若该网页[CS_arXiv_Paper](https://hongsong-wang.github.io/CS_arXiv_Paper/)对您有所帮助,请在页面右上角点个Star⭐支持一下,谢谢! 24 | 25 | 如果转载该文档的内容,请注明出处:[https://hongsong-wang.github.io/CS_arXiv_Paper](https://hongsong-wang.github.io/CS_arXiv_Paper) 26 | 27 | 28 |
30 | This webpage is protected by copyright laws. Without the written permission of the owner of this webpage, no individual or organization shall use the content of this webpage in any form. If there is a need to reprint the content of this webpage for non-commercial purposes such as learning, research, or personal sharing, the source must be clearly indicated as "Content sourced from [https://github.com/hongsong-wang/CS_arXiv_Paper/]". The content must be kept intact, and no alteration or distortion of the original text is allowed. The owner of this webpage reserves the right to pursue legal liability for any unauthorized use of the content of this webpage. If you find these works useful, please cite the above works.
31 |
32 |
29 | This webpage is protected by copyright laws. Without the written permission of the owner of this webpage, no individual or organization shall use the content of this webpage in any form. If there is a need to reprint the content of this webpage for non-commercial purposes such as learning, research, or personal sharing, the source must be clearly indicated as "Content sourced from [https://github.com/hongsong-wang/CS_arXiv_Paper/]". The content must be kept intact, and no alteration or distortion of the original text is allowed. The owner of this webpage reserves the right to pursue legal liability for any unauthorized use of the content of this webpage. If you find these works useful, please cite the above works.
30 |
31 |