Datasets:
Restructure dataset for HF viewer: split JSONL, flatten metadata, add feature config
Browse files- Split qa.json into data/test.jsonl and data/val.jsonl for proper split detection
- Flatten metadata fields (category, domain, source, source_id, raw_folder) into top-level columns
- Keep generation_info as JSON string for heterogeneous source-specific data
- Add configs and dataset_info to README YAML for correct feature types (Image for image columns)
- Remove qa.json (replaced by per-split JSONL files)
- README.md +35 -0
- data/test.jsonl +0 -0
- data/val.jsonl +0 -0
- qa.json +0 -0
README.md
CHANGED
|
@@ -14,6 +14,41 @@ tags:
|
|
| 14 |
- multi-image
|
| 15 |
size_categories:
|
| 16 |
- 10K<n<100K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# VLM-SubtleBench
|
|
|
|
| 14 |
- multi-image
|
| 15 |
size_categories:
|
| 16 |
- 10K<n<100K
|
| 17 |
+
configs:
|
| 18 |
+
- config_name: default
|
| 19 |
+
data_files:
|
| 20 |
+
- split: test
|
| 21 |
+
path: data/test.jsonl
|
| 22 |
+
- split: val
|
| 23 |
+
path: data/val.jsonl
|
| 24 |
+
dataset_info:
|
| 25 |
+
features:
|
| 26 |
+
- name: image_1
|
| 27 |
+
dtype: image
|
| 28 |
+
- name: image_2
|
| 29 |
+
dtype: image
|
| 30 |
+
- name: question
|
| 31 |
+
dtype: string
|
| 32 |
+
- name: answer
|
| 33 |
+
dtype: string
|
| 34 |
+
- name: distractors
|
| 35 |
+
sequence: string
|
| 36 |
+
- name: has_caption
|
| 37 |
+
dtype: bool
|
| 38 |
+
- name: caption
|
| 39 |
+
dtype: string
|
| 40 |
+
- name: category
|
| 41 |
+
dtype: string
|
| 42 |
+
- name: domain
|
| 43 |
+
dtype: string
|
| 44 |
+
- name: source
|
| 45 |
+
dtype: string
|
| 46 |
+
- name: source_id
|
| 47 |
+
dtype: string
|
| 48 |
+
- name: raw_folder
|
| 49 |
+
dtype: string
|
| 50 |
+
- name: generation_info
|
| 51 |
+
dtype: string
|
| 52 |
---
|
| 53 |
|
| 54 |
# VLM-SubtleBench
|
data/test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/val.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
qa.json
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|