Commit
·
c76acf3
1
Parent(s):
6ed21a0
hardcoded data_split_sizes and split_infos to avoid downloading
Browse files- P3.py +2 -47
- README.md +1 -1
- data_split_sizes.csv +0 -661
- dataset_info_old.json +0 -0
- print_data_split_sizes.py +1 -0
- tasks_splits_and_features.py +0 -0
P3.py
CHANGED
|
@@ -16,11 +16,10 @@
|
|
| 16 |
|
| 17 |
|
| 18 |
import datasets
|
| 19 |
-
import json
|
| 20 |
-
import urllib
|
| 21 |
-
from collections import defaultdict
|
| 22 |
import tensorflow as tf
|
| 23 |
|
|
|
|
|
|
|
| 24 |
|
| 25 |
_CITATION = """@misc{sanh2021multitask,
|
| 26 |
title={Multitask Prompted Training Enables Zero-Shot Task Generalization},
|
|
@@ -44,7 +43,6 @@ _LICENSE = "Apache License 2.0"
|
|
| 44 |
_HOMEPAGE = "https://github.com/bigscience-workshop/promptsource"
|
| 45 |
|
| 46 |
_DATA_PATH = "data"
|
| 47 |
-
_HUB_PATH = "https://huggingface.co/datasets/bigscience/P3/raw/main"
|
| 48 |
|
| 49 |
|
| 50 |
logger = datasets.logging.get_logger(__name__)
|
|
@@ -80,49 +78,6 @@ def load_cached_task(features_dict, tfrecord):
|
|
| 80 |
return ds
|
| 81 |
|
| 82 |
|
| 83 |
-
def read_from_url(url):
|
| 84 |
-
# TODO: there might be a better way to handle these downloads (especially regarding caching).
|
| 85 |
-
# TODO: Ultimately, we should rely on the cache if internet is not available.
|
| 86 |
-
try:
|
| 87 |
-
content = urllib.request.urlopen(url, timeout=10.0)
|
| 88 |
-
logger.info(f"Downloaded {url}")
|
| 89 |
-
except urllib.error.URLError as e:
|
| 90 |
-
raise ConnectionError(e)
|
| 91 |
-
return content.read().decode("utf-8")
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
def find_task_splits_and_features_dict():
|
| 95 |
-
"""Get the task available (list was pre-computed by `print_data_split_sizes.py`), and get the features for each task."""
|
| 96 |
-
task_splits_and_features = defaultdict(dict)
|
| 97 |
-
|
| 98 |
-
data_split_sizes = read_from_url(f"{_HUB_PATH}/data_split_sizes.csv")
|
| 99 |
-
data_split_sizes = [t.strip() for t in data_split_sizes.splitlines()]
|
| 100 |
-
data_split_sizes = data_split_sizes[1:]
|
| 101 |
-
data_split_sizes = [t.split("|") for t in data_split_sizes]
|
| 102 |
-
data_split_sizes = [(t[0], json.loads(t[1])) for t in data_split_sizes]
|
| 103 |
-
|
| 104 |
-
for task_name, split_sizes in data_split_sizes:
|
| 105 |
-
for split_name in split_sizes.keys():
|
| 106 |
-
split_info = json.loads(
|
| 107 |
-
read_from_url(
|
| 108 |
-
f"{_HUB_PATH}/data/{task_name}/info.{split_name}.json"
|
| 109 |
-
)
|
| 110 |
-
)
|
| 111 |
-
features_dict = split_info["features"]
|
| 112 |
-
assert split_info["num_shards"] == 1 # TODO -> handle multiple shards
|
| 113 |
-
|
| 114 |
-
if not task_splits_and_features[task_name]:
|
| 115 |
-
task_splits_and_features[task_name] = {
|
| 116 |
-
"splits": [],
|
| 117 |
-
"features_dict": features_dict,
|
| 118 |
-
}
|
| 119 |
-
task_splits_and_features[task_name]["splits"].append(split_name)
|
| 120 |
-
assert features_dict == task_splits_and_features[task_name]["features_dict"]
|
| 121 |
-
|
| 122 |
-
return task_splits_and_features
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
_TASK_SPLITS_AND_FEATURES_DICT = find_task_splits_and_features_dict()
|
| 126 |
_URLs = {
|
| 127 |
task_name: {
|
| 128 |
split_name: {
|
|
|
|
| 16 |
|
| 17 |
|
| 18 |
import datasets
|
|
|
|
|
|
|
|
|
|
| 19 |
import tensorflow as tf
|
| 20 |
|
| 21 |
+
from .tasks_splits_and_features import _TASK_SPLITS_AND_FEATURES_DICT
|
| 22 |
+
|
| 23 |
|
| 24 |
_CITATION = """@misc{sanh2021multitask,
|
| 25 |
title={Multitask Prompted Training Enables Zero-Shot Task Generalization},
|
|
|
|
| 43 |
_HOMEPAGE = "https://github.com/bigscience-workshop/promptsource"
|
| 44 |
|
| 45 |
_DATA_PATH = "data"
|
|
|
|
| 46 |
|
| 47 |
|
| 48 |
logger = datasets.logging.get_logger(__name__)
|
|
|
|
| 78 |
return ds
|
| 79 |
|
| 80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
_URLs = {
|
| 82 |
task_name: {
|
| 83 |
split_name: {
|
README.md
CHANGED
|
@@ -104,7 +104,7 @@ The data fields are the same among all splits:
|
|
| 104 |
|
| 105 |
### Data Splits
|
| 106 |
|
| 107 |
-
The list of data splits and their respective sizes is very long.
|
| 108 |
|
| 109 |
## Dataset Creation
|
| 110 |
|
|
|
|
| 104 |
|
| 105 |
### Data Splits
|
| 106 |
|
| 107 |
+
The list of data splits and their respective sizes is very long. You'll find the whole list in this [file](https://huggingface.co/datasets/bigscience/P3/blob/main/tasks_splits_and_features.py).
|
| 108 |
|
| 109 |
## Dataset Creation
|
| 110 |
|
data_split_sizes.csv
DELETED
|
@@ -1,661 +0,0 @@
|
|
| 1 |
-
Data(sub)set|Number of examples per splits
|
| 2 |
-
adversarial_qa_dbert_answer_the_following_q|{"validation": 1000, "train": 10000}
|
| 3 |
-
adversarial_qa_dbert_based_on|{"validation": 1000, "train": 10000}
|
| 4 |
-
adversarial_qa_dbert_generate_question|{"validation": 1000, "test": 1000, "train": 10000}
|
| 5 |
-
adversarial_qa_dbert_question_context_answer|{"validation": 1000, "train": 10000}
|
| 6 |
-
adversarial_qa_dbert_tell_what_it_is|{"validation": 1000, "train": 10000}
|
| 7 |
-
adversarial_qa_dbidaf_answer_the_following_q|{"validation": 1000, "train": 10000}
|
| 8 |
-
adversarial_qa_dbidaf_based_on|{"validation": 1000, "train": 10000}
|
| 9 |
-
adversarial_qa_dbidaf_generate_question|{"validation": 1000, "test": 1000, "train": 10000}
|
| 10 |
-
adversarial_qa_dbidaf_question_context_answer|{"validation": 1000, "train": 10000}
|
| 11 |
-
adversarial_qa_dbidaf_tell_what_it_is|{"validation": 1000, "train": 10000}
|
| 12 |
-
adversarial_qa_droberta_answer_the_following_q|{"validation": 1000, "train": 10000}
|
| 13 |
-
adversarial_qa_droberta_based_on|{"validation": 1000, "train": 10000}
|
| 14 |
-
adversarial_qa_droberta_generate_question|{"validation": 1000, "test": 1000, "train": 10000}
|
| 15 |
-
adversarial_qa_droberta_question_context_answer|{"validation": 1000, "train": 10000}
|
| 16 |
-
adversarial_qa_droberta_tell_what_it_is|{"validation": 1000, "train": 10000}
|
| 17 |
-
ag_news_classify|{"test": 7600, "train": 120000}
|
| 18 |
-
ag_news_classify_question_first|{"test": 7600, "train": 120000}
|
| 19 |
-
ag_news_classify_with_choices|{"test": 7600, "train": 120000}
|
| 20 |
-
ag_news_classify_with_choices_question_first|{"test": 7600, "train": 120000}
|
| 21 |
-
ag_news_recommend|{"test": 7600, "train": 120000}
|
| 22 |
-
ag_news_which_section|{"test": 7600, "train": 120000}
|
| 23 |
-
ag_news_which_section_choices|{"test": 7600, "train": 120000}
|
| 24 |
-
ai2_arc_ARC_Challenge_heres_a_problem|{"validation": 299, "test": 1172, "train": 1119}
|
| 25 |
-
ai2_arc_ARC_Challenge_i_am_hesitating|{"validation": 299, "test": 1172, "train": 1119}
|
| 26 |
-
ai2_arc_ARC_Challenge_multiple_choice|{"validation": 299, "test": 1172, "train": 1119}
|
| 27 |
-
ai2_arc_ARC_Challenge_pick_false_options|{"validation": 299, "test": 1172, "train": 1119}
|
| 28 |
-
ai2_arc_ARC_Challenge_pick_the_most_correct_option|{"validation": 299, "test": 1172, "train": 1119}
|
| 29 |
-
ai2_arc_ARC_Challenge_qa_options|{"validation": 299, "test": 1172, "train": 1119}
|
| 30 |
-
ai2_arc_ARC_Easy_heres_a_problem|{"validation": 570, "test": 2376, "train": 2251}
|
| 31 |
-
ai2_arc_ARC_Easy_i_am_hesitating|{"validation": 570, "test": 2376, "train": 2251}
|
| 32 |
-
ai2_arc_ARC_Easy_multiple_choice|{"validation": 570, "test": 2376, "train": 2251}
|
| 33 |
-
ai2_arc_ARC_Easy_pick_false_options|{"validation": 570, "test": 2376, "train": 2251}
|
| 34 |
-
ai2_arc_ARC_Easy_pick_the_most_correct_option|{"validation": 570, "test": 2376, "train": 2251}
|
| 35 |
-
ai2_arc_ARC_Easy_qa_options|{"validation": 570, "test": 2376, "train": 2251}
|
| 36 |
-
amazon_polarity_Is_this_product_review_positive|{"test": 400000, "train": 3600000}
|
| 37 |
-
amazon_polarity_Is_this_review|{"test": 400000, "train": 3600000}
|
| 38 |
-
amazon_polarity_Is_this_review_negative|{"test": 400000, "train": 3600000}
|
| 39 |
-
amazon_polarity_User_recommend_this_product|{"test": 400000, "train": 3600000}
|
| 40 |
-
amazon_polarity_convey_negative_or_positive_sentiment|{"test": 400000, "train": 3600000}
|
| 41 |
-
amazon_polarity_flattering_or_not|{"test": 400000, "train": 3600000}
|
| 42 |
-
amazon_polarity_negative_or_positive_tone|{"test": 400000, "train": 3600000}
|
| 43 |
-
amazon_polarity_user_satisfied|{"test": 400000, "train": 3600000}
|
| 44 |
-
amazon_polarity_would_you_buy|{"test": 400000, "train": 3600000}
|
| 45 |
-
anli_GPT_3_style_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 46 |
-
anli_GPT_3_style_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 47 |
-
anli_GPT_3_style_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 48 |
-
anli_GPT_3_style_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 49 |
-
anli_GPT_3_style_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 50 |
-
anli_GPT_3_style_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 51 |
-
anli_MNLI_crowdsource_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 52 |
-
anli_MNLI_crowdsource_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 53 |
-
anli_MNLI_crowdsource_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 54 |
-
anli_MNLI_crowdsource_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 55 |
-
anli_MNLI_crowdsource_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 56 |
-
anli_MNLI_crowdsource_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 57 |
-
anli_always_sometimes_never_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 58 |
-
anli_always_sometimes_never_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 59 |
-
anli_always_sometimes_never_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 60 |
-
anli_always_sometimes_never_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 61 |
-
anli_always_sometimes_never_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 62 |
-
anli_always_sometimes_never_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 63 |
-
anli_based_on_the_previous_passage_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 64 |
-
anli_based_on_the_previous_passage_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 65 |
-
anli_based_on_the_previous_passage_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 66 |
-
anli_based_on_the_previous_passage_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 67 |
-
anli_based_on_the_previous_passage_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 68 |
-
anli_based_on_the_previous_passage_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 69 |
-
anli_can_we_infer_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 70 |
-
anli_can_we_infer_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 71 |
-
anli_can_we_infer_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 72 |
-
anli_can_we_infer_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 73 |
-
anli_can_we_infer_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 74 |
-
anli_can_we_infer_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 75 |
-
anli_claim_true_false_inconclusive_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 76 |
-
anli_claim_true_false_inconclusive_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 77 |
-
anli_claim_true_false_inconclusive_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 78 |
-
anli_claim_true_false_inconclusive_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 79 |
-
anli_claim_true_false_inconclusive_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 80 |
-
anli_claim_true_false_inconclusive_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 81 |
-
anli_consider_always_sometimes_never_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 82 |
-
anli_consider_always_sometimes_never_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 83 |
-
anli_consider_always_sometimes_never_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 84 |
-
anli_consider_always_sometimes_never_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 85 |
-
anli_consider_always_sometimes_never_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 86 |
-
anli_consider_always_sometimes_never_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 87 |
-
anli_does_it_follow_that_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 88 |
-
anli_does_it_follow_that_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 89 |
-
anli_does_it_follow_that_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 90 |
-
anli_does_it_follow_that_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 91 |
-
anli_does_it_follow_that_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 92 |
-
anli_does_it_follow_that_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 93 |
-
anli_does_this_imply_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 94 |
-
anli_does_this_imply_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 95 |
-
anli_does_this_imply_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 96 |
-
anli_does_this_imply_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 97 |
-
anli_does_this_imply_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 98 |
-
anli_does_this_imply_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 99 |
-
anli_guaranteed_possible_impossible_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 100 |
-
anli_guaranteed_possible_impossible_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 101 |
-
anli_guaranteed_possible_impossible_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 102 |
-
anli_guaranteed_possible_impossible_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 103 |
-
anli_guaranteed_possible_impossible_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 104 |
-
anli_guaranteed_possible_impossible_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 105 |
-
anli_guaranteed_true_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 106 |
-
anli_guaranteed_true_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 107 |
-
anli_guaranteed_true_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 108 |
-
anli_guaranteed_true_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 109 |
-
anli_guaranteed_true_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 110 |
-
anli_guaranteed_true_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 111 |
-
anli_justified_in_saying_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 112 |
-
anli_justified_in_saying_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 113 |
-
anli_justified_in_saying_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 114 |
-
anli_justified_in_saying_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 115 |
-
anli_justified_in_saying_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 116 |
-
anli_justified_in_saying_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 117 |
-
anli_must_be_true_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 118 |
-
anli_must_be_true_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 119 |
-
anli_must_be_true_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 120 |
-
anli_must_be_true_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 121 |
-
anli_must_be_true_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 122 |
-
anli_must_be_true_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 123 |
-
anli_should_assume_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 124 |
-
anli_should_assume_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 125 |
-
anli_should_assume_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 126 |
-
anli_should_assume_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 127 |
-
anli_should_assume_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 128 |
-
anli_should_assume_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 129 |
-
anli_take_the_following_as_truth_r1|{"validation": 1000, "test": 1000, "train": 16946}
|
| 130 |
-
anli_take_the_following_as_truth_r1_score_eval|{"validation": 3000, "test": 3000, "train": 50838}
|
| 131 |
-
anli_take_the_following_as_truth_r2|{"validation": 1000, "test": 1000, "train": 45460}
|
| 132 |
-
anli_take_the_following_as_truth_r2_score_eval|{"validation": 3000, "test": 3000, "train": 136380}
|
| 133 |
-
anli_take_the_following_as_truth_r3|{"validation": 1200, "test": 1200, "train": 100459}
|
| 134 |
-
anli_take_the_following_as_truth_r3_score_eval|{"validation": 3600, "test": 3600, "train": 301377}
|
| 135 |
-
app_reviews_categorize_rating_using_review|{"train": 288065}
|
| 136 |
-
app_reviews_convert_to_rating|{"train": 288065}
|
| 137 |
-
app_reviews_convert_to_star_rating|{"train": 288065}
|
| 138 |
-
app_reviews_generate_review|{"train": 288065}
|
| 139 |
-
cnn_dailymail_3.0.0_2_or_3_sentences|{"validation": 13368, "test": 11490, "train": 287113}
|
| 140 |
-
cnn_dailymail_3.0.0_generate_story|{"validation": 13368, "test": 11490, "train": 287113}
|
| 141 |
-
cnn_dailymail_3.0.0_news_card_view|{"validation": 13368, "test": 11490, "train": 287113}
|
| 142 |
-
cnn_dailymail_3.0.0_news_stock|{"validation": 13368, "test": 11490, "train": 287113}
|
| 143 |
-
cnn_dailymail_3.0.0_news_summary|{"validation": 13368, "test": 11490, "train": 287113}
|
| 144 |
-
cnn_dailymail_3.0.0_spice_up_story|{"validation": 13368, "test": 11490, "train": 287113}
|
| 145 |
-
cnn_dailymail_3.0.0_sum_in_brief|{"validation": 13368, "test": 11490, "train": 287113}
|
| 146 |
-
cnn_dailymail_3.0.0_tldr_summary|{"validation": 13368, "test": 11490, "train": 287113}
|
| 147 |
-
cnn_dailymail_3.0.0_write_an_outline|{"validation": 13368, "test": 11490, "train": 287113}
|
| 148 |
-
common_gen_Example_prompt|{"validation": 4018, "test": 1497, "train": 67389}
|
| 149 |
-
common_gen_Given_concepts_type_1|{"validation": 4018, "test": 1497, "train": 67389}
|
| 150 |
-
common_gen_Given_concepts_type_2|{"validation": 4018, "test": 1497, "train": 67389}
|
| 151 |
-
common_gen_Put_together|{"validation": 4018, "test": 1497, "train": 67389}
|
| 152 |
-
common_gen_choice_in_concept_centric_sentence_generation|{"validation": 4018, "test": 1497, "train": 67389}
|
| 153 |
-
common_gen_random_task_template_prompt|{"validation": 4018, "test": 1497, "train": 67389}
|
| 154 |
-
common_gen_sentence_to_concepts|{"validation": 4018, "test": 1497, "train": 67389}
|
| 155 |
-
common_gen_topic_to_sentence|{"validation": 4018, "test": 1497, "train": 67389}
|
| 156 |
-
common_gen_topics_from_the_sentence|{"validation": 4018, "test": 1497, "train": 67389}
|
| 157 |
-
cos_e_v1.11_aligned_with_common_sense|{"validation": 1221, "train": 9741}
|
| 158 |
-
cos_e_v1.11_description_question_option_id|{"validation": 1221, "train": 9741}
|
| 159 |
-
cos_e_v1.11_description_question_option_text|{"validation": 1221, "train": 9741}
|
| 160 |
-
cos_e_v1.11_explain_why_human|{"validation": 1221, "train": 9741}
|
| 161 |
-
cos_e_v1.11_generate_explanation_given_text|{"validation": 1221, "train": 9741}
|
| 162 |
-
cos_e_v1.11_i_think|{"validation": 1221, "train": 9741}
|
| 163 |
-
cos_e_v1.11_question_description_option_id|{"validation": 1221, "train": 9741}
|
| 164 |
-
cos_e_v1.11_question_description_option_text|{"validation": 1221, "train": 9741}
|
| 165 |
-
cos_e_v1.11_question_option_description_id|{"validation": 1221, "train": 9741}
|
| 166 |
-
cos_e_v1.11_question_option_description_text|{"validation": 1221, "train": 9741}
|
| 167 |
-
cos_e_v1.11_rationale|{"validation": 1221, "train": 9741}
|
| 168 |
-
cosmos_qa_context_answer_to_question|{"validation": 2985, "test": 6963, "train": 25262}
|
| 169 |
-
cosmos_qa_context_description_question_answer_id|{"validation": 2985, "test": 6963, "train": 25262}
|
| 170 |
-
cosmos_qa_context_description_question_answer_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 171 |
-
cosmos_qa_context_description_question_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 172 |
-
cosmos_qa_context_question_description_answer_id|{"validation": 2985, "test": 6963, "train": 25262}
|
| 173 |
-
cosmos_qa_context_question_description_answer_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 174 |
-
cosmos_qa_context_question_description_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 175 |
-
cosmos_qa_description_context_question_answer_id|{"validation": 2985, "test": 6963, "train": 25262}
|
| 176 |
-
cosmos_qa_description_context_question_answer_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 177 |
-
cosmos_qa_description_context_question_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 178 |
-
cosmos_qa_no_prompt_id|{"validation": 2985, "test": 6963, "train": 25262}
|
| 179 |
-
cosmos_qa_no_prompt_text|{"validation": 2985, "test": 6963, "train": 25262}
|
| 180 |
-
cosmos_qa_only_question_answer|{"validation": 2985, "test": 6963, "train": 25262}
|
| 181 |
-
dbpedia_14_given_a_choice_of_categories_|{"test": 70000, "train": 560000}
|
| 182 |
-
dbpedia_14_given_a_list_of_category_what_does_the_title_belong_to|{"test": 70000, "train": 560000}
|
| 183 |
-
dbpedia_14_given_list_what_category_does_the_paragraph_belong_to|{"test": 70000, "train": 560000}
|
| 184 |
-
dbpedia_14_pick_one_category_for_the_following_text|{"test": 70000, "train": 560000}
|
| 185 |
-
dream_answer_to_dialogue|{"validation": 2040, "test": 2041, "train": 6116}
|
| 186 |
-
dream_baseline|{"validation": 2040, "test": 2041, "train": 6116}
|
| 187 |
-
dream_generate_first_utterance|{"validation": 2040, "test": 2041, "train": 6116}
|
| 188 |
-
dream_generate_last_utterance|{"validation": 2040, "test": 2041, "train": 6116}
|
| 189 |
-
dream_read_the_following_conversation_and_answer_the_question|{"validation": 2040, "test": 2041, "train": 6116}
|
| 190 |
-
duorc_ParaphraseRC_answer_question|{"validation": 15591, "test": 15857, "train": 69524}
|
| 191 |
-
duorc_ParaphraseRC_build_story_around_qa|{"validation": 13111, "test": 13449, "train": 58752}
|
| 192 |
-
duorc_ParaphraseRC_decide_worth_it|{"validation": 15591, "test": 15857, "train": 69524}
|
| 193 |
-
duorc_ParaphraseRC_extract_answer|{"validation": 15591, "test": 15857, "train": 69524}
|
| 194 |
-
duorc_ParaphraseRC_generate_question|{"validation": 15591, "test": 15857, "train": 69524}
|
| 195 |
-
duorc_ParaphraseRC_generate_question_by_answer|{"validation": 13111, "test": 13449, "train": 58752}
|
| 196 |
-
duorc_ParaphraseRC_movie_director|{"validation": 15591, "test": 15857, "train": 69524}
|
| 197 |
-
duorc_ParaphraseRC_question_answering|{"validation": 15591, "test": 15857, "train": 69524}
|
| 198 |
-
duorc_ParaphraseRC_title_generation|{"validation": 15591, "test": 15857, "train": 69524}
|
| 199 |
-
duorc_SelfRC_answer_question|{"validation": 12961, "test": 12559, "train": 60721}
|
| 200 |
-
duorc_SelfRC_build_story_around_qa|{"validation": 12845, "test": 12415, "train": 60094}
|
| 201 |
-
duorc_SelfRC_decide_worth_it|{"validation": 12961, "test": 12559, "train": 60721}
|
| 202 |
-
duorc_SelfRC_extract_answer|{"validation": 12961, "test": 12559, "train": 60721}
|
| 203 |
-
duorc_SelfRC_generate_question|{"validation": 12961, "test": 12559, "train": 60721}
|
| 204 |
-
duorc_SelfRC_generate_question_by_answer|{"validation": 12845, "test": 12415, "train": 60094}
|
| 205 |
-
duorc_SelfRC_movie_director|{"validation": 12961, "test": 12559, "train": 60721}
|
| 206 |
-
duorc_SelfRC_question_answering|{"validation": 12961, "test": 12559, "train": 60721}
|
| 207 |
-
duorc_SelfRC_title_generation|{"validation": 12961, "test": 12559, "train": 60721}
|
| 208 |
-
gigaword_TLDR|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 209 |
-
gigaword_first_sentence_title|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 210 |
-
gigaword_generate_summary_for_this|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 211 |
-
gigaword_in_a_nutshell|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 212 |
-
gigaword_make_a_title|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 213 |
-
gigaword_reverse_writing|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 214 |
-
gigaword_write_a_title_for_this_sentence|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 215 |
-
gigaword_write_an_article|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 216 |
-
gigaword_write_its_sentence|{"validation": 189651, "test": 1951, "train": 3803957}
|
| 217 |
-
glue_mrpc_equivalent|{"validation": 408, "test": 1725, "train": 3668}
|
| 218 |
-
glue_mrpc_generate_paraphrase|{"validation": 279, "test": 1147, "train": 2474}
|
| 219 |
-
glue_mrpc_generate_sentence|{"validation": 279, "test": 1147, "train": 2474}
|
| 220 |
-
glue_mrpc_paraphrase|{"validation": 408, "test": 1725, "train": 3668}
|
| 221 |
-
glue_mrpc_replace|{"validation": 408, "test": 1725, "train": 3668}
|
| 222 |
-
glue_mrpc_same_thing|{"validation": 408, "test": 1725, "train": 3668}
|
| 223 |
-
glue_mrpc_want_to_know|{"validation": 408, "test": 1725, "train": 3668}
|
| 224 |
-
glue_qqp_answer|{"validation": 40430, "test": 390965, "train": 363846}
|
| 225 |
-
glue_qqp_duplicate|{"validation": 40430, "test": 390965, "train": 363846}
|
| 226 |
-
glue_qqp_duplicate_or_not|{"validation": 40430, "test": 390965, "train": 363846}
|
| 227 |
-
glue_qqp_meaning|{"validation": 40430, "test": 390965, "train": 363846}
|
| 228 |
-
glue_qqp_quora|{"validation": 40430, "test": 390965, "train": 363846}
|
| 229 |
-
glue_qqp_same_thing|{"validation": 40430, "test": 390965, "train": 363846}
|
| 230 |
-
hellaswag_Appropriate_continuation_Yes_or_No|{"validation": 10042, "test": 10003, "train": 39905}
|
| 231 |
-
hellaswag_Open_ended_completion|{"validation": 10042, "test": 10003, "train": 39905}
|
| 232 |
-
hellaswag_Open_ended_start|{"validation": 10042, "test": 10003, "train": 39905}
|
| 233 |
-
hellaswag_Predict_ending_with_hint|{"validation": 10042, "test": 10003, "train": 39905}
|
| 234 |
-
hellaswag_Predict_ending_with_hint_score_eval|{"validation": 40168, "test": 40012, "train": 159620}
|
| 235 |
-
hellaswag_Randomized_prompts_template|{"validation": 10042, "test": 10003, "train": 39905}
|
| 236 |
-
hellaswag_Randomized_prompts_template_score_eval|{"validation": 40168, "test": 40012, "train": 159620}
|
| 237 |
-
hellaswag_Reversed_appropriate_continuation_Yes_or_No|{"validation": 10042, "test": 10003, "train": 39905}
|
| 238 |
-
hellaswag_Topic_of_the_context|{"validation": 10042, "test": 10003, "train": 39905}
|
| 239 |
-
hellaswag_Topic_without_the_ending_answer|{"validation": 10042, "test": 10003, "train": 39905}
|
| 240 |
-
hellaswag_complete_first_then|{"validation": 10042, "test": 10003, "train": 39905}
|
| 241 |
-
hellaswag_complete_first_then_score_eval|{"validation": 40168, "test": 40012, "train": 159620}
|
| 242 |
-
hellaswag_how_ends|{"validation": 10042, "test": 10003, "train": 39905}
|
| 243 |
-
hellaswag_if_begins_how_continues|{"validation": 10042, "test": 10003, "train": 39905}
|
| 244 |
-
hellaswag_if_begins_how_continues_score_eval|{"validation": 40168, "test": 40012, "train": 159620}
|
| 245 |
-
imdb_Movie_Expressed_Sentiment|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 246 |
-
imdb_Movie_Expressed_Sentiment_2|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 247 |
-
imdb_Negation_template_for_positive_and_negative|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 248 |
-
imdb_Reviewer_Enjoyment|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 249 |
-
imdb_Reviewer_Enjoyment_Yes_No|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 250 |
-
imdb_Reviewer_Expressed_Sentiment|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 251 |
-
imdb_Reviewer_Opinion_bad_good_choices|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 252 |
-
imdb_Reviewer_Sentiment_Feeling|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 253 |
-
imdb_Sentiment_with_choices_|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 254 |
-
imdb_Text_Expressed_Sentiment|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 255 |
-
imdb_Writer_Expressed_Sentiment|{"test": 25000, "unsupervised": 50000, "train": 25000}
|
| 256 |
-
kilt_tasks_hotpotqa_combining_facts|{"validation": 5600, "train": 88869}
|
| 257 |
-
kilt_tasks_hotpotqa_complex_question|{"validation": 5600, "train": 88869}
|
| 258 |
-
kilt_tasks_hotpotqa_final_exam|{"validation": 5600, "train": 88869}
|
| 259 |
-
kilt_tasks_hotpotqa_formulate|{"validation": 5600, "train": 88869}
|
| 260 |
-
kilt_tasks_hotpotqa_straighforward_qa|{"validation": 5600, "train": 88869}
|
| 261 |
-
multi_news_distill|{"validation": 5622, "test": 5622, "train": 44972}
|
| 262 |
-
multi_news_expand_reverse_task_|{"validation": 5622, "test": 5622, "train": 44972}
|
| 263 |
-
multi_news_summarize|{"validation": 5622, "test": 5622, "train": 44972}
|
| 264 |
-
multi_news_summary_scenario|{"validation": 5622, "test": 5622, "train": 44972}
|
| 265 |
-
multi_news_synthesize|{"validation": 5622, "test": 5622, "train": 44972}
|
| 266 |
-
multi_news_what_are_the_key_points|{"validation": 5622, "test": 5622, "train": 44972}
|
| 267 |
-
openbookqa_main_choices|{"validation": 500, "test": 500, "train": 4957}
|
| 268 |
-
openbookqa_main_choose_an_answer_with_options|{"validation": 500, "test": 500, "train": 4957}
|
| 269 |
-
openbookqa_main_only_options|{"validation": 500, "test": 500, "train": 4957}
|
| 270 |
-
openbookqa_main_pick_answer_with_options|{"validation": 500, "test": 500, "train": 4957}
|
| 271 |
-
openbookqa_main_pick_using_id|{"validation": 500, "test": 500, "train": 4957}
|
| 272 |
-
openbookqa_main_which_correct|{"validation": 500, "test": 500, "train": 4957}
|
| 273 |
-
openbookqa_main_which_correct_inverse|{"validation": 500, "test": 500, "train": 4957}
|
| 274 |
-
paws_labeled_final_Concatenation|{"validation": 8000, "test": 8000, "train": 49401}
|
| 275 |
-
paws_labeled_final_Concatenation_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 276 |
-
paws_labeled_final_Meaning|{"validation": 8000, "test": 8000, "train": 49401}
|
| 277 |
-
paws_labeled_final_Meaning_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 278 |
-
paws_labeled_final_PAWS_ANLI_GPT3|{"validation": 8000, "test": 8000, "train": 49401}
|
| 279 |
-
paws_labeled_final_PAWS_ANLI_GPT3_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 280 |
-
paws_labeled_final_Rewrite|{"validation": 8000, "test": 8000, "train": 49401}
|
| 281 |
-
paws_labeled_final_Rewrite_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 282 |
-
paws_labeled_final_context_question|{"validation": 8000, "test": 8000, "train": 49401}
|
| 283 |
-
paws_labeled_final_context_question_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 284 |
-
paws_labeled_final_paraphrase_task|{"validation": 3539, "test": 3536, "train": 21829}
|
| 285 |
-
paws_labeled_final_task_description_no_label|{"validation": 8000, "test": 8000, "train": 49401}
|
| 286 |
-
piqa_Correct_the_solution|{"validation": 1838, "test": 3084, "train": 16113}
|
| 287 |
-
piqa_Correct_the_solution_if_false_from_sol_1|{"validation": 1838, "test": 3084, "train": 16113}
|
| 288 |
-
piqa_Correct_the_solution_if_false_from_sol_2|{"validation": 1838, "test": 3084, "train": 16113}
|
| 289 |
-
piqa_Does_this_solution_make_sense_sol1|{"validation": 1838, "test": 3084, "train": 16113}
|
| 290 |
-
piqa_Does_this_solution_make_sense_sol2|{"validation": 1838, "test": 3084, "train": 16113}
|
| 291 |
-
piqa_choose_the_most_appropriate_solution|{"validation": 1838, "test": 3084, "train": 16113}
|
| 292 |
-
piqa_finish_sentence_with_correct_choice|{"validation": 1838, "test": 3084, "train": 16113}
|
| 293 |
-
piqa_no_prompt_needed|{"validation": 1838, "test": 3084, "train": 16113}
|
| 294 |
-
piqa_pick_correct_choice_index|{"validation": 1838, "test": 3084, "train": 16113}
|
| 295 |
-
piqa_pick_correct_choice_with_choice_given_before_goal|{"validation": 1838, "test": 3084, "train": 16113}
|
| 296 |
-
piqa_what_is_the_correct_ending|{"validation": 1838, "test": 3084, "train": 16113}
|
| 297 |
-
qasc_is_correct_1|{"validation": 926, "test": 920, "train": 8134}
|
| 298 |
-
qasc_is_correct_2|{"validation": 926, "test": 920, "train": 8134}
|
| 299 |
-
qasc_qa_with_combined_facts_1|{"validation": 926, "test": 920, "train": 8134}
|
| 300 |
-
qasc_qa_with_separated_facts_1|{"validation": 926, "test": 920, "train": 8134}
|
| 301 |
-
qasc_qa_with_separated_facts_2|{"validation": 926, "test": 920, "train": 8134}
|
| 302 |
-
qasc_qa_with_separated_facts_3|{"validation": 926, "test": 920, "train": 8134}
|
| 303 |
-
qasc_qa_with_separated_facts_4|{"validation": 926, "test": 920, "train": 8134}
|
| 304 |
-
qasc_qa_with_separated_facts_5|{"validation": 926, "test": 920, "train": 8134}
|
| 305 |
-
quail_context_description_question_answer_id|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 306 |
-
quail_context_description_question_answer_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 307 |
-
quail_context_description_question_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 308 |
-
quail_context_question_answer_description_id|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 309 |
-
quail_context_question_answer_description_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 310 |
-
quail_context_question_description_answer_id|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 311 |
-
quail_context_question_description_answer_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 312 |
-
quail_context_question_description_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 313 |
-
quail_description_context_question_answer_id|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 314 |
-
quail_description_context_question_answer_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 315 |
-
quail_description_context_question_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 316 |
-
quail_no_prompt_id|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 317 |
-
quail_no_prompt_text|{"challenge": 556, "validation": 2164, "train": 10246}
|
| 318 |
-
quarel_choose_between|{"validation": 278, "test": 552, "train": 1941}
|
| 319 |
-
quarel_do_not_use|{"validation": 278, "test": 552, "train": 1941}
|
| 320 |
-
quarel_heres_a_story|{"validation": 278, "test": 552, "train": 1941}
|
| 321 |
-
quarel_logic_test|{"validation": 278, "test": 552, "train": 1941}
|
| 322 |
-
quarel_testing_students|{"validation": 278, "test": 552, "train": 1941}
|
| 323 |
-
quartz_answer_question_based_on|{"validation": 384, "test": 784, "train": 2696}
|
| 324 |
-
quartz_answer_question_below|{"validation": 384, "test": 784, "train": 2696}
|
| 325 |
-
quartz_given_the_fact_answer_the_q|{"validation": 384, "test": 784, "train": 2696}
|
| 326 |
-
quartz_having_read_above_passage|{"validation": 384, "test": 784, "train": 2696}
|
| 327 |
-
quartz_paragraph_question_plain_concat|{"validation": 384, "test": 784, "train": 2696}
|
| 328 |
-
quartz_read_passage_below_choose|{"validation": 384, "test": 784, "train": 2696}
|
| 329 |
-
quartz_use_info_from_paragraph_question|{"validation": 384, "test": 784, "train": 2696}
|
| 330 |
-
quartz_use_info_from_question_paragraph|{"validation": 384, "test": 784, "train": 2696}
|
| 331 |
-
quoref_Answer_Friend_Question|{"validation": 2418, "train": 19399}
|
| 332 |
-
quoref_Answer_Question_Given_Context|{"validation": 2418, "train": 19399}
|
| 333 |
-
quoref_Answer_Test|{"validation": 2418, "train": 19399}
|
| 334 |
-
quoref_Context_Contains_Answer|{"validation": 2418, "train": 19399}
|
| 335 |
-
quoref_Find_Answer|{"validation": 2418, "train": 19399}
|
| 336 |
-
quoref_Found_Context_Online|{"validation": 2418, "train": 19399}
|
| 337 |
-
quoref_Given_Context_Answer_Question|{"validation": 2418, "train": 19399}
|
| 338 |
-
quoref_Guess_Answer|{"validation": 2418, "train": 19399}
|
| 339 |
-
quoref_Guess_Title_For_Context|{"validation": 2418, "train": 19399}
|
| 340 |
-
quoref_Read_And_Extract_|{"validation": 2418, "train": 19399}
|
| 341 |
-
quoref_What_Is_The_Answer|{"validation": 2418, "train": 19399}
|
| 342 |
-
race_high_Is_this_the_right_answer|{"validation": 3451, "test": 3498, "train": 62445}
|
| 343 |
-
race_high_Read_the_article_and_answer_the_question_no_option_|{"validation": 3451, "test": 3498, "train": 62445}
|
| 344 |
-
race_high_Select_the_best_answer|{"validation": 3451, "test": 3498, "train": 62445}
|
| 345 |
-
race_high_Select_the_best_answer_generate_span_|{"validation": 3451, "test": 3498, "train": 62445}
|
| 346 |
-
race_high_Select_the_best_answer_no_instructions_|{"validation": 3451, "test": 3498, "train": 62445}
|
| 347 |
-
race_high_Taking_a_test|{"validation": 3451, "test": 3498, "train": 62445}
|
| 348 |
-
race_high_Write_a_multi_choice_question_for_the_following_article|{"validation": 3451, "test": 3498, "train": 62445}
|
| 349 |
-
race_high_Write_a_multi_choice_question_options_given_|{"validation": 3451, "test": 3498, "train": 62445}
|
| 350 |
-
race_middle_Is_this_the_right_answer|{"validation": 1436, "test": 1436, "train": 25421}
|
| 351 |
-
race_middle_Read_the_article_and_answer_the_question_no_option_|{"validation": 1436, "test": 1436, "train": 25421}
|
| 352 |
-
race_middle_Select_the_best_answer|{"validation": 1436, "test": 1436, "train": 25421}
|
| 353 |
-
race_middle_Select_the_best_answer_generate_span_|{"validation": 1436, "test": 1436, "train": 25421}
|
| 354 |
-
race_middle_Select_the_best_answer_no_instructions_|{"validation": 1436, "test": 1436, "train": 25421}
|
| 355 |
-
race_middle_Taking_a_test|{"validation": 1436, "test": 1436, "train": 25421}
|
| 356 |
-
race_middle_Write_a_multi_choice_question_for_the_following_article|{"validation": 1436, "test": 1436, "train": 25421}
|
| 357 |
-
race_middle_Write_a_multi_choice_question_options_given_|{"validation": 1436, "test": 1436, "train": 25421}
|
| 358 |
-
ropes_background_new_situation_answer|{"validation": 1688, "train": 10924}
|
| 359 |
-
ropes_background_situation_middle|{"validation": 1688, "train": 10924}
|
| 360 |
-
ropes_given_background_situation|{"validation": 1688, "train": 10924}
|
| 361 |
-
ropes_new_situation_background_answer|{"validation": 1688, "train": 10924}
|
| 362 |
-
ropes_plain_background_situation|{"validation": 1688, "train": 10924}
|
| 363 |
-
ropes_plain_bottom_hint|{"validation": 1688, "train": 10924}
|
| 364 |
-
ropes_plain_no_background|{"validation": 1688, "train": 10924}
|
| 365 |
-
ropes_prompt_beginning|{"validation": 1688, "train": 10924}
|
| 366 |
-
ropes_prompt_bottom_hint_beginning|{"validation": 1688, "train": 10924}
|
| 367 |
-
ropes_prompt_bottom_no_hint|{"validation": 1688, "train": 10924}
|
| 368 |
-
ropes_prompt_mix|{"validation": 1688, "train": 10924}
|
| 369 |
-
ropes_read_background_situation|{"validation": 1688, "train": 10924}
|
| 370 |
-
rotten_tomatoes_Movie_Expressed_Sentiment|{"validation": 1066, "test": 1066, "train": 8530}
|
| 371 |
-
rotten_tomatoes_Movie_Expressed_Sentiment_2|{"validation": 1066, "test": 1066, "train": 8530}
|
| 372 |
-
rotten_tomatoes_Reviewer_Enjoyment|{"validation": 1066, "test": 1066, "train": 8530}
|
| 373 |
-
rotten_tomatoes_Reviewer_Enjoyment_Yes_No|{"validation": 1066, "test": 1066, "train": 8530}
|
| 374 |
-
rotten_tomatoes_Reviewer_Expressed_Sentiment|{"validation": 1066, "test": 1066, "train": 8530}
|
| 375 |
-
rotten_tomatoes_Reviewer_Opinion_bad_good_choices|{"validation": 1066, "test": 1066, "train": 8530}
|
| 376 |
-
rotten_tomatoes_Reviewer_Sentiment_Feeling|{"validation": 1066, "test": 1066, "train": 8530}
|
| 377 |
-
rotten_tomatoes_Sentiment_with_choices_|{"validation": 1066, "test": 1066, "train": 8530}
|
| 378 |
-
rotten_tomatoes_Text_Expressed_Sentiment|{"validation": 1066, "test": 1066, "train": 8530}
|
| 379 |
-
rotten_tomatoes_Writer_Expressed_Sentiment|{"validation": 1066, "test": 1066, "train": 8530}
|
| 380 |
-
samsum_Generate_a_summary_for_this_dialogue|{"validation": 818, "test": 819, "train": 14732}
|
| 381 |
-
samsum_Given_the_above_dialogue_write_a_summary|{"validation": 818, "test": 819, "train": 14732}
|
| 382 |
-
samsum_Sum_up_the_following_dialogue|{"validation": 818, "test": 819, "train": 14732}
|
| 383 |
-
samsum_Summarize_|{"validation": 818, "test": 819, "train": 14732}
|
| 384 |
-
samsum_Summarize_this_dialogue_|{"validation": 818, "test": 819, "train": 14732}
|
| 385 |
-
samsum_To_sum_up_this_dialog|{"validation": 818, "test": 819, "train": 14732}
|
| 386 |
-
samsum_Write_a_dialogue_that_match_this_summary|{"validation": 818, "test": 819, "train": 14732}
|
| 387 |
-
sciq_Direct_Question|{"validation": 1000, "test": 1000, "train": 11679}
|
| 388 |
-
sciq_Direct_Question_Closed_Book_|{"validation": 1000, "test": 1000, "train": 11679}
|
| 389 |
-
sciq_Multiple_Choice|{"validation": 1000, "test": 1000, "train": 11679}
|
| 390 |
-
sciq_Multiple_Choice_Closed_Book_|{"validation": 1000, "test": 1000, "train": 11679}
|
| 391 |
-
sciq_Multiple_Choice_Question_First|{"validation": 1000, "test": 1000, "train": 11679}
|
| 392 |
-
social_i_qa_Check_if_a_random_answer_is_valid_or_not|{"validation": 1954, "train": 33410}
|
| 393 |
-
social_i_qa_Generate_answer|{"validation": 1954, "train": 33410}
|
| 394 |
-
social_i_qa_Generate_the_question_from_the_answer|{"validation": 1954, "train": 33410}
|
| 395 |
-
social_i_qa_I_was_wondering|{"validation": 1954, "train": 33410}
|
| 396 |
-
social_i_qa_Show_choices_and_generate_answer|{"validation": 1954, "train": 33410}
|
| 397 |
-
social_i_qa_Show_choices_and_generate_index|{"validation": 1954, "train": 33410}
|
| 398 |
-
squad_v2_Jeopardy_with_Context|{"validation": 5928, "train": 86821}
|
| 399 |
-
squad_v2_Jeopardy_without_Context|{"validation": 5928, "train": 86821}
|
| 400 |
-
squad_v2_Questions_with_Context|{"validation": 11873, "train": 130319}
|
| 401 |
-
squad_v2_Questions_with_Context_Without_Prompt_Keywords|{"validation": 11873, "train": 130319}
|
| 402 |
-
squad_v2_Questions_with_Context_Without_Prompt_Keywords_unanswerable|{"validation": 11873, "train": 130319}
|
| 403 |
-
squad_v2_Questions_with_Context_unanswerable|{"validation": 11873, "train": 130319}
|
| 404 |
-
squad_v2_Topic_Prediction_Context|{"validation": 11873, "train": 130319}
|
| 405 |
-
squad_v2_Topic_Prediction_Context_with_randomized_prompt_options|{"validation": 11873, "train": 130319}
|
| 406 |
-
squad_v2_Topic_Prediction_Context_with_randomized_prompt_options_placed_in_the_end|{"validation": 11873, "train": 130319}
|
| 407 |
-
squad_v2_Topic_Prediction_Question_and_Answer_Pair|{"validation": 5928, "train": 86821}
|
| 408 |
-
squad_v2_Trivia|{"validation": 5928, "train": 86821}
|
| 409 |
-
squad_v2_Unanwerable_question|{"validation": 11873, "train": 130319}
|
| 410 |
-
super_glue_boolq_GPT_3_Style|{"validation": 3270, "test": 3245, "train": 9427}
|
| 411 |
-
super_glue_boolq_I_wonder_|{"validation": 3270, "test": 3245, "train": 9427}
|
| 412 |
-
super_glue_boolq_after_reading|{"validation": 3270, "test": 3245, "train": 9427}
|
| 413 |
-
super_glue_boolq_based_on_the_following_passage|{"validation": 3270, "test": 3245, "train": 9427}
|
| 414 |
-
super_glue_boolq_based_on_the_previous_passage|{"validation": 3270, "test": 3245, "train": 9427}
|
| 415 |
-
super_glue_boolq_could_you_tell_me_|{"validation": 3270, "test": 3245, "train": 9427}
|
| 416 |
-
super_glue_boolq_exam|{"validation": 3270, "test": 3245, "train": 9427}
|
| 417 |
-
super_glue_boolq_exercise|{"validation": 3270, "test": 3245, "train": 9427}
|
| 418 |
-
super_glue_boolq_valid_binary|{"validation": 3270, "test": 3245, "train": 9427}
|
| 419 |
-
super_glue_boolq_yes_no_question|{"validation": 3270, "test": 3245, "train": 9427}
|
| 420 |
-
super_glue_cb_GPT_3_style|{"validation": 56, "test": 250, "train": 250}
|
| 421 |
-
super_glue_cb_GPT_3_style_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 422 |
-
super_glue_cb_MNLI_crowdsource|{"validation": 56, "test": 250, "train": 250}
|
| 423 |
-
super_glue_cb_MNLI_crowdsource_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 424 |
-
super_glue_cb_always_sometimes_never|{"validation": 56, "test": 250, "train": 250}
|
| 425 |
-
super_glue_cb_always_sometimes_never_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 426 |
-
super_glue_cb_based_on_the_previous_passage|{"validation": 56, "test": 250, "train": 250}
|
| 427 |
-
super_glue_cb_based_on_the_previous_passage_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 428 |
-
super_glue_cb_can_we_infer|{"validation": 56, "test": 250, "train": 250}
|
| 429 |
-
super_glue_cb_can_we_infer_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 430 |
-
super_glue_cb_claim_true_false_inconclusive|{"validation": 56, "test": 250, "train": 250}
|
| 431 |
-
super_glue_cb_claim_true_false_inconclusive_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 432 |
-
super_glue_cb_consider_always_sometimes_never|{"validation": 56, "test": 250, "train": 250}
|
| 433 |
-
super_glue_cb_consider_always_sometimes_never_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 434 |
-
super_glue_cb_does_it_follow_that|{"validation": 56, "test": 250, "train": 250}
|
| 435 |
-
super_glue_cb_does_it_follow_that_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 436 |
-
super_glue_cb_does_this_imply|{"validation": 56, "test": 250, "train": 250}
|
| 437 |
-
super_glue_cb_does_this_imply_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 438 |
-
super_glue_cb_guaranteed_possible_impossible|{"validation": 56, "test": 250, "train": 250}
|
| 439 |
-
super_glue_cb_guaranteed_possible_impossible_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 440 |
-
super_glue_cb_guaranteed_true|{"validation": 56, "test": 250, "train": 250}
|
| 441 |
-
super_glue_cb_guaranteed_true_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 442 |
-
super_glue_cb_justified_in_saying|{"validation": 56, "test": 250, "train": 250}
|
| 443 |
-
super_glue_cb_justified_in_saying_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 444 |
-
super_glue_cb_must_be_true|{"validation": 56, "test": 250, "train": 250}
|
| 445 |
-
super_glue_cb_must_be_true_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 446 |
-
super_glue_cb_should_assume|{"validation": 56, "test": 250, "train": 250}
|
| 447 |
-
super_glue_cb_should_assume_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 448 |
-
super_glue_cb_take_the_following_as_truth|{"validation": 56, "test": 250, "train": 250}
|
| 449 |
-
super_glue_cb_take_the_following_as_truth_score_eval|{"validation": 168, "test": 750, "train": 750}
|
| 450 |
-
super_glue_copa_C1_or_C2_premise_so_because_|{"validation": 100, "test": 500, "train": 400}
|
| 451 |
-
super_glue_copa_C1_or_C2_premise_so_because__score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 452 |
-
super_glue_copa__As_a_result_C1_or_C2_|{"validation": 48, "test": 250, "train": 202}
|
| 453 |
-
super_glue_copa__As_a_result_C1_or_C2__score_eval|{"validation": 96, "test": 500, "train": 404}
|
| 454 |
-
super_glue_copa__What_could_happen_next_C1_or_C2_|{"validation": 48, "test": 250, "train": 202}
|
| 455 |
-
super_glue_copa__What_could_happen_next_C1_or_C2__score_eval|{"validation": 96, "test": 500, "train": 404}
|
| 456 |
-
super_glue_copa__which_may_be_caused_by|{"validation": 52, "test": 250, "train": 198}
|
| 457 |
-
super_glue_copa__which_may_be_caused_by_score_eval|{"validation": 104, "test": 500, "train": 396}
|
| 458 |
-
super_glue_copa__why_C1_or_C2|{"validation": 52, "test": 250, "train": 198}
|
| 459 |
-
super_glue_copa__why_C1_or_C2_score_eval|{"validation": 104, "test": 500, "train": 396}
|
| 460 |
-
super_glue_copa_best_option|{"validation": 100, "test": 500, "train": 400}
|
| 461 |
-
super_glue_copa_best_option_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 462 |
-
super_glue_copa_cause_effect|{"validation": 100, "test": 500, "train": 400}
|
| 463 |
-
super_glue_copa_cause_effect_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 464 |
-
super_glue_copa_choose|{"validation": 100, "test": 500, "train": 400}
|
| 465 |
-
super_glue_copa_choose_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 466 |
-
super_glue_copa_exercise|{"validation": 100, "test": 500, "train": 400}
|
| 467 |
-
super_glue_copa_exercise_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 468 |
-
super_glue_copa_i_am_hesitating|{"validation": 100, "test": 500, "train": 400}
|
| 469 |
-
super_glue_copa_i_am_hesitating_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 470 |
-
super_glue_copa_more_likely|{"validation": 100, "test": 500, "train": 400}
|
| 471 |
-
super_glue_copa_more_likely_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 472 |
-
super_glue_copa_plausible_alternatives|{"validation": 100, "test": 500, "train": 400}
|
| 473 |
-
super_glue_copa_plausible_alternatives_score_eval|{"validation": 200, "test": 1000, "train": 800}
|
| 474 |
-
super_glue_multirc_I_was_going_to_say_|{"validation": 4848, "test": 9693, "train": 27243}
|
| 475 |
-
super_glue_multirc_Would_it_be_good_to_answer_|{"validation": 4848, "test": 9693, "train": 27243}
|
| 476 |
-
super_glue_multirc_confirm|{"validation": 4848, "test": 9693, "train": 27243}
|
| 477 |
-
super_glue_multirc_correct|{"validation": 4848, "test": 9693, "train": 27243}
|
| 478 |
-
super_glue_multirc_decide_valid|{"validation": 4848, "test": 9693, "train": 27243}
|
| 479 |
-
super_glue_multirc_found_this_answer|{"validation": 4848, "test": 9693, "train": 27243}
|
| 480 |
-
super_glue_multirc_grading|{"validation": 4848, "test": 9693, "train": 27243}
|
| 481 |
-
super_glue_multirc_is_a_correct_answer_|{"validation": 4848, "test": 9693, "train": 27243}
|
| 482 |
-
super_glue_multirc_is_the_correct_answer_|{"validation": 4848, "test": 9693, "train": 27243}
|
| 483 |
-
super_glue_multirc_paragraph_question_is_it_|{"validation": 4848, "test": 9693, "train": 27243}
|
| 484 |
-
super_glue_record_Add_sentence_after_after_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 485 |
-
super_glue_record_Add_sentence_after_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 486 |
-
super_glue_record_Can_you_figure_out_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 487 |
-
super_glue_record_GPT_3_style_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 488 |
-
super_glue_record_GPT_3_style_summary_only_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 489 |
-
super_glue_record_GPT_3_style_with_labels_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 490 |
-
super_glue_record_GPT_3_style_with_labels_without_hyphens_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 491 |
-
super_glue_record_GPT_3_style_without_hyphens_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 492 |
-
super_glue_record_In_the_question_above_the_placeholder_stands_for|{"validation": 10000, "test": 10000, "train": 100730}
|
| 493 |
-
super_glue_record_New_highlight_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 494 |
-
super_glue_record_News_article_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 495 |
-
super_glue_record_Summary_first_continuation_choices_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 496 |
-
super_glue_record_What_could_the_placeholder_be_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 497 |
-
super_glue_record_Which_one_is_the_placeholder_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 498 |
-
super_glue_record_choose_between|{"validation": 10000, "test": 10000, "train": 100730}
|
| 499 |
-
super_glue_record_corrupted|{"validation": 10000, "test": 10000, "train": 100730}
|
| 500 |
-
super_glue_record_exercise|{"validation": 10000, "test": 10000, "train": 100730}
|
| 501 |
-
super_glue_record_pick_one_option|{"validation": 10000, "test": 10000, "train": 100730}
|
| 502 |
-
super_glue_record_the_placeholder_refers_to_|{"validation": 10000, "test": 10000, "train": 100730}
|
| 503 |
-
super_glue_record_trying_to_decide|{"validation": 10000, "test": 10000, "train": 100730}
|
| 504 |
-
super_glue_rte_GPT_3_style|{"validation": 277, "test": 3000, "train": 2490}
|
| 505 |
-
super_glue_rte_GPT_3_style_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 506 |
-
super_glue_rte_MNLI_crowdsource|{"validation": 277, "test": 3000, "train": 2490}
|
| 507 |
-
super_glue_rte_MNLI_crowdsource_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 508 |
-
super_glue_rte_based_on_the_previous_passage|{"validation": 277, "test": 3000, "train": 2490}
|
| 509 |
-
super_glue_rte_based_on_the_previous_passage_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 510 |
-
super_glue_rte_can_we_infer|{"validation": 277, "test": 3000, "train": 2490}
|
| 511 |
-
super_glue_rte_can_we_infer_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 512 |
-
super_glue_rte_does_it_follow_that|{"validation": 277, "test": 3000, "train": 2490}
|
| 513 |
-
super_glue_rte_does_it_follow_that_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 514 |
-
super_glue_rte_does_this_imply|{"validation": 277, "test": 3000, "train": 2490}
|
| 515 |
-
super_glue_rte_does_this_imply_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 516 |
-
super_glue_rte_guaranteed_true|{"validation": 277, "test": 3000, "train": 2490}
|
| 517 |
-
super_glue_rte_guaranteed_true_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 518 |
-
super_glue_rte_justified_in_saying|{"validation": 277, "test": 3000, "train": 2490}
|
| 519 |
-
super_glue_rte_justified_in_saying_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 520 |
-
super_glue_rte_must_be_true|{"validation": 277, "test": 3000, "train": 2490}
|
| 521 |
-
super_glue_rte_must_be_true_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 522 |
-
super_glue_rte_should_assume|{"validation": 277, "test": 3000, "train": 2490}
|
| 523 |
-
super_glue_rte_should_assume_score_eval|{"validation": 554, "test": 6000, "train": 4980}
|
| 524 |
-
super_glue_wic_GPT_3_prompt|{"validation": 638, "test": 1400, "train": 5428}
|
| 525 |
-
super_glue_wic_GPT_3_prompt_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 526 |
-
super_glue_wic_GPT_3_prompt_with_label|{"validation": 638, "test": 1400, "train": 5428}
|
| 527 |
-
super_glue_wic_GPT_3_prompt_with_label_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 528 |
-
super_glue_wic_affirmation_true_or_false|{"validation": 638, "test": 1400, "train": 5428}
|
| 529 |
-
super_glue_wic_affirmation_true_or_false_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 530 |
-
super_glue_wic_grammar_homework|{"validation": 638, "test": 1400, "train": 5428}
|
| 531 |
-
super_glue_wic_grammar_homework_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 532 |
-
super_glue_wic_polysemous|{"validation": 638, "test": 1400, "train": 5428}
|
| 533 |
-
super_glue_wic_polysemous_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 534 |
-
super_glue_wic_question_context|{"validation": 638, "test": 1400, "train": 5428}
|
| 535 |
-
super_glue_wic_question_context_meaning|{"validation": 638, "test": 1400, "train": 5428}
|
| 536 |
-
super_glue_wic_question_context_meaning_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 537 |
-
super_glue_wic_question_context_meaning_with_label|{"validation": 638, "test": 1400, "train": 5428}
|
| 538 |
-
super_glue_wic_question_context_meaning_with_label_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 539 |
-
super_glue_wic_question_context_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 540 |
-
super_glue_wic_same_sense|{"validation": 638, "test": 1400, "train": 5428}
|
| 541 |
-
super_glue_wic_same_sense_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 542 |
-
super_glue_wic_similar_sense|{"validation": 638, "test": 1400, "train": 5428}
|
| 543 |
-
super_glue_wic_similar_sense_score_eval|{"validation": 1276, "test": 2800, "train": 10856}
|
| 544 |
-
super_glue_wsc.fixed_GPT_3_Style|{"validation": 104, "test": 146, "train": 554}
|
| 545 |
-
super_glue_wsc.fixed_GPT_3_Style_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 546 |
-
super_glue_wsc.fixed_I_think_they_mean|{"validation": 104, "test": 146, "train": 554}
|
| 547 |
-
super_glue_wsc.fixed_I_think_they_mean_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 548 |
-
super_glue_wsc.fixed_Who_or_what_is_are|{"validation": 104, "test": 146, "train": 554}
|
| 549 |
-
super_glue_wsc.fixed_Who_or_what_is_are_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 550 |
-
super_glue_wsc.fixed_by_p_they_mean|{"validation": 104, "test": 146, "train": 554}
|
| 551 |
-
super_glue_wsc.fixed_by_p_they_mean_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 552 |
-
super_glue_wsc.fixed_does_p_stand_for|{"validation": 104, "test": 146, "train": 554}
|
| 553 |
-
super_glue_wsc.fixed_does_p_stand_for_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 554 |
-
super_glue_wsc.fixed_does_the_pronoun_refer_to|{"validation": 104, "test": 146, "train": 554}
|
| 555 |
-
super_glue_wsc.fixed_does_the_pronoun_refer_to_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 556 |
-
super_glue_wsc.fixed_in_other_words|{"validation": 104, "test": 146, "train": 554}
|
| 557 |
-
super_glue_wsc.fixed_in_other_words_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 558 |
-
super_glue_wsc.fixed_p_is_are_r|{"validation": 104, "test": 146, "train": 554}
|
| 559 |
-
super_glue_wsc.fixed_p_is_are_r_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 560 |
-
super_glue_wsc.fixed_replaced_with|{"validation": 104, "test": 146, "train": 554}
|
| 561 |
-
super_glue_wsc.fixed_replaced_with_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 562 |
-
super_glue_wsc.fixed_the_pronoun_refers_to|{"validation": 104, "test": 146, "train": 554}
|
| 563 |
-
super_glue_wsc.fixed_the_pronoun_refers_to_score_eval|{"validation": 208, "test": 292, "train": 1108}
|
| 564 |
-
trec_fine_grained_ABBR|{"test": 9, "train": 86}
|
| 565 |
-
trec_fine_grained_ABBR_context_first|{"test": 9, "train": 86}
|
| 566 |
-
trec_fine_grained_DESC|{"test": 138, "train": 1162}
|
| 567 |
-
trec_fine_grained_DESC_context_first|{"test": 138, "train": 1162}
|
| 568 |
-
trec_fine_grained_ENTY|{"test": 94, "train": 1250}
|
| 569 |
-
trec_fine_grained_HUM|{"test": 65, "train": 1223}
|
| 570 |
-
trec_fine_grained_HUM_context_first|{"test": 65, "train": 1223}
|
| 571 |
-
trec_fine_grained_LOC|{"test": 81, "train": 835}
|
| 572 |
-
trec_fine_grained_LOC_context_first|{"test": 81, "train": 835}
|
| 573 |
-
trec_fine_grained_NUM|{"test": 113, "train": 896}
|
| 574 |
-
trec_fine_grained_NUM_context_first|{"test": 113, "train": 896}
|
| 575 |
-
trec_fine_grained_open|{"test": 500, "train": 5452}
|
| 576 |
-
trec_fine_grained_open_context_first|{"test": 500, "train": 5452}
|
| 577 |
-
trec_pick_the_best_descriptor|{"test": 500, "train": 5452}
|
| 578 |
-
trec_trec1|{"test": 500, "train": 5452}
|
| 579 |
-
trec_trec2|{"test": 500, "train": 5452}
|
| 580 |
-
trec_what_category_best_describe|{"test": 500, "train": 5452}
|
| 581 |
-
trec_which_category_best_describes|{"test": 500, "train": 5452}
|
| 582 |
-
trivia_qa_unfiltered_first_person_context|{"validation": 11313, "test": 10832, "train": 87622}
|
| 583 |
-
trivia_qa_unfiltered_formal_description|{"validation": 11313, "test": 10832, "train": 87622}
|
| 584 |
-
trivia_qa_unfiltered_guess_question|{"validation": 11313, "train": 87622}
|
| 585 |
-
trivia_qa_unfiltered_question_answer|{"validation": 11313, "test": 10832, "train": 87622}
|
| 586 |
-
trivia_qa_unfiltered_question_with_instruction|{"validation": 11313, "test": 10832, "train": 87622}
|
| 587 |
-
web_questions_get_the_answer|{"test": 2032, "train": 3778}
|
| 588 |
-
web_questions_potential_correct_answer|{"test": 2032, "train": 3778}
|
| 589 |
-
web_questions_question_answer|{"test": 2032, "train": 3778}
|
| 590 |
-
web_questions_short_general_knowledge_q|{"test": 2032, "train": 3778}
|
| 591 |
-
web_questions_whats_the_answer|{"test": 2032, "train": 3778}
|
| 592 |
-
wiki_bio_comprehension|{"val": 72831, "test": 72829, "train": 582639}
|
| 593 |
-
wiki_bio_guess_person|{"val": 72831, "test": 72829, "train": 582639}
|
| 594 |
-
wiki_bio_key_content|{"val": 72831, "test": 72829, "train": 582639}
|
| 595 |
-
wiki_bio_what_content|{"val": 72831, "test": 72829, "train": 582639}
|
| 596 |
-
wiki_bio_who|{"val": 72831, "test": 72829, "train": 582639}
|
| 597 |
-
wiki_hop_original_choose_best_object_affirmative_1|{"validation": 5129, "train": 43738}
|
| 598 |
-
wiki_hop_original_choose_best_object_affirmative_2|{"validation": 5129, "train": 43738}
|
| 599 |
-
wiki_hop_original_choose_best_object_affirmative_3|{"validation": 5129, "train": 43738}
|
| 600 |
-
wiki_hop_original_choose_best_object_interrogative_1|{"validation": 5129, "train": 43738}
|
| 601 |
-
wiki_hop_original_choose_best_object_interrogative_2|{"validation": 5129, "train": 43738}
|
| 602 |
-
wiki_hop_original_explain_relation|{"validation": 5129, "train": 43738}
|
| 603 |
-
wiki_hop_original_generate_object|{"validation": 5129, "train": 43738}
|
| 604 |
-
wiki_hop_original_generate_subject|{"validation": 5129, "train": 43738}
|
| 605 |
-
wiki_hop_original_generate_subject_and_object|{"validation": 5129, "train": 43738}
|
| 606 |
-
wiki_qa_Decide_good_answer|{"validation": 2733, "test": 6165, "train": 20360}
|
| 607 |
-
wiki_qa_Direct_Answer_to_Question|{"validation": 140, "test": 293, "train": 1040}
|
| 608 |
-
wiki_qa_Generate_Question_from_Topic|{"validation": 140, "test": 293, "train": 1040}
|
| 609 |
-
wiki_qa_Is_This_True_|{"validation": 2733, "test": 6165, "train": 20360}
|
| 610 |
-
wiki_qa_Jeopardy_style|{"validation": 140, "test": 293, "train": 1040}
|
| 611 |
-
wiki_qa_Topic_Prediction_Answer_Only|{"validation": 140, "test": 293, "train": 1040}
|
| 612 |
-
wiki_qa_Topic_Prediction_Question_Only|{"validation": 140, "test": 293, "train": 1040}
|
| 613 |
-
wiki_qa_Topic_Prediction_Question_and_Answer_Pair|{"validation": 140, "test": 293, "train": 1040}
|
| 614 |
-
wiki_qa_automatic_system|{"validation": 2733, "test": 6165, "train": 20360}
|
| 615 |
-
wiki_qa_exercise|{"validation": 2733, "test": 6165, "train": 20360}
|
| 616 |
-
wiki_qa_found_on_google|{"validation": 2733, "test": 6165, "train": 20360}
|
| 617 |
-
winogrande_winogrande_debiased_Replace|{"validation": 1267, "test": 1767, "train": 9248}
|
| 618 |
-
winogrande_winogrande_debiased_Replace_score_eval|{"validation": 2534, "test": 3534, "train": 18496}
|
| 619 |
-
winogrande_winogrande_debiased_does_underscore_refer_to|{"validation": 1267, "test": 1767, "train": 9248}
|
| 620 |
-
winogrande_winogrande_debiased_does_underscore_refer_to_score_eval|{"validation": 2534, "test": 3534, "train": 18496}
|
| 621 |
-
winogrande_winogrande_debiased_fill_in_the_blank|{"validation": 1267, "test": 1767, "train": 9248}
|
| 622 |
-
winogrande_winogrande_debiased_fill_in_the_blank_score_eval|{"validation": 2534, "test": 3534, "train": 18496}
|
| 623 |
-
winogrande_winogrande_debiased_stand_for|{"validation": 1267, "test": 1767, "train": 9248}
|
| 624 |
-
winogrande_winogrande_debiased_stand_for_score_eval|{"validation": 2534, "test": 3534, "train": 18496}
|
| 625 |
-
winogrande_winogrande_debiased_underscore_refer_to|{"validation": 1267, "test": 1767, "train": 9248}
|
| 626 |
-
winogrande_winogrande_debiased_underscore_refer_to_score_eval|{"validation": 2534, "test": 3534, "train": 18496}
|
| 627 |
-
winogrande_winogrande_xl_Replace|{"validation": 1267, "test": 1767, "train": 40398}
|
| 628 |
-
winogrande_winogrande_xl_Replace_score_eval|{"validation": 2534, "test": 3534, "train": 80796}
|
| 629 |
-
winogrande_winogrande_xl_does_underscore_refer_to|{"validation": 1267, "test": 1767, "train": 40398}
|
| 630 |
-
winogrande_winogrande_xl_does_underscore_refer_to_score_eval|{"validation": 2534, "test": 3534, "train": 80796}
|
| 631 |
-
winogrande_winogrande_xl_fill_in_the_blank|{"validation": 1267, "test": 1767, "train": 40398}
|
| 632 |
-
winogrande_winogrande_xl_fill_in_the_blank_score_eval|{"validation": 2534, "test": 3534, "train": 80796}
|
| 633 |
-
winogrande_winogrande_xl_stand_for|{"validation": 1267, "test": 1767, "train": 40398}
|
| 634 |
-
winogrande_winogrande_xl_stand_for_score_eval|{"validation": 2534, "test": 3534, "train": 80796}
|
| 635 |
-
winogrande_winogrande_xl_underscore_refer_to|{"validation": 1267, "test": 1767, "train": 40398}
|
| 636 |
-
winogrande_winogrande_xl_underscore_refer_to_score_eval|{"validation": 2534, "test": 3534, "train": 80796}
|
| 637 |
-
wiqa_does_the_supposed_perturbation_have_an_effect|{"validation": 6894, "test": 3003, "train": 29808}
|
| 638 |
-
wiqa_effect_with_label_answer|{"validation": 6894, "test": 3003, "train": 29808}
|
| 639 |
-
wiqa_effect_with_string_answer|{"validation": 6894, "test": 3003, "train": 29808}
|
| 640 |
-
wiqa_what_is_the_final_step_of_the_following_process|{"validation": 6894, "test": 3003, "train": 29808}
|
| 641 |
-
wiqa_what_is_the_missing_first_step|{"validation": 6894, "test": 3003, "train": 29808}
|
| 642 |
-
wiqa_what_might_be_the_first_step_of_the_process|{"validation": 6894, "test": 3003, "train": 29808}
|
| 643 |
-
wiqa_what_might_be_the_last_step_of_the_process|{"validation": 6894, "test": 3003, "train": 29808}
|
| 644 |
-
wiqa_which_of_the_following_is_the_supposed_perturbation|{"validation": 6894, "test": 3003, "train": 29808}
|
| 645 |
-
xsum_DOC_boils_down_to_simple_idea_that|{"validation": 11332, "test": 11334, "train": 204045}
|
| 646 |
-
xsum_DOC_given_above_write_one_sentence|{"validation": 11332, "test": 11334, "train": 204045}
|
| 647 |
-
xsum_DOC_how_would_you_rephrase_few_words|{"validation": 11332, "test": 11334, "train": 204045}
|
| 648 |
-
xsum_DOC_tldr|{"validation": 11332, "test": 11334, "train": 204045}
|
| 649 |
-
xsum_DOC_write_summary_of_above|{"validation": 11332, "test": 11334, "train": 204045}
|
| 650 |
-
xsum_article_DOC_summary|{"validation": 11332, "test": 11334, "train": 204045}
|
| 651 |
-
xsum_college_roommate_asked_DOC_so_I_recap|{"validation": 11332, "test": 11334, "train": 204045}
|
| 652 |
-
xsum_read_below_DOC_write_abstract|{"validation": 11332, "test": 11334, "train": 204045}
|
| 653 |
-
xsum_summarize_DOC|{"validation": 11332, "test": 11334, "train": 204045}
|
| 654 |
-
xsum_summarize_this_DOC_summary|{"validation": 11332, "test": 11334, "train": 204045}
|
| 655 |
-
yelp_review_full_based_on_that|{"test": 50000, "train": 650000}
|
| 656 |
-
yelp_review_full_format_rating|{"test": 50000, "train": 650000}
|
| 657 |
-
yelp_review_full_format_score|{"test": 50000, "train": 650000}
|
| 658 |
-
yelp_review_full_format_star|{"test": 50000, "train": 650000}
|
| 659 |
-
yelp_review_full_on_a_scale|{"test": 50000, "train": 650000}
|
| 660 |
-
yelp_review_full_so_i_would|{"test": 50000, "train": 650000}
|
| 661 |
-
yelp_review_full_this_place|{"test": 50000, "train": 650000}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dataset_info_old.json
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
print_data_split_sizes.py
CHANGED
|
@@ -24,6 +24,7 @@ for stats in glob.glob(f"{_DATA_PATH}/*/stats.*.json"):
|
|
| 24 |
data_split_sizes[task_name][split_name] = nb_examples
|
| 25 |
|
| 26 |
with open("data_split_sizes.csv", "w", encoding="utf=8") as f:
|
|
|
|
| 27 |
f.write("Data(sub)set|Number of examples per splits\n")
|
| 28 |
for task_name in sorted(list(data_split_sizes.keys())):
|
| 29 |
split_sizes_dict = json.dumps(data_split_sizes[task_name])
|
|
|
|
| 24 |
data_split_sizes[task_name][split_name] = nb_examples
|
| 25 |
|
| 26 |
with open("data_split_sizes.csv", "w", encoding="utf=8") as f:
|
| 27 |
+
# The file is now merged into `tasks_splits_and_features.py`
|
| 28 |
f.write("Data(sub)set|Number of examples per splits\n")
|
| 29 |
for task_name in sorted(list(data_split_sizes.keys())):
|
| 30 |
split_sizes_dict = json.dumps(data_split_sizes[task_name])
|
tasks_splits_and_features.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|