add offload_folder
Browse files- get_stats.py +2 -2
get_stats.py
CHANGED
@@ -6,10 +6,10 @@ task_description = {
|
|
6 |
'tweet_intimacy': "regression on a single text",
|
7 |
'tweet_ner7': "sequence labeling",
|
8 |
'tweet_qa': "generation",
|
9 |
-
'
|
10 |
'tweet_topic': "multi-label classification"
|
11 |
}
|
12 |
-
for task in ['tweet_intimacy', 'tweet_ner7', 'tweet_qa', '
|
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']])
|
|
|
6 |
'tweet_intimacy': "regression on a single text",
|
7 |
'tweet_ner7': "sequence labeling",
|
8 |
'tweet_qa': "generation",
|
9 |
+
'tweet_similarity': "regression on two texts",
|
10 |
'tweet_topic': "multi-label classification"
|
11 |
}
|
12 |
+
for task in ['tweet_intimacy', 'tweet_ner7', 'tweet_qa', 'tweet_similarity', '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']])
|