gfcfirefly commited on
Commit
71b4bed
·
verified ·
1 Parent(s): d256d40

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -104
README.md CHANGED
@@ -29,21 +29,21 @@ source_datasets:
29
 
30
  AV-QuantBench is a procedural audio-visual benchmark for evaluating multimodal foundation models on abstract temporal reasoning, cross-modal conflict detection, and synchronized data interpretation across finance, medical, and industrial domains.
31
 
32
- This Hugging Face dataset repository is structured to support a benchmark-style release. It contains:
33
 
34
  - split metadata in JSONL format,
35
  - question-answer annotations,
36
- - sample video/audio assets,
37
  - manifest files by domain,
38
  - and documentation for schema and responsible use.
39
 
40
- The sample subset included here is upload-ready and demonstrates the expected repository structure. It can be extended to the full release by replacing the sample media and JSONL files with the complete benchmark assets generated by the AV-QuantBench pipeline.
41
 
42
  ## Dataset Summary
43
 
44
  AV-QuantBench converts time-series signals into synchronized visual topology and acoustic momentum. Each sample is paired with machine-generated QA derived from deterministic state-machine triggers. The benchmark is designed to evaluate whether a model can jointly reason over audio and video when the two modalities either align or intentionally diverge.
45
 
46
- ### Supported tasks
47
 
48
  - Cross-modal conflict detection
49
  - Audio-visual temporal reasoning
@@ -54,8 +54,7 @@ AV-QuantBench converts time-series signals into synchronized visual topology and
54
 
55
  - Video (`.mp4`)
56
  - Audio (`.wav`)
57
- - Frame previews (`.png`)
58
- - Structured annotations (`.jsonl`)
59
 
60
  ### Domains
61
 
@@ -101,101 +100,4 @@ AV-QuantBench-HF-Dataset/
101
  │ └── metadata/
102
  └── docs/
103
  ├── schema.md
104
- └── responsible_use.md
105
- ```
106
-
107
- ## Data Fields
108
-
109
- Each record in `metadata/*.jsonl` contains:
110
-
111
- - `id`
112
- - `split`
113
- - `domain`
114
- - `video`
115
- - `audio`
116
- - `frame_preview`
117
- - `duration_sec`
118
- - `fps`
119
- - `sample_rate`
120
- - `task_type`
121
- - `question`
122
- - `ground_truth`
123
- - `has_conflict`
124
- - `source_mode`
125
- - `seed`
126
- - `algorithmic_metadata`
127
-
128
- See `docs/schema.md` for details.
129
-
130
- ## Splits
131
-
132
- This upload-ready package includes one example for each split:
133
-
134
- - `train`: finance
135
- - `val`: medical
136
- - `test`: iiot
137
-
138
- In the full release, these files should be replaced by the complete split manifests and associated media.
139
-
140
- ## Example Usage
141
-
142
- ```python
143
- import json
144
- from pathlib import Path
145
-
146
- root = Path('.')
147
- with open(root / 'metadata' / 'train.jsonl', 'r', encoding='utf-8') as f:
148
- sample = json.loads(f.readline())
149
-
150
- print(sample['domain'])
151
- print(sample['question'])
152
- print(sample['video'])
153
- ```
154
-
155
- ## Generation Pipeline
156
-
157
- The full AV-QuantBench generator creates each sample using the following stages:
158
-
159
- 1. substrate synthesis or ingestion,
160
- 2. anti-leakage visual rendering,
161
- 3. acoustic mapping and sonification,
162
- 4. deterministic audio-video synchronization,
163
- 5. state-machine-based QA generation.
164
-
165
- ## Licensing
166
-
167
- Unless otherwise stated, the dataset artifacts in this repository are released under **CC BY-NC 4.0**. This includes metadata, annotations, documentation, and generated media distributed here.
168
-
169
- ## Limitations
170
-
171
- - The package currently includes a minimal sample subset for upload readiness.
172
- - Full benchmark scale requires exporting the complete media and annotation assets from the generator repository.
173
- - Synthetic audio-visual data should not be interpreted as real financial or medical advice.
174
-
175
- ## Responsible Use
176
-
177
- Please see `docs/responsible_use.md`.
178
-
179
- ## Citation
180
-
181
- If you use AV-QuantBench, please cite the accompanying paper:
182
-
183
- ```bibtex
184
- @article{gu2026avquantbench,
185
- title={AV-QuantBench: An Audio-Visual Data Video Benchmark for Foundation Models in Complex Temporal Reasoning},
186
- author={Gu, Fengchen and Ren, Xiaotian and Jiang, Zhengyong and Garc{'i}a-Fern{'a}ndez, {'A}ngel F. and Su, Jionglong and Li, Huakang},
187
- journal={arXiv preprint arXiv:XXXX.XXXXX},
188
- year={2026}
189
- }
190
- ```
191
-
192
-
193
- ## Sample Layout
194
-
195
- The `samples/` directory mirrors the domain-first output layout produced by the AV-QuantBench generator, so newly generated data can be copied into the repository with minimal restructuring:
196
-
197
- - `samples/finance/videos`, `samples/finance/audio`, `samples/finance/qa`, `samples/finance/metadata`
198
- - `samples/medical/videos`, `samples/medical/audio`, `samples/medical/qa`, `samples/medical/metadata`
199
- - `samples/iiot/videos`, `samples/iiot/audio`, `samples/iiot/qa`, `samples/iiot/metadata`
200
-
201
- This layout is intentionally aligned with the local `all_outputs`-style export structure for easier dataset refresh and replacement.
 
29
 
30
  AV-QuantBench is a procedural audio-visual benchmark for evaluating multimodal foundation models on abstract temporal reasoning, cross-modal conflict detection, and synchronized data interpretation across finance, medical, and industrial domains.
31
 
32
+ This Hugging Face dataset repository is structured as a benchmark-style release. It contains:
33
 
34
  - split metadata in JSONL format,
35
  - question-answer annotations,
36
+ - audio-visual sample assets,
37
  - manifest files by domain,
38
  - and documentation for schema and responsible use.
39
 
40
+ The repository is organized so that newly generated benchmark outputs can be added with minimal restructuring. In particular, the `samples/` directory follows the same domain-first layout as the AV-QuantBench generator outputs.
41
 
42
  ## Dataset Summary
43
 
44
  AV-QuantBench converts time-series signals into synchronized visual topology and acoustic momentum. Each sample is paired with machine-generated QA derived from deterministic state-machine triggers. The benchmark is designed to evaluate whether a model can jointly reason over audio and video when the two modalities either align or intentionally diverge.
45
 
46
+ ### Supported Tasks
47
 
48
  - Cross-modal conflict detection
49
  - Audio-visual temporal reasoning
 
54
 
55
  - Video (`.mp4`)
56
  - Audio (`.wav`)
57
+ - Structured annotations (`.json`, `.jsonl`)
 
58
 
59
  ### Domains
60
 
 
100
  │ └── metadata/
101
  └── docs/
102
  ├── schema.md
103
+ └── responsible_use.md