RyanWW commited on
Commit
ca4b074
Β·
verified Β·
1 Parent(s): 7e0b807

Card: restore Data.zip download+unzip step (media live in Data.zip); add Changelog

Browse files
Files changed (1) hide show
  1. README.md +30 -5
README.md CHANGED
@@ -100,14 +100,30 @@ RyanWW/XModBench/
100
  β”œβ”€β”€ data/ # 10 JSONL files, one per raw modality combination
101
  β”‚ β”œβ”€β”€ audio_text.jsonl text_audio.jsonl audio_image.jsonl ...
102
  β”œβ”€β”€ data_lite/ # 6 JSONL β€” XModBench-Lite (a2t,a2v,t2a,t2v,v2a,v2t)
103
- β”œβ”€β”€ Data/ # all media (audio .wav, images .jpg, videos .mp4)
104
  β”œβ”€β”€ tasks/ # original per-subtask task definitions (JSON)
105
  └── eval_logs/ # released per-sample model outputs (reproduced via lmms-eval)
106
  └── <model>/<lite|full>/ samples_*.jsonl + summary.json
107
  ```
108
 
 
 
 
 
 
 
109
  ## Loading the data
110
 
 
 
 
 
 
 
 
 
 
 
111
  ```python
112
  from datasets import load_dataset
113
 
@@ -117,12 +133,13 @@ ds = load_dataset("RyanWW/XModBench", "audio_text", split="train")
117
  # XModBench-Lite (balanced 6k)
118
  lite = load_dataset("RyanWW/XModBench", "lite_a2t", split="train")
119
 
120
- # or stream a single file directly
121
- ds = load_dataset("json",
122
- data_files="hf://datasets/RyanWW/XModBench/data/audio_text.jsonl",
123
- split="train")
124
  ```
125
 
 
 
 
126
  ### Sample schema
127
 
128
  ```json
@@ -202,6 +219,14 @@ Qwen2.5-Omni matches its full-set paper numbers within 5 points on every
202
  configuration. Full-set numbers for all 14 paper models are on the
203
  [project website](https://xingruiwang.github.io/projects/XModBench/#leaderboard).
204
 
 
 
 
 
 
 
 
 
205
  ## License
206
 
207
  Released under the **MIT License**. Media are redistributed for research use;
 
100
  β”œβ”€β”€ data/ # 10 JSONL files, one per raw modality combination
101
  β”‚ β”œβ”€β”€ audio_text.jsonl text_audio.jsonl audio_image.jsonl ...
102
  β”œβ”€β”€ data_lite/ # 6 JSONL β€” XModBench-Lite (a2t,a2v,t2a,t2v,v2a,v2t)
103
+ β”œβ”€β”€ Data.zip # ALL media (audio/image/video) β€” download + unzip β†’ Data/
104
  β”œβ”€β”€ tasks/ # original per-subtask task definitions (JSON)
105
  └── eval_logs/ # released per-sample model outputs (reproduced via lmms-eval)
106
  └── <model>/<lite|full>/ samples_*.jsonl + summary.json
107
  ```
108
 
109
+ > **Media live in `Data.zip`.** The JSONL question files (`data/`,
110
+ > `data_lite/`) reference media by repo-relative paths like
111
+ > `Data/vggss_audio_bench/xxx.wav`. Download and unzip `Data.zip` once so
112
+ > those paths resolve. (`Data.zip` was rebuilt with Chapter-stripped
113
+ > `emotions/` clips β€” a fix for a moviepy parsing crash; see Changelog.)
114
+
115
  ## Loading the data
116
 
117
+ **1. Get the media** (one-time, ~30 GB):
118
+
119
+ ```bash
120
+ huggingface-cli download RyanWW/XModBench Data.zip \
121
+ --repo-type dataset --local-dir .
122
+ unzip Data.zip # β†’ ./Data/... (matches the JSONL paths)
123
+ ```
124
+
125
+ **2. Load the questions**:
126
+
127
  ```python
128
  from datasets import load_dataset
129
 
 
133
  # XModBench-Lite (balanced 6k)
134
  lite = load_dataset("RyanWW/XModBench", "lite_a2t", split="train")
135
 
136
+ # media path for the first item (resolve against the unzipped Data/)
137
+ print(ds[0]["conditions"]["input"]) # e.g. Data/vggss_audio_bench/....wav
 
 
138
  ```
139
 
140
+ The [lmms-eval port](https://github.com/XingruiWang/lmms-eval) handles the
141
+ download + path resolution automatically β€” no manual unzip needed there.
142
+
143
  ### Sample schema
144
 
145
  ```json
 
219
  configuration. Full-set numbers for all 14 paper models are on the
220
  [project website](https://xingruiwang.github.io/projects/XModBench/#leaderboard).
221
 
222
+ ## Changelog
223
+
224
+ - **2026-05**: `Data.zip` rebuilt β€” the `emotions/` MELD clips had MP4
225
+ *Chapter* metadata that crashed `moviepy`'s parser (used by some
226
+ evaluation backends). All emotion clips were re-muxed with
227
+ `ffmpeg -map_chapters -1` (video/audio streams untouched). Frame content
228
+ is identical; only the Chapter atom was removed. No other media changed.
229
+
230
  ## License
231
 
232
  Released under the **MIT License**. Media are redistributed for research use;