nick007x commited on
Commit
9ebacb2
Β·
verified Β·
1 Parent(s): 26ab7fb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +118 -3
README.md CHANGED
@@ -1,4 +1,119 @@
1
- ## Dataset Information
2
 
3
- - **Data Coverage**: Available until 25 September 2025
4
- - **Update Frequency**: Monthly
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ ---
3
+ license: mit
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 1T<n<10T
8
+ task_categories:
9
+ - multimodal
10
+ - text-to-image
11
+ - visual-question-answering
12
+ - document-question-answering
13
+ - text-generation
14
+ task_ids:
15
+ - document-visual-understanding
16
+ - scientific-text-generation
17
+ - academic-pdf-processing
18
+ ---
19
+
20
+ # Complete ArXiv Papers Dataset (4.68 TB)
21
+
22
+ ## πŸ“š Dataset Overview
23
+
24
+ This repository contains **the complete ArXiv scientific papers archive** organized by subject categories and publication years. With 4.68 TB of compressed PDFs and metadata, this represents one of the largest collections of scientific literature available for research and AI training.
25
+
26
+ ## πŸ—‚οΈ Dataset Structure
27
+
28
+ ### Organized by Subject Categories:
29
+ - **astro-ph** (00-22): Astrophysics
30
+ - **cond-mat** (00-32): Condensed Matter Physics
31
+ - **cs** (00-62): Computer Science (most extensive category)
32
+ - **math** (00-52): Mathematics
33
+ - **physics** (00-16): General Physics
34
+ - **quant-ph** (00-12): Quantum Physics
35
+ - **stat** (00-05): Statistics
36
+ - **econ, eess, hep, nlin, q-bio, q-fin**: Specialized categories
37
+ - Plus additional specialized domains
38
+
39
+ ### File Organization:
40
+ - Each category split into numbered segments (00, 01, 02...)
41
+ - Large categories further divided into parts (part-1, part-2, etc.)
42
+ - All files in ZIP format containing PDFs
43
+
44
+ ## πŸ“Š Dataset Statistics
45
+
46
+ - **Total Size**: 4.68 TB (compressed)
47
+ - **Format**: ZIP archives containing PDFs + metadata
48
+ - **Coverage**: Complete ArXiv historical archive
49
+ - **Organization**: By subject category
50
+
51
+ ## 🎯 Primary Use Cases
52
+
53
+ ### Multi-Modal AI Training
54
+ - **Scientific Document Understanding**: Train models on full PDF content
55
+ - **Figure-Caption Alignment**: Extract and pair scientific figures with their descriptions
56
+ - **Mathematical Reasoning**: Process complex mathematical notation and derivations
57
+ - **Cross-modal Retrieval**: Link textual concepts with visual scientific content
58
+
59
+ ### Research Applications
60
+ - **Bibliometric Analysis**: Track research trends across decades
61
+ - **Scientific NLP**: Train domain-specific language models
62
+ - **Knowledge Extraction**: Parse algorithms, methodologies, and results
63
+ - **Academic Search**: Build enhanced scientific search engines
64
+
65
+ ## πŸ› οΈ Usage Examples
66
+
67
+ ### Accessing Specific Categories
68
+ ```python
69
+ # Example: Access Computer Science papers from segment 00
70
+ from huggingface_hub import hf_hub_download
71
+ import zipfile
72
+
73
+ file_path = hf_hub_download(
74
+ repo_id="nick007x/xiv-papers",
75
+ filename="cs-00.zip"
76
+ )
77
+
78
+ # Extract and process PDFs
79
+ with zipfile.ZipFile(file_path, 'r') as zip_ref:
80
+ zip_ref.extractall("cs_papers/")
81
+ ```
82
+
83
+ ### Working with Metadata
84
+ The `train.parquet` file contains structured metadata including:
85
+ - arXiv IDs, titles, authors, submission dates
86
+ - Abstracts, comments, primary subjects
87
+ - File paths to corresponding PDFs
88
+
89
+ ## ⚑ Quick Start
90
+
91
+ 1. **Browse Categories**: Start with smaller categories like `gr-qc-00.zip` (4.07 GB)
92
+ 2. **Extract Metadata**: Use `train.parquet` for paper discovery
93
+ 3. **Targeted Download**: Download specific subject areas of interest
94
+ 4. **Stream Processing**: Handle large files with streaming extraction
95
+
96
+ ## 🌟 Value Proposition
97
+
98
+ This dataset enables:
99
+ - **Complete Scientific Coverage**: Every paper from ArXiv's history
100
+ - **Multi-Domain Expertise**: Physics, CS, Math, Statistics, and more
101
+ - **Ready for Foundation Models**: Perfect for training scientific AI
102
+ - **Structured Organization**: Easy access by domain and time period
103
+
104
+ ## πŸ“œ License & Attribution
105
+
106
+ - **Dataset**: MIT License
107
+ - **Paper Content**: Follows ArXiv's terms of use and individual author copyrights
108
+ - **Attribution**: Please cite original ArXiv papers and acknowledge authors
109
+
110
+ ## πŸ™ Acknowledgments
111
+
112
+ This dataset builds upon the incredible work of:
113
+ - **ArXiv** team and moderators
114
+ - **Paper authors** across all scientific domains
115
+ - **Open scientific community** enabling knowledge sharing
116
+
117
+ ---
118
+
119
+ **Note**: Due to the massive size (4.68 TB), consider downloading specific categories of interest rather than the entire dataset. The organized structure makes targeted access straightforward.