jgermanmx commited on
Commit
c50f02b
·
verified ·
1 Parent(s): bc9cf3c

Restore configs block in dataset card to fix viewer

Browse files
Files changed (1) hide show
  1. README.md +42 -32
README.md CHANGED
@@ -1,41 +1,50 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
- - name: image
5
- dtype: image
6
- - name: chart_type
7
- dtype: string
8
- - name: question
9
- dtype: string
10
- - name: question_class
11
- dtype: string
12
- - name: gold
13
- sequence: string
14
- - name: misleading_gold
15
- sequence: string
16
- - name: correct_or_misleading
17
- dtype: int64
18
- - name: misleader
19
- dtype: string
20
- - name: annotations
21
- sequence: string
22
  splits:
23
- - name: train
24
- num_examples: 6059
25
- - name: val
26
- num_examples: 6146
27
- - name: test
28
- num_examples: 6042
29
  tags:
30
- - charts
31
- - data-visualization
32
- - visual-question-answering
33
- - image-classification
34
- - misleading-visualizations
35
- - arxiv:2601.12983
36
  task_categories:
37
- - image-classification
38
- - visual-question-answering
39
  pretty_name: AttackViz
40
  ---
41
 
@@ -142,3 +151,4 @@ If you use AttackViz, please cite:
142
  ## Notes
143
 
144
  The `annotations` field stores JSON as strings. Parse individual entries with `json.loads` when structured access to chart specifications is needed.
 
 
1
  ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path: data/train-*
7
+ - split: val
8
+ path: data/val-*
9
+ - split: test
10
+ path: data/test-*
11
  dataset_info:
12
  features:
13
+ - name: image
14
+ dtype: image
15
+ - name: chart_type
16
+ dtype: string
17
+ - name: question
18
+ dtype: string
19
+ - name: question_class
20
+ dtype: string
21
+ - name: gold
22
+ sequence: string
23
+ - name: misleading_gold
24
+ sequence: string
25
+ - name: correct_or_misleading
26
+ dtype: int64
27
+ - name: misleader
28
+ dtype: string
29
+ - name: annotations
30
+ sequence: string
31
  splits:
32
+ - name: train
33
+ num_examples: 6059
34
+ - name: val
35
+ num_examples: 6146
36
+ - name: test
37
+ num_examples: 6042
38
  tags:
39
+ - charts
40
+ - data-visualization
41
+ - visual-question-answering
42
+ - image-classification
43
+ - misleading-visualizations
44
+ - arxiv:2601.12983
45
  task_categories:
46
+ - image-classification
47
+ - visual-question-answering
48
  pretty_name: AttackViz
49
  ---
50
 
 
151
  ## Notes
152
 
153
  The `annotations` field stores JSON as strings. Parse individual entries with `json.loads` when structured access to chart specifications is needed.
154
+