Muennighoff
commited on
Commit
•
3e5b3a7
1
Parent(s):
492e4ea
Add task name
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- get_ni.py +4 -2
- test/task020_mctaco_span_based_question_test.jsonl +2 -2
- test/task033_winogrande_answer_generation_test.jsonl +2 -2
- test/task034_winogrande_question_modification_object_test.jsonl +2 -2
- test/task035_winogrande_question_modification_person_test.jsonl +2 -2
- test/task036_qasc_topic_word_to_generate_related_fact_test.jsonl +2 -2
- test/task039_qasc_find_overlapping_words_test.jsonl +2 -2
- test/task050_multirc_answerability_test.jsonl +2 -2
- test/task102_commongen_sentence_generation_test.jsonl +2 -2
- test/task1152_bard_analogical_reasoning_causation_test.jsonl +2 -2
- test/task1153_bard_analogical_reasoning_affordance_test.jsonl +2 -2
- test/task1154_bard_analogical_reasoning_travel_test.jsonl +2 -2
- test/task1155_bard_analogical_reasoning_trash_or_treasure_test.jsonl +2 -2
- test/task1156_bard_analogical_reasoning_tools_test.jsonl +2 -2
- test/task1157_bard_analogical_reasoning_rooms_for_containers_test.jsonl +2 -2
- test/task1158_bard_analogical_reasoning_manipulating_items_test.jsonl +2 -2
- test/task1159_bard_analogical_reasoning_containers_test.jsonl +2 -2
- test/task1161_coda19_title_generation_test.jsonl +2 -2
- test/task1195_disflqa_disfluent_to_fluent_conversion_test.jsonl +2 -2
- test/task121_zest_text_modification_test.jsonl +2 -2
- test/task133_winowhy_reason_plausibility_detection_test.jsonl +2 -2
- test/task1342_amazon_us_reviews_title_test.jsonl +2 -2
- test/task1344_glue_entailment_classification_test.jsonl +2 -2
- test/task1345_glue_qqp_question_paraprashing_test.jsonl +2 -2
- test/task1356_xlsum_title_generation_test.jsonl +2 -2
- test/task1358_xlsum_title_generation_test.jsonl +2 -2
- test/task1385_anli_r1_entailment_test.jsonl +2 -2
- test/task1386_anli_r2_entailment_test.jsonl +2 -2
- test/task1387_anli_r3_entailment_test.jsonl +2 -2
- test/task1388_cb_entailment_test.jsonl +2 -2
- test/task1390_wscfixed_coreference_test.jsonl +2 -2
- test/task1391_winogrande_easy_answer_generation_test.jsonl +2 -2
- test/task1393_superglue_copa_text_completion_test.jsonl +2 -2
- test/task1394_meta_woz_task_classification_test.jsonl +2 -2
- test/task1407_dart_question_generation_test.jsonl +2 -2
- test/task1409_dart_text_generation_test.jsonl +2 -2
- test/task1439_doqa_cooking_isanswerable_test.jsonl +2 -2
- test/task1442_doqa_movies_isanswerable_test.jsonl +2 -2
- test/task1516_imppres_naturallanguageinference_test.jsonl +2 -2
- test/task1529_scitail1.1_classification_test.jsonl +2 -2
- test/task1531_daily_dialog_type_classification_test.jsonl +2 -2
- test/task1533_daily_dialog_formal_classification_test.jsonl +2 -2
- test/task1534_daily_dialog_question_classification_test.jsonl +2 -2
- test/task1540_parsed_pdfs_summarization_test.jsonl +2 -2
- test/task1554_scitail_classification_test.jsonl +2 -2
- test/task1557_jfleg_answer_generation_test.jsonl +2 -2
- test/task1562_zest_text_modification_test.jsonl +2 -2
- test/task1586_scifact_title_generation_test.jsonl +2 -2
- test/task1598_nyc_long_text_generation_test.jsonl +2 -2
- test/task1612_sick_label_classification_test.jsonl +2 -2
get_ni.py
CHANGED
@@ -17,13 +17,15 @@ split_to_task_list = {
|
|
17 |
"test": TASKS_LIST_NI_TEST,
|
18 |
}
|
19 |
|
20 |
-
def get_all_prompted_examples_ni(task):
|
21 |
examples = []
|
22 |
for example in task["Instances"]:
|
23 |
for output in example["output"]:
|
24 |
examples.append(
|
25 |
{
|
|
|
26 |
"id": example["id"],
|
|
|
27 |
"definition": task["Definition"][0],
|
28 |
"inputs": example["input"],
|
29 |
"targets": output,
|
@@ -43,7 +45,7 @@ def get_tasky_examples_ni(split):
|
|
43 |
f"There was an issue in loading the file {task_name}: {e} "
|
44 |
)
|
45 |
continue
|
46 |
-
examples = get_all_prompted_examples_ni(task_data)
|
47 |
if examples:
|
48 |
for example in examples:
|
49 |
f.write(json.dumps(example) + "\n")
|
|
|
17 |
"test": TASKS_LIST_NI_TEST,
|
18 |
}
|
19 |
|
20 |
+
def get_all_prompted_examples_ni(task, task_name):
|
21 |
examples = []
|
22 |
for example in task["Instances"]:
|
23 |
for output in example["output"]:
|
24 |
examples.append(
|
25 |
{
|
26 |
+
"task_name": task_name,
|
27 |
"id": example["id"],
|
28 |
+
"task_name": task_name,
|
29 |
"definition": task["Definition"][0],
|
30 |
"inputs": example["input"],
|
31 |
"targets": output,
|
|
|
45 |
f"There was an issue in loading the file {task_name}: {e} "
|
46 |
)
|
47 |
continue
|
48 |
+
examples = get_all_prompted_examples_ni(task_data, task_name)
|
49 |
if examples:
|
50 |
for example in examples:
|
51 |
f.write(json.dumps(example) + "\n")
|
test/task020_mctaco_span_based_question_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2bc07d2a3f5dfb6d9416a1403622680a5096df7ee2ed8d10e17aab09018a90e
|
3 |
+
size 241492
|
test/task033_winogrande_answer_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca4b6463fbf53bfe993c2b0143ac34d44ad20600e6fe2e99784369a54b9d0573
|
3 |
+
size 3653108
|
test/task034_winogrande_question_modification_object_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6427c55f856cfb3ab764597b0f4863616f08bd660d7e3548845b524e4c97575f
|
3 |
+
size 22723349
|
test/task035_winogrande_question_modification_person_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2cdce3b0886641963e6e3e39b26e000ad14439f292f79467856e5a68ddb1de9a
|
3 |
+
size 12195441
|
test/task036_qasc_topic_word_to_generate_related_fact_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af73692ffb02f163bb0b3cbccb727ac8baf92ab502b021ec39c4000fda9673ca
|
3 |
+
size 4183022
|
test/task039_qasc_find_overlapping_words_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d941524645bf7acd334b95be1dd847e291e96299c31983bbe5e6db25d8112fb
|
3 |
+
size 8505464
|
test/task050_multirc_answerability_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fcd788a6b76b24b4056a0b694e7b29098652f25f7f4776eb49fa3a52c9bbcfa3
|
3 |
+
size 3569687
|
test/task102_commongen_sentence_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e5b70189745e631023e51426816c7b58e48e0925301a6167cc4b62f5d4f852e4
|
3 |
+
size 9786503
|
test/task1152_bard_analogical_reasoning_causation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:73d4d21c2e74743ccbe6d492aac13aff75823146d3e14a44aa9e7476161236c7
|
3 |
+
size 110608
|
test/task1153_bard_analogical_reasoning_affordance_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d138017c7d4a757e5963a468429167fd79f3c64aab263c23ee02ced031f32679
|
3 |
+
size 1517172
|
test/task1154_bard_analogical_reasoning_travel_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:39679bca9256dca4f92f22e91eab5d9e1881d443b95ba079cf6dbf57bc6d62b1
|
3 |
+
size 477869
|
test/task1155_bard_analogical_reasoning_trash_or_treasure_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:398fead148d727875e275520f41c2ec240dc2c851bd7c00944524faebf802c9e
|
3 |
+
size 378658
|
test/task1156_bard_analogical_reasoning_tools_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffc1f60bbbc5e9a0a7949350c058a7ddf96d242b9e23d7cf22a85d4e24d24bff
|
3 |
+
size 431214
|
test/task1157_bard_analogical_reasoning_rooms_for_containers_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:94b8b69cd6cfc228744376470bbe71051fbe8e83acb9d103c697f4b80e37da34
|
3 |
+
size 666459
|
test/task1158_bard_analogical_reasoning_manipulating_items_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d35b26c70323044ce0bfe1d8db97de0bc78e8fb7e09067e1ff975e378577e86
|
3 |
+
size 233288
|
test/task1159_bard_analogical_reasoning_containers_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ccf1abce341fed57fe4896d6ad576abbcc29753198fb0d20a612a527c8681103
|
3 |
+
size 389384
|
test/task1161_coda19_title_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:242bf4965cfb44ff93e61c1a4b69169882110cbb414468a874efcb7acd960128
|
3 |
+
size 12854732
|
test/task1195_disflqa_disfluent_to_fluent_conversion_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f59f09def38889b253fe5fe13e7071b5c0e190f4ed35b9797aec6129c811a0b6
|
3 |
+
size 2782792
|
test/task121_zest_text_modification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:47ca1392e866afdf855fd4a6541e33cee4cd8e8f16b7a8c2c476f6d0ed201524
|
3 |
+
size 230966
|
test/task133_winowhy_reason_plausibility_detection_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64236f7be18355578492992c79eaa3a12e442bee14423816aabf91ec7106c2be
|
3 |
+
size 4125624
|
test/task1342_amazon_us_reviews_title_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:da4d0a4c98940056ca76be417e659707aee5975c28d74eec2e5d901146a659e4
|
3 |
+
size 4041049
|
test/task1344_glue_entailment_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62bf9831c3f77a95ecf5e2af6e5e71ae46ab21f7cc1b19b5b734b557aa1c6e00
|
3 |
+
size 1944867
|
test/task1345_glue_qqp_question_paraprashing_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec0fa8021a26c88826a9d39274c3fb5cd04a406ae61f0392a2779db17df3e76c
|
3 |
+
size 2883364
|
test/task1356_xlsum_title_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:344fc49a437307c8277c7d7015d4f3ec38648f9f49497328fb5187565d9c9c44
|
3 |
+
size 18919522
|
test/task1358_xlsum_title_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d25e2fa5048324b6b7e65726a088215847d6a1dd901f0423a751f99a459d13c
|
3 |
+
size 3447710
|
test/task1385_anli_r1_entailment_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:703b34f00c4ece3a2f2f15fcb728ab114f84e55b82c429b7eaecdb0b2db7cfd2
|
3 |
+
size 858386
|
test/task1386_anli_r2_entailment_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35d1d4ac9ba31cf77bbfaeddb299e0bfd5a94999a73f8c4f199ad9d36f7c1278
|
3 |
+
size 846759
|
test/task1387_anli_r3_entailment_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4a3f16c29485bead685634463737d2653d76930c33332fb2192216282f330192
|
3 |
+
size 1011488
|
test/task1388_cb_entailment_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a49142abd92cb6d27650b20fe2ea975aa00bd72ca63b74b534d6dd8e6bcfbe63
|
3 |
+
size 238290
|
test/task1390_wscfixed_coreference_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5086ab58d53aa2078de48425cb7b2f2d0d289743dcdec94d02500dd0f04c71ff
|
3 |
+
size 356024
|
test/task1391_winogrande_easy_answer_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b476db4eaa2a01c3d3c6d65cf3bcab24156abbe748c1fac3a124180b3a7d8914
|
3 |
+
size 2917338
|
test/task1393_superglue_copa_text_completion_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b6f10c7bfba4254234030f5067edc770ffdc6f19ffbb1f5aed5a19bd2607384
|
3 |
+
size 302872
|
test/task1394_meta_woz_task_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8b461d949792319b33e87dde119f08a939653c365c126603304e19fc0ec199c
|
3 |
+
size 339898
|
test/task1407_dart_question_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:594f1639f1e3fb58ea39ed56fdafafe6774ff1fb9761bb10610f3eb90be6e10a
|
3 |
+
size 7126287
|
test/task1409_dart_text_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:026b9c6576090653baebecd8fa8189be347b140b682c93442c2d9c98eb77d1bf
|
3 |
+
size 11252300
|
test/task1439_doqa_cooking_isanswerable_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:72e80159352cd7f31ac3a025085f4bf8369e68b5dbec7e8fb0ceb2909b1c82aa
|
3 |
+
size 4049994
|
test/task1442_doqa_movies_isanswerable_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:89d0c1157f27957f7d81457328e290ee7d540cf7e43ffcbe0fa59f2d42068c1f
|
3 |
+
size 2989824
|
test/task1516_imppres_naturallanguageinference_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df09bb429c67fe102b43fd0aa333e856cf4e42b41e88910c5d19b394f1b37726
|
3 |
+
size 402799
|
test/task1529_scitail1.1_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8027c00ae8e9e33b554fef6b3e8ae20d958f988d9904a93aa4285342f2ef6dab
|
3 |
+
size 3852682
|
test/task1531_daily_dialog_type_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:251c28c1be0d29d44d95c2eb95337a7701e16b592c421ea3f71d46aa97361958
|
3 |
+
size 319633
|
test/task1533_daily_dialog_formal_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2d44361b86dba69452d6e4636f9e8f29efb87f06fe4028fdf60bc4be63c246d
|
3 |
+
size 6691736
|
test/task1534_daily_dialog_question_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc83f7a884cb98095a1a6cf420e9c94f646d546ec82d9d459358b01b2d28209d
|
3 |
+
size 5882522
|
test/task1540_parsed_pdfs_summarization_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:77d15c6b2c32667b70b1d179c0029790739639f7f4883d68c7c7cf936e7aa0fa
|
3 |
+
size 4474621
|
test/task1554_scitail_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f280fd598c04beb826a8f4ddd627db58478ac141463969a0b3c965e4f645cb01
|
3 |
+
size 4175466
|
test/task1557_jfleg_answer_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:494a9ae69ddfcb4a769ebff2e344fb2036be1cdf61127b45b5ef55117c1815d8
|
3 |
+
size 349134
|
test/task1562_zest_text_modification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1216ae05ebdfe37e142d08bffcf0a8a1e1a79c43a92a206aee32ea241811e7d
|
3 |
+
size 181520
|
test/task1586_scifact_title_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04abb86411db3f904c8dc5ccb5d1faa1ee93bf5ef774b86c0d6bdf809097e1a7
|
3 |
+
size 8995386
|
test/task1598_nyc_long_text_generation_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:abdbfa9ad3fc09d55a251a7f390050c5a19c81236ef2b07355ebafc1a7c808a7
|
3 |
+
size 3470985
|
test/task1612_sick_label_classification_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db5db5d606d368d4eb34ef6d2b233efa38903be72699a955992ee0cf94ebec64
|
3 |
+
size 1079131
|