-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_download_datasets.sh
217 lines (205 loc) · 16.7 KB
/
run_download_datasets.sh
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/bin/bash
HF_TOKEN=$1
if [[ -z ${HF_TOKEN} ]]; then
HF_TOKEN="YOUR_HF_TOKEN" # https://huggingface.co/settings/tokens
fi
CACHE_DIR=$2
if [[ -z ${CACHE_DIR} ]]; then
CACHE_DIR="${HOME}/.cache/huggingface/"
fi
# BoolQ
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "super_glue" --subset "boolq"
# LogiQA
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "EleutherAI/logiqa"
# Commonsense QA
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "tau/commonsense_qa"
# Social IQA
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "social_i_qa" # --hf_id "allenai/social_i_qa"
# SciQ
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "sciq" # --hf_id "allenai/sciq"
# OpenBookQA
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "openbookqa" --subset "additional" # --hf_id "allenai/openbookqa" --subset "main"
# ARC
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "allenai/ai2_arc" --subset "ARC-Easy"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "allenai/ai2_arc" --subset "ARC-Challenge"
# MMLU-Pro
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "TIGER-Lab/MMLU-Pro"
# Big-Bench Hard
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "word_sorting"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "web_of_lies"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "tracking_shuffled_objects_three_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "tracking_shuffled_objects_seven_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "tracking_shuffled_objects_five_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "temporal_sequences"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "sports_understanding"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "snarks"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "salient_translation_error_detection"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "ruin_names"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "reasoning_about_colored_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "penguins_in_a_table"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "object_counting"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "navigate"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "multistep_arithmetic_two"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "movie_recommendation"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "logical_deduction_three_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "logical_deduction_seven_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "logical_deduction_five_objects"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "hyperbaton"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "geometric_shapes"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "formal_fallacies"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "dyck_languages"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "disambiguation_qa"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "date_understanding"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "causal_judgement"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "lukaemon/bbh" --subset "boolean_expressions"
# MMLU
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "formal_logic"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "philosophy"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_world_history"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "international_law"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "jurisprudence"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "world_religions"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "moral_disputes"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_european_history"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "logical_fallacies"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_us_history"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "moral_scenarios"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "professional_law"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "prehistory"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "us_foreign_policy"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "security_studies"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "econometrics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_microeconomics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "sociology"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_geography"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_psychology"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "professional_psychology"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_macroeconomics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_government_and_politics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "public_relations"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "human_sexuality"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "miscellaneous"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "medical_genetics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "management"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "virology"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "nutrition"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "global_facts"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "marketing"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_medicine"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "clinical_knowledge"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "professional_accounting"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "professional_medicine"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "human_aging"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "business_ethics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_physics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "elementary_mathematics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "machine_learning"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_statistics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "electrical_engineering"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_computer_science"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "anatomy"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_physics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_computer_science"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "computer_security"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "conceptual_physics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_mathematics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "astronomy"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_mathematics"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_chemistry"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "abstract_algebra"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_chemistry"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "college_biology"
python3 utils/download_hf_dataset.py --hf_token "${HF_TOKEN}" --cache_dir "${CACHE_DIR}" --trust_remote_code --verbose \
--hf_id "hails/mmlu_no_train" --subset "high_school_biology"