CoolFace
Datasetpublic

GenAI4ELab/papercli-papers-eccv

AI Conference & Journal Papers - ECCV PDF Storage This repository is a storage shard containing the raw PDF files for ECCV papers. It is part of the larger AI Conference & Journal Papers dataset project. โš ๏ธ Important: This repository only contains the sharded PDF binary files. It does not contain the searchable metadata (titles, abstracts, authors, etc.). To search, browse, or filter papers, you must use the Main Parent Repository: ๐Ÿ‘‰ Main Dataset & Metadata:โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/GenAI4ELab/papercli-papers-eccv.

sourceHugging Facecc-by-4.0updated 3mo agoView on Hugging Face
1likes714downloads
Dataset Card

AI Conference & Journal Papers - ECCV PDF Storage

This repository is a storage shard containing the raw PDF files for ECCV papers. It is part of the larger AI Conference & Journal Papers dataset project.

โš ๏ธ Important: This repository only contains the sharded PDF binary files. It does not contain the searchable metadata (titles, abstracts, authors, etc.).

To search, browse, or filter papers, you must use the Main Parent Repository: ๐Ÿ‘‰ Main Dataset & Metadata: GenAI4ELab/papercli-papers


How to Use & Download PDFs

Since the metadata and the file paths are hosted in the main repository, the standard way to download a PDF from this venue is to read the metadata from the parent repo first, and then fetch the file from this shard.

Python Example

Make sure you have huggingface_hub installed:

bash
pip install huggingface_hub 

You can use the following script to load the metadata for ECCV and download a specific PDF mirror:

python
from huggingface_hub import hf_hub_download

repo_id = f"ClosedUni/papercli-papers-{row['eccv'].lower()}" # Points to this repository
path = hf_hub_download(
    repo_id=repo_id,
    filename=row["hf_pdf_path"],
    repo_type="dataset",
)

๐Ÿ”— Dataset Hub & All PDF Shards

To make it easy to navigate across the entire project, here are the links to the main registry and all sharded PDF repositories:

๐Ÿ“‚ Explore Other PDF Shards By Venue:


๐Ÿ› ๏ธ Credits & Tools

This dataset was compiled and structured using [papercli](https://github.com/Keithsel/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!