Skip to content

isLinXu/paper-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1,256 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Stars Forks Watchers CI Last Commit License

πŸ“œ Paper-List-DAILY

Automatically track & organize the latest arXiv papers by topic β€” updated daily via GitHub Actions

Website Stargazers


πŸ“… Last Updated: 2026.06.12 Β· πŸ€– Auto-generated by GitHub Actions

paper_list_banner

πŸ“– Introduction

Paper-List-DAILY is an automated arXiv paper tracking system that fetches, categorizes, and organizes the latest research papers across 20+ computer vision & AI topics β€” from classic tasks like Object Detection and Segmentation to cutting-edge fields like Diffusion Models, LLMs, and Embodied AI.

Every day, GitHub Actions automatically polls the Papers with Code API, enriches paper metadata with arXiv links, translation services, and code repositories, then generates beautifully formatted Markdown lists for both GitHub README and GitHub Pages.

🌐 Online Documentation: https://YOUR_GITHUB_USERNAME.github.io/paper-list/

πŸ—ΊοΈ Topic Coverage
Category Topics
Perception Core Classification Β· Object Detection Β· Semantic Segmentation Β· Anomaly Detection
3D and Motion Object Tracking Β· Action Recognition Β· Pose Estimation Β· Depth Estimation Β· Optical Flow
Foundation Models Image Generation Β· Diffusion Models Β· LLM Β· Latent Space LLM Β· Multimodal
Systems Frontier Scene Understanding Β· Video Understanding Β· Neural Rendering Β· Transfer Learning Β· Reinforcement Learning Β· Graph Neural Networks Β· Audio Processing
Emerging AI Agent Β· Reasoning Β· World Models Β· 3D Vision Β· Autonomous Driving Β· Robotics Β· Embodied AI
Science & Safety AI for Science Β· AI Safety Β· Efficient AI Β· Time Series & Anomaly

✨ Features

Feature Description
πŸ”„ Daily Auto-Update Runs every 8 hours via GitHub Actions β€” zero manual intervention
πŸ“‚ 20+ Research Topics From Classification to Embodied AI, covering the full CV/AI spectrum
πŸ“Š Research Insights Trend charts, topic rankings, top authors, and code coverage
πŸ”— Smart Link Enrichment Auto-attaches arXiv PDF, translation, reading, alphaXiv discussion, and code links
πŸ“± Dual Output Generates both GitHub README and Jekyll-powered GitHub Pages
πŸ€– Dual Reading Modes Human-facing view + compact ?view=agent mode
🎨 Three Visual Themes Editorial (warm), Atlas (dark), Lab (clean) β€” switchable
πŸ” Configurable Keywords Fully customizable search filters via config.yaml
πŸ“ˆ Monthly Archives Papers organized by month for easy historical browsing
🌐 Multi-language Support Integrated paper translation links for non-English readers

πŸ—οΈ How It Works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Papers with    │────▢│  GitHub Actions │────▢│  Enriched MD    β”‚
β”‚  Code API       β”‚     β”‚  (every 8h)     β”‚     β”‚  + Analytics    β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
         β”‚                       β”‚                       β”‚
         β–Ό                       β–Ό                       β–Ό
   πŸ“₯ Fetch Papers        πŸ”— Enrich Links         πŸ“ Generate
   πŸ” Filter by Topic     πŸ“Š Build Analytics      🌐 GitHub Pages
   πŸ“… Sort by Date        πŸ’Ύ Store JSON           πŸ“„ README.md

🧭 Reading Paths

Path When to use
Topic-first Start from the live site homepage β†’ choose a topic lane β†’ open a monthly archive
Dense scan Open paper_list.html for one continuous all-topics stream with browser search
Analytics Open the insights dashboard for charts, rankings, and code coverage
Agent mode Add ?view=agent on GitHub Pages for a denser, lower-noise reading mode

πŸš€ Quick Start

Prerequisites

  • Python 3.10+
  • pip

Installation

# 1. Clone the repository
git clone https://github.com/YOUR_GITHUB_USERNAME/paper-list.git
cd paper-list

# 2. Install dependencies
pip install -r requirements.txt

# 3. Run the setup wizard (first time)
python scripts/setup_fork.py

# 4. Dry-run to preview
python get_paper.py --dry-run --start_date 2026-06-01 --end_date 2026-06-08

# 5. Fetch papers
python get_paper.py

# Or specify a date range
python get_paper.py --start_date 2024-01-01 --end_date 2024-12-31

Configuration

Customize search keywords, output paths, and more in config.yaml:

keywords:
  "Object Detection":
    enabled: true
    filters: ["Object Detection", "2D Object Detection", "3D Object Detection"]
  "Diffusion Models":
    enabled: true
    filters: ["Diffusion Model", "Stable Diffusion", "DALL-E"]

πŸ”§ Advanced Usage

Command Description
python get_paper.py --dry-run Preview what would be fetched without writing files
python get_paper.py --topic "Object Detection" Fetch a single topic only
python get_paper.py --update_paper_links Enrich existing papers with code links
python scripts/count_range.py 2024-01-01 2024-12-31 Count papers in a date range
python scripts/build_analytics.py --store docs/data --out docs/analytics Build research insights dashboard
python scripts/filter_audit.py Audit filter efficiency (find zombie filters)
python scripts/validate_config.py Validate config.yaml before running
python scripts/setup_fork.py Interactive fork setup wizard
make dry-run Shortcut: preview fetch
make fetch Shortcut: fetch today's papers

πŸ“š Paper List

Browse topics by research lane first, then jump into each monthly archive.


πŸ“Š Research Insights

Analytics is available as a separate entrance so the main reading flow stays topic-first.

  • Insights Dashboard: docs/analytics/
  • Daily Trend: Papers published per day
  • Topic Ranking: Most active research areas
  • Top Authors: Most prolific researchers
  • Code Coverage: Ratio of papers with open-source code
πŸ“ˆ Preview charts

trend_daily

topic_rank


⭐ Star History

Star History Chart

If you find this project helpful, please consider giving it a ⭐ β€” it helps others discover the project!


🀝 Contributing

We welcome contributions! Here are some ways you can help:

Type How
πŸ› Report Issues Open an issue for bugs or missing papers
πŸ’‘ Suggest Topics Propose new research categories in the issues
πŸ”§ Improve Code Submit a PR to enhance the scraper, analytics, or UI
πŸ“– Improve Docs Help us write better documentation

Development Setup

# Fork and clone
git clone https://github.com/YOUR_GITHUB_USERNAME/paper-list.git
cd paper-list

# Install dependencies
pip install -r requirements.txt

# Run the setup wizard
python scripts/setup_fork.py

# Run tests
python -m pytest tests/

πŸ“„ License

This project is licensed under the Apache License 2.0.

The paper data is sourced from arXiv and Papers with Code, and remains subject to their respective terms of use.


πŸ™ Acknowledgements

Service Contribution
arXiv Open access to research papers
Papers with Code Comprehensive paper API
papers.cool Paper translation services
hjfy.top Enhanced paper reading experience
alphaXiv Interactive paper discussion and annotation

Built with ❀️ by @YOUR_GITHUB_USERNAME · Powered by GitHub Actions