add offload_folder
Browse files- get_stats.py +1 -1
get_stats.py
CHANGED
@@ -9,7 +9,7 @@ task_description = {
|
|
9 |
'tweet_sim': "regression on two texts",
|
10 |
'tweet_topic': "multi-label classification"
|
11 |
}
|
12 |
-
for task in ['tweet_intimacy', '
|
13 |
data = load_dataset("cardiffnlp/super_tweet_eval", task)
|
14 |
tmp_table = {"task": task, "description": task_description[task]}
|
15 |
tmp_table['number of instances'] = " / ".join([str(len(data[s])) for s in ['train', 'validation', 'test']])
|
|
|
9 |
'tweet_sim': "regression on two texts",
|
10 |
'tweet_topic': "multi-label classification"
|
11 |
}
|
12 |
+
for task in ['tweet_intimacy', 'tweet_ner7', 'tweet_qa', 'tweet_sim', 'tweet_topic']:
|
13 |
data = load_dataset("cardiffnlp/super_tweet_eval", task)
|
14 |
tmp_table = {"task": task, "description": task_description[task]}
|
15 |
tmp_table['number of instances'] = " / ".join([str(len(data[s])) for s in ['train', 'validation', 'test']])
|