asahi417 commited on
Commit
98cddb6
1 Parent(s): 8fbb1b6

Update get_stats.py

Browse files
Files changed (1) hide show
  1. get_stats.py +1 -1
get_stats.py CHANGED
@@ -15,7 +15,7 @@ task_description = {
15
  "tweet_nerd": "binary classification"
16
  }
17
  for task in task_description.keys():
18
- data = load_dataset("cardiffnlp/super_tweet_eval", task)
19
  tmp_table = {"task": task, "description": task_description[task]}
20
  tmp_table['number of instances'] = " / ".join([str(len(data[s])) for s in ['train', 'validation', 'test']])
21
  table.append(tmp_table)
 
15
  "tweet_nerd": "binary classification"
16
  }
17
  for task in task_description.keys():
18
+ data = load_dataset(".", task)
19
  tmp_table = {"task": task, "description": task_description[task]}
20
  tmp_table['number of instances'] = " / ".join([str(len(data[s])) for s in ['train', 'validation', 'test']])
21
  table.append(tmp_table)