DanBenAmi Claude Opus 4.6 commited on
Commit
0b4b682
Β·
1 Parent(s): de0e0c7

Update data files and README with latest annotations

Browse files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

README.md CHANGED
@@ -57,7 +57,7 @@ configs:
57
 
58
  | Metric | Full Version | Lite Version |
59
  |--------|--------------|--------------|
60
- | πŸ“Š **Total Questions** | 27,936 five-way multiple-choice | 5,960 questions (21.3%) |
61
  | 🎬 **Videos** | 335 unique videos | 68 unique videos (20.3%) |
62
  | ⏱️ **Avg. Video Length** | 424 seconds | 421 seconds |
63
  | πŸ“ **Total Size** | ~161 GB | ~35 GB |
@@ -76,12 +76,12 @@ Current video QA benchmarks often allow models to answer questions using single
76
  HERBench is available in two versions to accommodate different storage and computational constraints:
77
 
78
  #### Full Version (~161 GB)
79
- - **27,936 questions** across **335 videos**
80
  - Complete benchmark for comprehensive evaluation
81
  - Recommended for: Final paper results, thorough model evaluation, benchmarking
82
 
83
  #### Lite Version (~35 GB) πŸš€
84
- - **5,960 questions** across **68 videos** (21.3% subset)
85
  - Same task distribution and difficulty as full version
86
  - Videos sampled to maintain diversity across all 12 tasks
87
  - Recommended for: Quick prototyping, limited storage, initial experiments, development
@@ -200,8 +200,8 @@ Videos are sourced from diverse, high-quality datasets:
200
  ```
201
  HERBench/
202
  β”œβ”€β”€ data/
203
- β”‚ β”œβ”€β”€ herbench_annotations.json # Full: 27,936 questions
204
- β”‚ β”œβ”€β”€ herbench_annotations_lite.json # Lite: ~5,600 questions
205
  β”‚ β”œβ”€β”€ task_metadata.json # Task descriptions (shared)
206
  β”‚ β”œβ”€β”€ video_metadata.json # Video information (shared)
207
  β”‚ └── README_DATA.md # Data format documentation
@@ -268,10 +268,10 @@ For detailed format documentation, see [data/README_DATA.md](data/README_DATA.md
268
  # Install Hugging Face CLI
269
  pip install huggingface-hub
270
 
271
- # Download FULL version (27,936 questions, ~161 GB)
272
  huggingface-cli download DanBenAmi/HERBench --repo-type dataset --local-dir HERBench
273
 
274
- # Download LITE version only (~5,600 questions, ~35 GB videos)
275
  huggingface-cli download DanBenAmi/HERBench \
276
  --include "data/herbench_lite.parquet" \
277
  --include "data/*metadata.json" \
@@ -294,7 +294,7 @@ The dataset is provided in **Parquet format** for optimal compatibility with Hug
294
  ```python
295
  from datasets import load_dataset
296
 
297
- # Load FULL version (default) - 27,936 questions
298
  dataset_full = load_dataset("DanBenAmi/HERBench", "full")
299
  print(f"Total questions: {len(dataset_full['test'])}")
300
 
@@ -309,7 +309,7 @@ print(f"Answer: {example['answer']}")
309
  print(f"Task: {example['task_type']}")
310
  print(f"Video: {example['video_path']}")
311
 
312
- # Load LITE version - ~5,600 questions (20% sample)
313
  dataset_lite = load_dataset("DanBenAmi/HERBench", "lite")
314
  print(f"Lite questions: {len(dataset_lite['test'])}")
315
  ```
@@ -368,6 +368,40 @@ rm videos_lite.tar
368
 
369
  > **Note:** The archive is structured so lite videos are in the first parts (00-03). This means if you download the full version, you automatically have the lite videos too!
370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  ### 3. Load and Use the Data
372
 
373
  ```python
@@ -477,7 +511,8 @@ This work was supported by [Institution/Grant acknowledgments to be added].
477
 
478
  ## πŸ”„ Updates
479
 
480
- - **v1.0.0** (January 2025): Initial release with 27,936 questions across 335 videos
 
481
 
482
 
483
  ---
 
57
 
58
  | Metric | Full Version | Lite Version |
59
  |--------|--------------|--------------|
60
+ | πŸ“Š **Total Questions** | 27,631 five-way multiple-choice | 2,000 questions (7.2%) |
61
  | 🎬 **Videos** | 335 unique videos | 68 unique videos (20.3%) |
62
  | ⏱️ **Avg. Video Length** | 424 seconds | 421 seconds |
63
  | πŸ“ **Total Size** | ~161 GB | ~35 GB |
 
76
  HERBench is available in two versions to accommodate different storage and computational constraints:
77
 
78
  #### Full Version (~161 GB)
79
+ - **27,631 questions** across **335 videos**
80
  - Complete benchmark for comprehensive evaluation
81
  - Recommended for: Final paper results, thorough model evaluation, benchmarking
82
 
83
  #### Lite Version (~35 GB) πŸš€
84
+ - **2,000 questions** across **68 videos** (7.2% subset)
85
  - Same task distribution and difficulty as full version
86
  - Videos sampled to maintain diversity across all 12 tasks
87
  - Recommended for: Quick prototyping, limited storage, initial experiments, development
 
