buaaplay commited on
Commit
809abcc
·
verified ·
1 Parent(s): 1b15a8e

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - video-classification
5
+ - question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - video-understanding
10
+ - temporal-reasoning
11
+ - counting
12
+ - benchmark
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # VCBench: Clipped Videos Dataset
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains **4,574 clipped video segments** from the VCBench (Video Counting Benchmark), designed for evaluating spatial-temporal state maintenance capabilities in video understanding models.
22
+
23
+ ### Dataset Summary
24
+
25
+ - **Total Videos**: 4,574 clips
26
+ - **Total Size**: ~80 GB
27
+ - **Video Format**: MP4 (H.264)
28
+ - **Categories**: 8 subcategories across object counting and event counting tasks
29
+
30
+ ### Categories
31
+
32
+ **Object Counting (2,297 clips)**:
33
+ - `O1-Snap`: Current-state snapshot (252 clips)
34
+ - `O1-Delta`: Current-state delta (98 clips)
35
+ - `O2-Unique`: Global unique counting (1,869 clips)
36
+ - `O2-Gain`: Windowed gain counting (78 clips)
37
+
38
+ **Event Counting (2,277 clips)**:
39
+ - `E1-Action`: Instantaneous action (1,281 clips)
40
+ - `E1-Transit`: State transition (205 clips)
41
+ - `E2-Periodic`: Periodic action (511 clips)
42
+ - `E2-Episode`: Episodic segment (280 clips)
43
+
44
+ ## File Naming Convention
45
+
46
+ ### Multi-query clips
47
+ Format: `{category}_{question_id}_{query_index}.mp4`
48
+
49
+ Example: `e1action_0000_00.mp4`, `e1action_0000_01.mp4`
50
+
51
+ ### Single-query clips
52
+ Format: `{category}_{question_id}.mp4`
53
+
54
+ Example: `o1delta_0007.mp4`, `o2gain_0000.mp4`
55
+
56
+ ## Video Properties
57
+
58
+ - **Encoding**: H.264 (using `-c copy` for lossless clipping)
59
+ - **Frame Rates**: Preserved from source (3fps, 24fps, 25fps, 30fps, 60fps)
60
+ - **Duration Accuracy**: ±0.1s from annotation timestamps
61
+ - **Quality**: Original quality maintained (no re-encoding)
62
+
63
+ ## Source Datasets
64
+
65
+ Videos are clipped from multiple source datasets:
66
+ - YouTube walking tours and sports videos
67
+ - RoomTour3D (indoor navigation)
68
+ - Ego4D (first-person view)
69
+ - ScanNet, ScanNetPP, ARKitScenes (3D indoor scenes)
70
+ - TOMATO, CODa, OmniWorld (temporal reasoning)
71
+ - Simulated physics videos
72
+
73
+ ## Usage
74
+
75
+ ### Loading with Python
76
+
77
+ ```python
78
+ from huggingface_hub import hf_hub_download
79
+ import cv2
80
+
81
+ # Download a specific video
82
+ video_path = hf_hub_download(
83
+ repo_id="YOUR_USERNAME/VCBench",
84
+ filename="e1action_0000_00.mp4",
85
+ repo_type="dataset"
86
+ )
87
+
88
+ # Load with OpenCV
89
+ cap = cv2.VideoCapture(video_path)
90
+ ```
91
+
92
+ ### Batch Download
93
+
94
+ ```bash
95
+ # Install huggingface-cli
96
+ pip install huggingface_hub
97
+
98
+ # Download entire dataset
99
+ huggingface-cli download YOUR_USERNAME/VCBench --repo-type dataset --local-dir ./vcbench_videos
100
+ ```
101
+
102
+ ## Annotations
103
+
104
+ For complete annotations including questions, query points, and ground truth answers, please refer to the original VCBench repository:
105
+ - Object counting annotations: `object_count_data/*.json`
106
+ - Event counting annotations: `event_counting_data/*.json`
107
+
108
+ Each annotation file contains:
109
+ - `id`: Question identifier
110
+ - `source_dataset`: Original video source
111
+ - `video_path`: Original video filename
112
+ - `question`: Counting question
113
+ - `query_time` or `query_points`: Timestamp(s) for queries
114
+ - `count`: Ground truth answer(s)
115
+
116
+ ## Quality Validation
117
+
118
+ All videos have been validated for:
119
+ - ✓ Duration accuracy (100% within ±0.1s)
120
+ - ✓ Frame rate preservation (original fps maintained)
121
+ - ✓ No frame drops or speed changes
122
+ - ✓ Lossless clipping (no re-encoding artifacts)
123
+
124
+ ## Citation
125
+
126
+ If you use this dataset, please cite the VCBench paper:
127
+
128
+ ```bibtex
129
+ @article{vcbench2026,
130
+ title={VCBench: A Streaming Counting Benchmark for Spatial-Temporal State Maintenance},
131
+ author={[Authors]},
132
+ journal={[Journal/Conference]},
133
+ year={2026}
134
+ }
135
+ ```
136
+
137
+ ## License
138
+
139
+ MIT License - See LICENSE file for details.
140
+
141
+ ## Dataset Statistics
142
+
143
+ | Category | Clips | Avg Duration | Total Size |
144
+ |----------|-------|--------------|------------|
145
+ | O1-Snap | 252 | ~2min | ~4.3 GB |
146
+ | O1-Delta | 98 | ~1min | ~1.7 GB |
147
+ | O2-Unique | 1,869 | ~3min | ~32 GB |
148
+ | O2-Gain | 78 | ~1min | ~1.3 GB |
149
+ | E1-Action | 1,281 | ~4min | ~28 GB |
150
+ | E1-Transit | 205 | ~2min | ~3.5 GB |
151
+ | E2-Periodic | 511 | ~3min | ~8.7 GB |
152
+ | E2-Episode | 280 | ~2min | ~4.8 GB |
153
+ | **Total** | **4,574** | - | **~80 GB** |
154
+
155
+ ## Contact
156
+
157
+ For questions or issues, please open an issue in the dataset repository.
dataset_info.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "VCBench Clipped Videos",
3
+ "version": "1.0",
4
+ "total_clips": 4574,
5
+ "total_size_gb": 80,
6
+ "categories": {
7
+ "O1-Snap": {
8
+ "description": "Current-state snapshot counting",
9
+ "clips": 252,
10
+ "multi_query": true
11
+ },
12
+ "O1-Delta": {
13
+ "description": "Current-state delta counting",
14
+ "clips": 98,
15
+ "multi_query": false
16
+ },
17
+ "O2-Unique": {
18
+ "description": "Global unique identity tracking",
19
+ "clips": 1869,
20
+ "multi_query": true
21
+ },
22
+ "O2-Gain": {
23
+ "description": "Windowed gain counting",
24
+ "clips": 78,
25
+ "multi_query": false
26
+ },
27
+ "E1-Action": {
28
+ "description": "Instantaneous action counting",
29
+ "clips": 1281,
30
+ "multi_query": true
31
+ },
32
+ "E1-Transit": {
33
+ "description": "State transition counting",
34
+ "clips": 205,
35
+ "multi_query": true
36
+ },
37
+ "E2-Periodic": {
38
+ "description": "Periodic action counting",
39
+ "clips": 511,
40
+ "multi_query": true
41
+ },
42
+ "E2-Episode": {
43
+ "description": "Episodic segment counting",
44
+ "clips": 280,
45
+ "multi_query": true
46
+ }
47
+ },
48
+ "video_properties": {
49
+ "format": "MP4",
50
+ "codec": "H.264",
51
+ "encoding_method": "copy (lossless)",
52
+ "frame_rates": ["3fps", "24fps", "25fps", "30fps", "60fps"],
53
+ "duration_accuracy": "±0.1s"
54
+ },
55
+ "source_datasets": [
56
+ "YouTube",
57
+ "RoomTour3D",
58
+ "Ego4D",
59
+ "ScanNet",
60
+ "ScanNetPP",
61
+ "ARKitScenes",
62
+ "TOMATO",
63
+ "CODa",
64
+ "OmniWorld",
65
+ "Simulated"
66
+ ],
67
+ "creation_date": "2026-03-01",
68
+ "quality_validated": true
69
+ }
e1action_0185_08.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e35a0f542e591aa655b55a7e16e2b06b768c16419a1a0ba9a5dd8cf2a6ee7f5b
3
+ size 4531934
o2unique_0258_12.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c620881919327368f9d10f1c8c39a47896e957438a7f41e69638b8af8c011998
3
+ size 5283050
o2unique_0258_13.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:514a77819389486db0be4c6eb5680a651478ae63bcefdeb4b0c4cc79739e5433
3
+ size 6372628
o2unique_0258_14.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed97dcee715add357cdf6aa7cec78f98440765ba0ec4297a6930306fc2656590
3
+ size 7840207
o2unique_0258_15.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae97bf694665d30eda2588c41aa96a9d13980dfce71a768ffab858cad0afa3be
3
+ size 7981433
o2unique_0258_16.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b28dd72fdf5f46ebd824f59895312c9c87f8e097f822806053701a9ac4ebc171
3
+ size 8042489
o2unique_0258_17.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab815298609173ae06e4ffc75a6e3de2e2b58779b0d7ac20ceb7427cc5fc8c08
3
+ size 8062875
o2unique_0258_18.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b39ef3030d75123b11262073a14a9d385d9bfc05c419da412518fa135efc556
3
+ size 8085548
o2unique_0258_19.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fe147cf8c2fbd842508b025892403b98602fc6b5af4eedca0dfdfe1930528f6
3
+ size 8237523
o2unique_0258_20.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bcbe46c3ad3231dbac610635dc22d5993b8c091f2e55f4576a1d0a5d425ac9f
3
+ size 8591470
o2unique_0258_21.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5957b0f99aa24a2ba5e0ff02790548be346705e6879cae34679ef62bba630101
3
+ size 9165932
o2unique_0258_22.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0b2cdefc0879bb5f4eb69bf5b989b479f15da6f39a34a0b32d2ebfede65f101
3
+ size 9816788
o2unique_0258_23.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36ebc43ed9234d91b8a9d3e4d4fd403376d27aeff04bac96dc89bdcae314435d
3
+ size 10932238
o2unique_0258_24.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf3513a0a6ad85352813e35b60827083dd4af87d5da6888819cd441b9c48c49b
3
+ size 11847477
o2unique_0258_25.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5341734b3e160a5a409875f7b62c6133a8aafca697449c482d2e241b673092b2
3
+ size 11909567
o2unique_0259_00.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c55920486800d55edc27391a054f5ebb803b209ee9788a000d522875243f7d7
3
+ size 363032
o2unique_0259_01.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23188f7a8ea141d57d13b0f0c4e1df5424a8874b038b2d18f03456753642f42f
3
+ size 993838
o2unique_0259_02.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b585424e6bbe174173eb1ffee76819c0f3575346410d430483c175248ae49c0
3
+ size 1194262
o2unique_0259_03.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f74aeebb7016b12f39b4044ffccdbc623982ee560cec9352b1c745404c85120f
3
+ size 1238172
o2unique_0259_04.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2738fe732e565694377894783af7f2310014f6c58ecbfe5908f94fb25027e29f
3
+ size 1305668
o2unique_0259_05.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28a61185c618ce3188b0c5c59776abeeb30757e05728657e8938bd690df3881b
3
+ size 1536277
o2unique_0259_06.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99968184b4af65f5cb2e8cda44675c3c0e5f2a6850b0528608d6ee75f7e1f4a0
3
+ size 2696522
o2unique_0259_07.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d600d45075c7b413733e759a2d35bcb008c64417b0c862fe310b008aaf4081fb
3
+ size 3490726
o2unique_0259_08.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94edb94d0d3d658efc110b2762ba2c46f9ca833af03e267a1675c6b46798f23e
3
+ size 3695668
o2unique_0259_09.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ef3b30cec6f5f62fe29b62748387521850747ef83434d164c55cadc31aae4fe
3
+ size 3709522
o2unique_0259_10.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d05eb190b6af3be670b707cbccb95a6b9a5e9be494ea945889e91687bca4bf6
3
+ size 3974732
o2unique_0259_11.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18d66269f8da05cf101607a2aa2fa87b401b0762a723de94f6f8c07009317a8c
3
+ size 4377821
o2unique_0259_12.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9015f0830c86cfe1d9ed979187787f32f44bb0e1e744e8c00d9a5612ab8223a8
3
+ size 4905973
o2unique_0259_13.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2354dc53245263d2ef8f4b6f9d093a789947cb8f4f4d0835d1ff3611eb418bf9
3
+ size 6197901
o2unique_0259_14.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4368c0f8e64441fb69500b66ab13003add4b7b67aef84fc09517e636c175e61d
3
+ size 7464081
o2unique_0259_15.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61db0e88265cdde5b2620ba36038dc6c835c458ef547d595e417cbe84baed877
3
+ size 7938411
o2unique_0259_16.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68e576af996b5c4cbf26b8e828b4c5585292175479d9e364017ddb08f01f48eb
3
+ size 9778049
o2unique_0259_17.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e44a2be227cfaf12c26f33db56141e4cd322ba1e65a2b19ec36e182ecac24fbe
3
+ size 10340391
o2unique_0259_18.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22b66baa39252225ac9617025249746bc7d0f8f2e9457e20a59c5675f1b03fcd
3
+ size 10685687
o2unique_0269_22.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5a090669540b81e3dcb9576c858a0175bf60d22cd48b5cba407f915c9e58a2a
3
+ size 12449561
o2unique_0269_23.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d40ee0bc04c5e0e537dd63f962037f24b2b1c666f43dbb2089a66927bd959a96
3
+ size 12542657
o2unique_0269_24.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bbc8a4f8b2171091e09f3cb18636ca2f21e098e53fa7c85d2daae74a999f95d
3
+ size 12738732
o2unique_0269_25.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:913d053a39a822837df7060af30133f44a709431dfae3f08446c57841bb39f24
3
+ size 12785208
o2unique_0269_26.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca232516e1e30e342922dde9afb5ad33efba27fb8f3f3540fdfa324811fc3c64
3
+ size 12824600
o2unique_0269_27.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2a706576799dca9278b1835440445770cd1d680d0ff926a9421f284d0e6ae94
3
+ size 12852726
o2unique_0269_28.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83a56d4b1d3aef77a74013f01d9216de9e2059a4c7e56a662f06d2aaa995b4c5
3
+ size 12891328
o2unique_0269_29.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5c6ff4e6d1185de3af70683b5cc3710ee497f151420899d2ad565705b1c1585
3
+ size 12942402
o2unique_0269_30.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ece444827adcbd959caffe9ce15126077fc3477cb3f8594fa74cb262cbabedf5
3
+ size 12995843
o2unique_0269_31.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ac74cc85c933e3a39b10af774cf3564ddfdf912ba2954193ef16fc23c192850
3
+ size 13038956
o2unique_0269_32.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8482d5bf2ca8e5495f59783dc7ceefbdd07b688fb66d9927acd109b7a6250ca
3
+ size 13077995
o2unique_0270_00.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:886467d96406ad8057300264c873d172deb699e36cbcfc8b96335ee70bef2916
3
+ size 396702
o2unique_0270_01.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02092ef9b5140c99fbf69a8c0758d046ef3837b4f02c093006a17e76c383a3c6
3
+ size 695460
o2unique_0270_02.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fe0a788e49aa93bd8b2db9e4b2d7a0bb326fe78a740b3b4b42f0b4e8b585114
3
+ size 761803