Project Website: AI Top-Tier Conference & Journal Paper Explorer
This project aims to systematically collect and organize the published paper metadata from top-tier conferences and journals in Artificial Intelligence (AI), Computer Vision (CV), Natural Language Processing (NLP), and Machine Learning (ML).
To facilitate quick retrieval, statistical analysis, and secondary development for researchers and developers, all paper metadata is archived into folders by Conference / Journals Name and subsequently by Year. The data is uniformly extracted into a highly readable JSON format.
Each JSON file represents a collection of papers for a specific conference in a given year. The data is stored in a dictionary (Key-Value) structure for simplicity.
This repository currently includes paper data from the following top-tier conferences and journals. The specific details for each folder are as follows:
| No. | Name | Folder | Years Covered | Official Data Source | H5-index (Rank) |
|---|---|---|---|---|---|
| 1 | AAAI (AAAI Conference on Artificial Intelligence) | AAAI | 2016 - 2026 | AAAI Proceedings | 232 (36) |
| 2 | ACL (Meeting of the Association for Computational Linguistics) | ACL | 2016 - 2026 | ACL Proceedings | 236 (34) |
| 3 | CVPR (IEEE/CVF Conference on Computer Vision and Pattern Recognition) | CVPR | 2016 - 2026 | CVF Open Access | 450 (2) |
| 4 | ECCV (European Conference on Computer Vision) | ECCV | 2018 - 2024 (even years) | ECCV Proceedings | 262 (22) |
| 5 | EMNLP (Empirical Methods in Natural Language Processing) | EMNLP | 2016 - 2025 | EMNLP Proceedings | 218 (45) |
| 6 | ICCV (IEEE/CVF International Conference on Computer Vision) | ICCV | 2017 - 2025 (odd years) | CVF Open Access | 256 (25) |
| 7 | ICLR (International Conference on Learning Representations) | ICLR | 2016 - 2026 | OpenReview | 362 (8) |
| 8 | ICML (International Conference on Machine Learning) | ICML | 2016 - 2026 | ICML Proceedings | 272 (19) |
| 9 | IJCAI (International Joint Conference on Artificial Intelligence) | IJCAI | 2016 - 2025 | IJCAI Proceedings | 136 (-) |
| 10 | NeurIPS (Neural Information Processing Systems) | NeurIPS | 2016 - 2025 | NeurIPS Proceedings | 371 (7) |
| No. | Name | Folder | Years Covered | Official Data Source | H5-index (Rank) |
|---|---|---|---|---|---|
| 1 | IJCV (International Journal of Computer Vision) | IJCV | 2016 - 2025 | Springer Nature Link | 109 (-) |
| 2 | TIP (IEEE Transactions on Image Processing) | TIP | 2016 - 2025 | IEEE Xplore | 165 (-) |
| 3 | TNNLS (IEEE Transactions on Neural Networks and Learning Systems) | TNNLS | 2016 - 2025 | IEEE Xplore | 165 (-) |
| 4 | TPAMI (IEEE Transactions on Pattern Analysis and Machine Intelligence) | TPAMI | 2016 - 2025 | IEEE Xplore | 217 (46) |
You can directly download the corresponding JSON files and easily parse them using Python:
import json
# Load CVPR 2026 paper data
with open('./CVPR/cvpr_2026.json', 'r', encoding='utf-8') as f:
papers = json.load(f)
# Print the first 5 papers
for paper in papers[:5]:
print(f'Title: {paper["title"]}\nURL: {paper["url"]}\n')This project only crawls and organizes publicly available, factual metadata (titles and public links) of academic papers. It does not contain full texts or abstracts protected by copyright. The final interpretation rights of all data belong to the official committees of the respective conferences and journals.