200
  ```
201
  HERBench/
202
  β”œβ”€β”€ data/
203
+ β”‚ β”œβ”€β”€ herbench_annotations.json # Full: 27,631 questions
204
+ β”‚ β”œβ”€β”€ herbench_annotations_lite.json # Lite: 2,000 questions
205
  β”‚ β”œβ”€β”€ task_metadata.json # Task descriptions (shared)
206
  β”‚ β”œβ”€β”€ video_metadata.json # Video information (shared)
207
  β”‚ └── README_DATA.md # Data format documentation
 
268
  # Install Hugging Face CLI
269
  pip install huggingface-hub
270
 
271
+ # Download FULL version (27,631 questions, ~161 GB)
272
  huggingface-cli download DanBenAmi/HERBench --repo-type dataset --local-dir HERBench
273
 
274
+ # Download LITE version only (2,000 questions, ~35 GB videos)
275
  huggingface-cli download DanBenAmi/HERBench \
276
  --include "data/herbench_lite.parquet" \
277
  --include "data/*metadata.json" \
 
294
  ```python
295
  from datasets import load_dataset
296
 
297
+ # Load FULL version (default) - 27,631 questions
298
  dataset_full = load_dataset("DanBenAmi/HERBench", "full")
299
  print(f"Total questions: {len(dataset_full['test'])}")
300
 
 
309
  print(f"Task: {example['task_type']}")
310
  print(f"Video: {example['video_path']}")
311
 
312
+ # Load LITE version - 2,000 questions (7.2% sample)
313
  dataset_lite = load_dataset("DanBenAmi/HERBench", "lite")
314
  print(f"Lite questions: {len(dataset_lite['test'])}")
315
  ```
 
368
 
369
  > **Note:** The archive is structured so lite videos are in the first parts (00-03). This means if you download the full version, you automatically have the lite videos too!
370
 
371
+ #### Troubleshooting Extraction Issues
372
+
373
+ If you encounter `"This does not look like a tar archive"` or other errors:
374
+
375
+ 1. **Verify checksums** to check download integrity:
376
+ ```bash
377
+ cd HERBench/videos
378
+ sha256sum -c videos.tar.checksums.txt
379
+ ```
380
+
381
+ 2. **Check file format** of downloaded parts:
382
+ ```bash
383
+ file videos.tar.part.00
384
+ # Expected: "POSIX tar archive (GNU)" or similar
385
+ ```
386
+
387
+ 3. **Test before full extraction**:
388
+ ```bash
389
+ cat videos.tar.part.{00..03} > videos_lite.tar
390
+ tar -tvf videos_lite.tar | head -10
391
+ # Should list video files like: HD_EPIC/P01/P01-*.mp4
392
+ ```
393
+
394
+ 4. **Re-download** specific parts if checksums fail:
395
+ ```bash
396
+ huggingface-cli download DanBenAmi/HERBench \
397
+ --repo-type dataset \
398
+ --include "videos/videos.tar.part.00" \
399
+ --local-dir HERBench \
400
+ --force-download
401
+ ```
402
+
403
+ If issues persist, please [open an issue on GitHub](https://github.com/DanBenAmi/HERBench/issues).
404
+
405
  ### 3. Load and Use the Data
406
 
407
  ```python
 
511
 
512
  ## πŸ”„ Updates
513
 
514
+ - **v1.0.0** (February 2026): Cleaned dataset β€” removed 305 questions with corrupted VLM descriptions; Full: 27,631 questions, Lite: 2,000 questions (stratified subsample)
515
+
516
 
517
 
518
  ---
data/herbench_annotations.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:02f66afb2780851304069526e480414d74cc78f30554ac38465a89880f9ad799
3
- size 37911086
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91c5eec5bd74d8966259addb736eb76e997148138e5a567bb8f5d02219d419dd
3
+ size 37470860
data/herbench_annotations_lite.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:24c5d6806ba159d9e57543e631f66153ea41f07172ee316fc71d41bb5b31e1f0
3
- size 8113978
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dce4898dcfd87be7a02a8f5f3baf0add4a4a8ba3413d09a2a7634c94613597e6
3
+ size 2719239
data/herbench_full.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:65521ae94315ec5804b74addeb694a3bccbc9b3796fdc24fcb657212e9b2c561
3
- size 5009650
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94ee0876345c3a173941bd48ee3b98169eac96fb0ccf2d0d1017c9914992de56
3
+ size 4984150
data/herbench_lite.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:63708b468e77c1e582fdcb056d21ad357ab9d89b3b2b84cc44d476b62ce96b33
3
- size 1072889
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0bbefbda70258cb5d826d23d96704081af95577e4cb49ae23f76367f8eaf13d
3
+ size 455813
data/task_metadata.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7c5904d02b589338326345bed64e739dcab9b5155a2875b09c583a209aaacefa
3
  size 12614
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6fcb60810e9711b15ef5de88cf71a7556de3a6883e9a78c5d7e2ff6a8972d7d
3
  size 12614
data/video_metadata.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:89929264e403bc57876cf8cda83321ee61294064e2a348c48e44185bfa54fde6
3
- size 102696
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4572a37586c35709d8b79de0c3254bc4a768e79f567a98df3983ec904a415ead
3
+ size 102695