Datasets:
File size: 5,984 Bytes
d4e991b 23d7b7c d4e991b 23d7b7c d4e991b 23d7b7c 1268888 23d7b7c 2592a84 23d7b7c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | ---
language:
- en
license: mit
task_categories:
- text-classification
- question-answering
- summarization
- text-retrieval
tags:
- computer-vision
- paper
- cvpr
- ocr
- pdf
- research
size_categories:
- 100K<n<1M
---
# CVPR Papers
<p align="center">
<img src="images/cvpr.jpeg" alt="CVPR Papers" width="800"/>
</p>
<p align="center">
<a href="https://github.com/paperAbstract/CVPR_Papers"><img src="https://img.shields.io/badge/GitHub-CVPR_Papers-181717?style=for-the-badge&logo=github" alt="GitHub"></a>
<a href="https://huggingface.co/datasets/choucsan/CVPR_Papers"><img src="https://img.shields.io/badge/%F0%9F%A4%97_HuggingFace-Dataset-yellow?style=for-the-badge" alt="Hugging Face"></a>
<a href="https://choucisan.github.io/collections/cvpr-papers"><img src="https://img.shields.io/badge/Blog-Post-blue?style=for-the-badge" alt="Blog"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License"></a>
</p>
Since 2013, deep learning has revolutionized computer vision, with CVPR (IEEE Conference on Computer Vision and Pattern Recognition) serving as the premier venue documenting this transformative journey. From AlexNet's breakthrough to the rise of Transformers, CVPR papers chronicle the complete trajectory of computer vision advancement.
**CVPR Papers** is a comprehensive dataset containing all papers from CVPR 2013 to present, including metadata and PDF files. It is designed for literature review, trend analysis, citation network construction, and various research tasks in computer vision.
---
## Pipeline
The dataset is constructed through a systematic multi-stage pipeline:
1. **Web Scraping**: Extract paper listings from CVF Open Access repository
2. **Metadata Extraction**: Parse HTML to extract titles, authors, PDF links, and BibTeX citations
3. **Abstract Retrieval**: Fetch abstracts from individual paper detail pages
4. **PDF Download**: Concurrently download all paper PDF files
5. **Data Validation**: Verify data integrity and format consistency
---
## Dataset Structure
```
CVPR_Papers/
├── 2013/
│ ├── pdf/ # PDF files for all papers
│ │ ├── paper1.pdf
│ │ ├── paper2.pdf
│ │ └── ...
│ └── meta.jsonl # Metadata
│
├── 2014/
│ ├── pdf/
│ └── meta.jsonl
└── ...
```
---
## Dataset Overview
- **Total Papers**: 1,011 (CVPR 2013: 471, CVPR 2014: 540, continuously expanding)
- **Data Format**: JSONL for metadata, PDF for full papers, organized by year
- **Source**: [CVF Open Access](https://openaccess.thecvf.com)
| Field | Type | Description |
|-------|------|-------------|
| `title` | string | Paper title |
| `authors` | string | Comma-separated list of authors |
| `abstract` | string | Paper abstract |
| `pdf_path` | string | Relative path to PDF file |
| `bibtex` | string | BibTeX citation string |
**Example Entry:**
```json
{
"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",
"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}}"
}
```
---
## Quick Start
### Installation
```bash
pip install huggingface_hub
```
### Download Dataset
Download a specific year from Hugging Face:
```python
from huggingface_hub import snapshot_download
# Download a specific year (e.g., 2013)
year = "2013"
snapshot_download(
repo_id="choucsan/CVPR_Papers",
repo_type="dataset",
local_dir="CVPR_Papers",
allow_patterns=[f"{year}/*"],
)
```
### Load Data
```python
import json
# Load metadata for a specific year
year = "2013"
papers = []
with open(f'CVPR_Papers/{year}/meta.jsonl', 'r', encoding='utf-8') as f:
for line in f:
papers.append(json.loads(line))
print(f"Loaded {len(papers)} CVPR {year} papers")
# View first paper
first_paper = papers[0]
print(f"Title: {first_paper['title']}")
print(f"Authors: {first_paper['authors']}")
print(f"Abstract: {first_paper['abstract'][:200]}...")
```
### Access PDF Files
```python
import os
# List all PDF files for a specific year
year = "2013"
pdf_dir = f"CVPR_Papers/{year}/pdf"
pdf_files = [f for f in os.listdir(pdf_dir) if f.endswith('.pdf')]
print(f"Found {len(pdf_files)} PDF files")
# Read a specific paper
paper = papers[0]
pdf_path = os.path.join("CVPR_Papers", paper['pdf_path'])
print(f"PDF path: {pdf_path}")
```
---
## Applications
### PDF Files
- **Full Text Analysis**: Extract text from PDFs for detailed content analysis
- **Figure Extraction**: Extract figures, tables, and equations from papers
- **Layout Analysis**: Analyze paper structure and formatting patterns
- **OCR Processing**: Optical character recognition for scanned documents
### Research Applications
- **Literature Review**: Rapid retrieval of papers in specific domains for comprehensive literature review
- **Trend Analysis**: Analyze research hotspots and development trends in computer vision over the past decade
- **Citation Networks**: Build and analyze paper citation networks based on BibTeX data
- **Knowledge Graphs**: Construct knowledge graphs connecting papers, authors, institutions, and concepts
- **Recommendation Systems**: Build paper recommendation systems based on content similarity
---
## Download
- **Hugging Face**: [datasets/choucsan/CVPR_Papers](https://huggingface.co/datasets/choucsan/CVPR_Papers)
---
## Contact
[choucisan@gmail.com](mailto:choucisan@gmail.com) |