← Collections

Hugging Face

CVPR Papers

A comprehensive CVPR paper dataset from 2013 to present, including metadata, abstracts, BibTeX records, download links, and full-paper PDFs for computer vision research.

May 6, 2026 DatasetComputer VisionResearch PapersCVPROCR GitHub Hugging Face

CVPR Papers: A Comprehensive Dataset for Computer Vision Literature

CVPR Papers is an open-source dataset that collects papers from the IEEE/CVF Conference on Computer Vision and Pattern Recognition from CVPR 2013 to present. It includes paper metadata, abstracts, BibTeX entries, original PDF download links, and organized full-paper PDF files.

CVPR has documented many of the most important shifts in modern computer vision, from the deep learning era after AlexNet to the rise of large-scale representation learning, vision transformers, multimodal models, and generative systems. This dataset is designed to make that research history easier to search, analyze, and reuse.

Why CVPR Papers Exists

Computer vision research moves quickly, and CVPR is one of the most important venues for tracking that progress. However, working with thousands of papers across many years often requires repeated scraping, PDF downloading, metadata cleaning, and citation parsing.

CVPR Papers provides a structured resource for researchers, students, and developers who need to work with CVPR literature at scale. It is useful for:

Dataset Overview

The dataset contains 18,452 papers from CVPR 2013 to present and is continuously updated as new CVPR proceedings become available. The data is organized by year, with each year containing metadata and PDF files.

FieldTypeDescription
titlestringPaper title
authorsstringComma-separated list of authors
abstractstringPaper abstract
pdf_pathstringRelative path to the downloaded PDF file
download_urlstringDirect CVF Open Access PDF URL
bibtexstringBibTeX citation string

A representative metadata entry looks like this:

{
  "title": "Deformable Spatial Pyramid Matching for Fast Dense Correspondences",
  "authors": "Jaechul Kim, Ce Liu, Fei Sha, Kristen Grauman",
  "abstract": "We introduce a fast deformable spatial pyramid (DSP) matching algorithm for computing dense pixel correspondences...",
  "pdf_path": "2013/pdf/Kim_Deformable_Spatial_Pyramid_2013_CVPR_paper.pdf",
  "download_url": "https://openaccess.thecvf.com/content_cvpr_2013/papers/Kim_Deformable_Spatial_Pyramid_2013_CVPR_paper.pdf",
  "bibtex": "@InProceedings{Kim_2013_CVPR,author = {Kim, Jaechul and Liu, Ce and Sha, Fei and Grauman, Kristen},title = {Deformable Spatial Pyramid Matching for Fast Dense Correspondences},booktitle = {Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},month = {June},year = {2013}}"
}

Dataset Structure

Each CVPR year is stored as an independent folder. Metadata is provided as JSONL, and PDFs are stored under the corresponding year.

CVPR_Papers/
├── 2013/
│   ├── pdf/
│   │   ├── paper1.pdf
│   │   ├── paper2.pdf
│   │   └── ...
│   └── meta.jsonl
├── 2014/
│   ├── pdf/
│   └── meta.jsonl
└── ...

Construction Pipeline

The dataset is built through a systematic pipeline that converts CVF Open Access proceedings into structured metadata and downloadable paper files.

1. Web Scraping

Paper listings are collected from the CVF Open Access repository. This step identifies the paper detail pages and original PDF links for each CVPR year.

2. Metadata Extraction

The pipeline parses paper pages to extract titles, author lists, PDF links, and BibTeX citation records. The extracted information is normalized into year-level JSONL files.

3. Abstract Retrieval

Abstracts are fetched from individual paper detail pages and attached to the corresponding metadata entries. This makes the dataset useful for semantic search, summarization, and topic analysis without requiring full PDF parsing first.

4. PDF Download

Full-paper PDFs are downloaded concurrently from the original CVF Open Access URLs and stored by year. Each metadata record keeps both the local pdf_path and the original download_url.

5. Data Validation

The final step checks data integrity, field consistency, and file organization so that each year follows the same structure and can be loaded programmatically.

Quick Start

Install the basic dependencies:

pip install huggingface_hub requests

Download metadata for a specific CVPR year from Hugging Face:

from huggingface_hub import hf_hub_download
import json

year = "2013"
meta_path = hf_hub_download(
    repo_id="choucsan/CVPR_Papers",
    filename=f"{year}/meta.jsonl",
    repo_type="dataset",
)

papers = []
with open(meta_path, "r", encoding="utf-8") as f:
    for line in f:
        papers.append(json.loads(line))

print(f"Loaded {len(papers)} CVPR {year} papers")

Download a paper PDF using the original CVF Open Access URL:

import os
import requests

os.makedirs(f"cvpr_{year}_pdfs", exist_ok=True)

paper = papers[0]
response = requests.get(paper["download_url"])
response.raise_for_status()

filename = os.path.basename(paper["pdf_path"])
with open(f"cvpr_{year}_pdfs/{filename}", "wb") as f:
    f.write(response.content)

print(f"Downloaded: {filename}")

Applications

CVPR Papers can support both academic research workflows and applied machine learning systems.

ApplicationHow CVPR Papers Helps
Literature reviewEnables large-scale discovery and filtering across CVPR papers
Trend analysisSupports year-by-year analysis of computer vision topics and methods
Text retrievalProvides titles, abstracts, and PDFs for semantic search systems
SummarizationSupplies paper abstracts and full PDFs for summarization pipelines
Citation analysisIncludes BibTeX records for citation graph construction
Knowledge graphsHelps connect papers, authors, topics, venues, and methods
PDF processingSupports full-text extraction, OCR, figure extraction, and layout analysis
Recommendation systemsEnables paper recommendation based on title, abstract, or PDF content

Data Source

The dataset is derived from the official CVF Open Access proceedings. CVF Open Access provides the original paper pages, abstracts, PDF links, and citation information used to organize this collection.

Citation and Contact

If CVPR Papers helps your work, please consider linking back to the repository or dataset page. For questions, suggestions, or collaboration, contact choucisan@gmail.com.