asahi417 commited on
Commit
bd9b9a1
1 Parent(s): bdf00a8

add offload_folder

Browse files
Files changed (1) hide show
  1. 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
- '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']])
 
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']])