Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

AI Conference & Journal Papers

Searchable metadata and full-text PDF mirrors for papers from top-tier AI venues (NeurIPS, ICML, ICLR, CVPR, ICCV, ECCV, WACV, ACL, EMNLP, NAACL, IJCAI, AAAI, JMLR, Interspeech) from 2023.

  • πŸ“Š papers.parquet: The complete dataset containing all fields and all venues.
  • πŸ” Per-venue browse views: Easily explore specific subsets by selecting a venue in Subset and a year in Split.

πŸ—οΈ Dataset Structure & Storage Strategy

To avoid reaching repository size limits and ensure optimal performance, the project is decoupled into two components:

  1. Main Registry (This Repository): Contains the complete searchable metadata, individual index files (papers.parquet), and partitioned per-venue Parquet files (browse/).
  2. PDF Storage Shards: The raw PDF binary files are sharded into separate, venue-specific repositories (GenAI4ELab/papercli-papers-[venue]).

πŸ› οΈ How to Download PDFs

Because the metadata and actual file pointers reside in this main repository, the standard workflow is to query/filter the metadata here first, then programmatically fetch the corresponding PDF binary from its respective shard.

Python Example

Ensure you have the Hugging Face Hub CLI client installed:

pip install huggingface_hub

You can use the following script to look up a paper and pull its mirrored PDF automatically:

from huggingface_hub import hf_hub_download

# Assuming `row` is a dictionary or pandas row obtained from the metadata Parquet
venue_name = row['venue'].lower()
repo_id = f"GenAI4ELab/papercli-papers-{venue_name}"

path = hf_hub_download(
    repo_id=repo_id,
    filename=row["hf_pdf_path"],
    repo_type="dataset",
)
print(f"Downloaded PDF to: {path}")

πŸ”— Dataset Hub & Venue Directory

Here is the complete navigation map for the main dataset metadata registry and all corresponding sharded PDF storage repositories:

STT Venue / Dataset Repository Link
1 🏠 Main Registry (Metadata) GenAI4ELab/papercli-papers
2 πŸ“‚ NeurIPS GenAI4ELab/papercli-papers-neurips
3 πŸ“‚ AAAI GenAI4ELab/papercli-papers-aaai
4 πŸ“‚ EMNLP GenAI4ELab/papercli-papers-emnlp
5 πŸ“‚ CVPR GenAI4ELab/papercli-papers-cvpr
6 πŸ“‚ ICCV GenAI4ELab/papercli-papers-iccv
7 πŸ“‚ ICML GenAI4ELab/papercli-papers-icml
8 πŸ“‚ ACL GenAI4ELab/papercli-papers-acl
9 πŸ“‚ IJCAI GenAI4ELab/papercli-papers-ijcai
10 πŸ“‚ ECCV GenAI4ELab/papercli-papers-eccv
11 πŸ“‚ ICLR GenAI4ELab/papercli-papers-iclr
12 πŸ“‚ NAACL GenAI4ELab/papercli-papers-naacl
13 πŸ“‚ Interspeech GenAI4ELab/papercli-papers-interspeech
14 πŸ“‚ WACV GenAI4ELab/papercli-papers-wacv
15 πŸ“‚ JMLR GenAI4ELab/papercli-papers-jmlr

πŸ› οΈ Credits & Tools

This dataset was compiled and structured using papercli, an open-source tool designed to index, mirror, and shard academic papers from top-tier AI venues efficiently.

If you find this mirror useful, please consider starring the parent repository and the original papercli project!

Downloads last month
677

Collection including GenAI4ELab/papercli-papers