-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasets.example.json
More file actions
83 lines (83 loc) · 2.06 KB
/
Copy pathdatasets.example.json
File metadata and controls
83 lines (83 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"datasets": {
"chartmuseum": {
"hf_id": "lytang/ChartMuseum",
"local_dir": "chartmuseum",
"question_col": "question",
"image_col": "image",
"answer_col": "answer"
},
"charxiv": {
"hf_id": "princeton-nlp/CharXiv",
"local_dir": "charxiv",
"question_col": "reasoning_q",
"image_col": "image",
"answer_col": "reasoning_a",
"figure_path_col": "figure_path",
"original_figure_path_col": "original_figure_path"
},
"chartqa": {
"hf_id": "HuggingFaceM4/ChartQA",
"local_dir": "chartqa",
"question_col": "query",
"question_cols": [
"question"
],
"image_col": "image",
"answer_col": "label",
"answer_cols": [
"answer"
],
"row_filter_equals": {
"human_or_machine": 0
}
},
"chartographer": {
"hf_id": "1fanj/Chartographer",
"local_dir": "chartographer",
"question_col": "question",
"question_cols": [
"reasoning_q",
"query"
],
"image_col": "image",
"answer_col": "answer",
"answer_cols": [
"reasoning_a",
"label"
],
"variant_col": "variant",
"family_id_col": "question_id"
},
"my_chart_dataset": {
"hf_id": "org-or-user/my-chart-dataset",
"local_dir": "my_chart_dataset",
"question_col": "question",
"question_cols": [
"query"
],
"image_col": "image",
"image_cols": [
"image_path"
],
"answer_col": "answer",
"answer_cols": [
"label"
]
},
"my_local_chart_dataset": {
"local_dir": "my_local_chart_dataset",
"local_file_template": "{repo_root}/data/my_local_chart_dataset/{split}.json",
"question_col": "question",
"image_col": "image",
"answer_col": "answer"
}
},
"aliases": {
"lytang/chartmuseum": "chartmuseum",
"princeton-nlp/charxiv": "charxiv",
"huggingfacem4/chartqa": "chartqa",
"mycharts": "my_chart_dataset",
"localcharts": "my_local_chart_dataset"
}
}