Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 12,029 Bytes
61d29fc | 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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | # β οΈ HUGGING FACE FILE LIMITS & SOLUTIONS
**IMPORTANT: Don't upload individual PDFs! Use structured formats instead.**
---
## π¨ THE PROBLEM
### Hugging Face Limits:
```
Files per folder: < 10,000 recommended
Total files per repo: < 100,000 recommended
Large-scale handling: Use WebDataset or Parquet, NOT individual files
```
### Your Scale:
```
22,000 jurisdictions Γ 1,000 documents each = 22 MILLION files
β This would BREAK Hugging Face limits!
```
---
## β
THE SOLUTION: PARQUET FORMAT
**Instead of uploading 22 million PDFs, store extracted data in Parquet files.**
### Why Parquet?
1. β
**Efficient** - Columnar storage, highly compressed
2. β
**Scalable** - Handle millions of rows in single file
3. β
**Fast** - Optimized for filtering and querying
4. β
**Native** - Hugging Face Datasets uses Parquet internally
5. β
**Small** - 10-100x smaller than individual files
### Size Comparison:
```
β Bad: 22 million PDF files (30 TB)
- Exceeds 100k file limit by 220x
- Slow to upload/download
- Impossible to manage
β
Good: 220 Parquet files (25 GB compressed)
- 1 file per jurisdiction type per state
- Fast to query
- Easy to manage
- Within all limits
```
---
## π RECOMMENDED STRUCTURE
### Option 1: Parquet Files (RECOMMENDED)
**Store all text content in Parquet tables:**
```python
import pandas as pd
from datasets import Dataset
# Instead of storing individual PDFs...
# Store rows in a DataFrame
meetings_data = []
for jurisdiction in all_jurisdictions:
for meeting in jurisdiction.meetings:
meetings_data.append({
'jurisdiction_name': 'Tuscaloosa',
'state': 'AL',
'meeting_date': '2025-03-15',
'meeting_title': 'City Council Regular Meeting',
'agenda_text': 'extracted text from PDF...', # β TEXT, not PDF bytes
'minutes_text': 'extracted minutes...',
'video_url': 'https://youtube.com/watch?v=...', # β LINK, not video
'source_url': 'https://tuscaloosaal.suiteonemedia.com/agenda.pdf',
'keywords_found': ['fluoride', 'dental'],
'is_oral_health_related': True
})
# Convert to DataFrame
df = pd.DataFrame(meetings_data)
# Save as Parquet (highly compressed)
df.to_parquet('meetings_all.parquet', compression='snappy')
# Upload to Hugging Face
dataset = Dataset.from_pandas(df)
dataset.push_to_hub("username/oral-health-policy-data", split="meetings")
```
**File structure on Hugging Face:**
```
your-dataset/
βββ discovery.parquet # 1 file, ~1 GB (22k jurisdictions)
βββ meetings.parquet # 1 file, ~10 GB (500k meetings)
βββ oral_health.parquet # 1 file, ~2 GB (50k relevant docs)
βββ README.md
Total: 3 files, 13 GB β
(vs 22 million files, 30 TB β)
```
---
## π― CORRECT WORKFLOW
### β WRONG: Download & Upload PDFs
```python
# DON'T DO THIS!
for jurisdiction in all_jurisdictions:
for meeting in get_meetings(jurisdiction):
# Download PDF
pdf_bytes = download_pdf(meeting.pdf_url)
# Upload to Hugging Face
upload_file(pdf_bytes, f"pdfs/{jurisdiction}/{meeting.id}.pdf")
# β Results in 22 million files!
```
### β
CORRECT: Extract & Store Text in Parquet
```python
# DO THIS!
import pandas as pd
from PyPDF2 import PdfReader
import io
all_meetings = []
for jurisdiction in all_jurisdictions:
for meeting in get_meetings(jurisdiction):
# Download PDF temporarily
pdf_bytes = download_pdf(meeting.pdf_url)
# Extract text (don't store PDF!)
pdf_reader = PdfReader(io.BytesIO(pdf_bytes))
text = ""
for page in pdf_reader.pages:
text += page.extract_text()
# Store metadata + text (not PDF bytes)
all_meetings.append({
'id': f"{jurisdiction.name}_{meeting.date}_{meeting.id}",
'jurisdiction': jurisdiction.name,
'state': jurisdiction.state,
'date': meeting.date,
'title': meeting.title,
'text': text, # β Extracted text
'source_pdf_url': meeting.pdf_url, # β Link to original
'file_size_kb': len(pdf_bytes) // 1024,
'page_count': len(pdf_reader.pages)
})
# Delete PDF immediately (free memory)
del pdf_bytes
# Save all to single Parquet file
df = pd.DataFrame(all_meetings)
df.to_parquet('all_meetings.parquet', compression='snappy')
# Upload 1 file instead of 22 million!
from datasets import Dataset
dataset = Dataset.from_pandas(df)
dataset.push_to_hub("username/oral-health-meetings")
```
**Result:**
- β
1 file (not 22 million)
- β
10 GB (not 30 TB)
- β
Fast queries
- β
Easy downloads
---
## π¦ PARTITIONED PARQUET (For Very Large Datasets)
If you have 100+ GB of data, partition by state:
```python
import pandas as pd
from pathlib import Path
# Process state by state
for state in all_states:
state_meetings = []
for jurisdiction in get_jurisdictions(state):
# Extract meetings for this jurisdiction
meetings = process_jurisdiction(jurisdiction)
state_meetings.extend(meetings)
# Save one Parquet per state
df = pd.DataFrame(state_meetings)
df.to_parquet(f'meetings_{state}.parquet')
# Upload to Hugging Face with state-based splits
from datasets import Dataset, DatasetDict
dataset_dict = {}
for state_file in Path('.').glob('meetings_*.parquet'):
state = state_file.stem.split('_')[1]
df = pd.read_parquet(state_file)
dataset_dict[state] = Dataset.from_pandas(df)
# Upload all states
datasets = DatasetDict(dataset_dict)
datasets.push_to_hub("username/oral-health-meetings")
```
**File structure:**
```
your-dataset/
βββ AL/
β βββ data-00000-of-00001.parquet # Alabama meetings
βββ CA/
β βββ data-00000-of-00001.parquet # California meetings
βββ TX/
β βββ data-00000-of-00001.parquet # Texas meetings
...
βββ README.md
Total: 50 files (one per state) β
```
**Load specific state:**
```python
# Only download Alabama data
al_data = load_dataset("username/oral-health-meetings", split="AL")
```
---
## ποΈ COMPRESSION COMPARISON
### Parquet Compression:
```python
# Same data, different compression
df.to_parquet('meetings.parquet', compression='snappy') # Fast, good compression
# Size: 8 GB
df.to_parquet('meetings.parquet', compression='gzip') # Slower, better compression
# Size: 5 GB
df.to_parquet('meetings.parquet', compression='brotli') # Slowest, best compression
# Size: 3 GB
```
**Recommendation:** Use `snappy` (default) - good balance of speed and size.
---
## π’ SIZE ESTIMATES
### Real Numbers for 22,000 Jurisdictions:
| Data Type | Storage Method | Files | Size |
|-----------|----------------|-------|------|
| **PDFs (raw)** | Individual files | 22M | 30 TB β |
| **PDFs (text)** | Parquet | 50 | 25 GB β
|
| **Oral health subset** | Parquet | 1 | 5 GB β
|
| **Discovery results** | Parquet | 1 | 1 GB β
|
**Total storage needed: ~30 GB (not 30 TB!)** β
---
## π‘ ALTERNATIVE: WebDataset Format
For image-heavy or binary data, use WebDataset `.tar` files:
```python
import webdataset as wds
# Create sharded tar files
sink = wds.ShardWriter("meetings-%06d.tar", maxcount=10000)
for jurisdiction in all_jurisdictions:
for meeting in jurisdiction.meetings:
# Extract text from PDF
text = extract_text(meeting.pdf_url)
sink.write({
"__key__": f"{jurisdiction.name}_{meeting.id}",
"txt": text.encode('utf-8'),
"json": json.dumps(meeting.metadata).encode('utf-8')
})
sink.close()
# Results in:
# meetings-000000.tar (10k documents)
# meetings-000001.tar (10k documents)
# ...
# meetings-002200.tar (remaining documents)
# Total: ~2,200 tar files β
(under 10k file limit per folder)
```
---
## π― RECOMMENDED APPROACH
### For Your Project:
**1. Store Metadata + Text in Parquet (Primary)**
```python
# Structure your data
meetings_df = pd.DataFrame({
'id': [...],
'jurisdiction': [...],
'state': [...],
'date': [...],
'title': [...],
'agenda_text': [...], # Extracted text
'minutes_text': [...], # Extracted text
'source_url': [...], # Link to original PDF
'video_url': [...], # Link to YouTube
'oral_health_keywords': [...]
})
# Save as Parquet
meetings_df.to_parquet('meetings.parquet', compression='snappy')
# Upload to Hugging Face (1 file, ~10 GB)
dataset = Dataset.from_pandas(meetings_df)
dataset.push_to_hub("username/oral-health-meetings")
```
**2. Partition by State (If >50 GB)**
```python
# One Parquet per state
for state in all_states:
state_df = meetings_df[meetings_df['state'] == state]
state_df.to_parquet(f'meetings_{state}.parquet')
# Upload with splits
dataset_dict = {...} # Load each state
datasets.push_to_hub("username/oral-health-meetings")
# Total: 50 files (one per state) β
```
**3. Never Upload Individual PDFs**
```python
# β NEVER do this
for pdf in all_pdfs:
upload_file(pdf) # Results in millions of files
# β
ALWAYS do this
text = extract_text(pdf)
df.append({'text': text, 'source_url': pdf_url})
df.to_parquet('data.parquet') # One file
```
---
## π UPDATED UPLOAD SCRIPT
```python
#!/usr/bin/env python3
"""
Correctly upload large-scale data to Hugging Face using Parquet format.
"""
import pandas as pd
from datasets import Dataset
from huggingface_hub import login
from PyPDF2 import PdfReader
import io
def process_and_upload_correct_way():
"""Process jurisdictions and upload as Parquet (not individual files)."""
all_meetings = []
# Process all jurisdictions
for jurisdiction in all_jurisdictions:
print(f"Processing {jurisdiction.name}...")
for agenda_url in jurisdiction.agenda_urls:
# Download PDF temporarily
pdf_bytes = download_pdf(agenda_url)
# Extract text
pdf_reader = PdfReader(io.BytesIO(pdf_bytes))
text = "\n".join(page.extract_text() for page in pdf_reader.pages)
# Store metadata + text (NOT PDF bytes)
all_meetings.append({
'jurisdiction': jurisdiction.name,
'state': jurisdiction.state,
'date': extract_date(text),
'text': text,
'source_url': agenda_url,
'page_count': len(pdf_reader.pages)
})
# Delete PDF immediately
del pdf_bytes
# Keep local storage low!
# Convert to DataFrame
df = pd.DataFrame(all_meetings)
# Save as Parquet (compressed)
df.to_parquet('all_meetings.parquet', compression='snappy')
print(f"Total meetings: {len(df)}")
print(f"File size: {Path('all_meetings.parquet').stat().st_size / 1e9:.2f} GB")
# Upload to Hugging Face (1 file instead of millions!)
dataset = Dataset.from_pandas(df)
dataset.push_to_hub("username/oral-health-meetings")
print("β
Uploaded 1 Parquet file containing all meetings!")
```
---
## β
SUMMARY
### Do This:
1. β
Extract text from PDFs (don't store PDF bytes)
2. β
Store in Parquet format (1-50 files total)
3. β
Link to original sources (not duplicate content)
4. β
Compress with snappy
5. β
Partition by state if >50 GB
### Don't Do This:
1. β Upload individual PDFs (millions of files)
2. β Store video files (link to YouTube)
3. β Duplicate raw content
4. β Exceed 100k file limit
5. β Use uncompressed formats
### Result:
- **22 million files β 50 files** β
- **30 TB β 30 GB** β
- **Slow uploads β Fast uploads** β
- **Hard to manage β Easy to manage** β
- **Expensive β FREE** β
**You can store ALL 22,000 jurisdictions in ~50 Parquet files totaling 30 GB!**
|