Muennighoff commited on
Commit
3e5b3a7
1 Parent(s): 492e4ea

Add task name

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. get_ni.py +4 -2
  2. test/task020_mctaco_span_based_question_test.jsonl +2 -2
  3. test/task033_winogrande_answer_generation_test.jsonl +2 -2
  4. test/task034_winogrande_question_modification_object_test.jsonl +2 -2
  5. test/task035_winogrande_question_modification_person_test.jsonl +2 -2
  6. test/task036_qasc_topic_word_to_generate_related_fact_test.jsonl +2 -2
  7. test/task039_qasc_find_overlapping_words_test.jsonl +2 -2
  8. test/task050_multirc_answerability_test.jsonl +2 -2
  9. test/task102_commongen_sentence_generation_test.jsonl +2 -2
  10. test/task1152_bard_analogical_reasoning_causation_test.jsonl +2 -2
  11. test/task1153_bard_analogical_reasoning_affordance_test.jsonl +2 -2
  12. test/task1154_bard_analogical_reasoning_travel_test.jsonl +2 -2
  13. test/task1155_bard_analogical_reasoning_trash_or_treasure_test.jsonl +2 -2
  14. test/task1156_bard_analogical_reasoning_tools_test.jsonl +2 -2
  15. test/task1157_bard_analogical_reasoning_rooms_for_containers_test.jsonl +2 -2
  16. test/task1158_bard_analogical_reasoning_manipulating_items_test.jsonl +2 -2
  17. test/task1159_bard_analogical_reasoning_containers_test.jsonl +2 -2
  18. test/task1161_coda19_title_generation_test.jsonl +2 -2
  19. test/task1195_disflqa_disfluent_to_fluent_conversion_test.jsonl +2 -2
  20. test/task121_zest_text_modification_test.jsonl +2 -2
  21. test/task133_winowhy_reason_plausibility_detection_test.jsonl +2 -2
  22. test/task1342_amazon_us_reviews_title_test.jsonl +2 -2
  23. test/task1344_glue_entailment_classification_test.jsonl +2 -2
  24. test/task1345_glue_qqp_question_paraprashing_test.jsonl +2 -2
  25. test/task1356_xlsum_title_generation_test.jsonl +2 -2
  26. test/task1358_xlsum_title_generation_test.jsonl +2 -2
  27. test/task1385_anli_r1_entailment_test.jsonl +2 -2
  28. test/task1386_anli_r2_entailment_test.jsonl +2 -2
  29. test/task1387_anli_r3_entailment_test.jsonl +2 -2
  30. test/task1388_cb_entailment_test.jsonl +2 -2
  31. test/task1390_wscfixed_coreference_test.jsonl +2 -2
  32. test/task1391_winogrande_easy_answer_generation_test.jsonl +2 -2
  33. test/task1393_superglue_copa_text_completion_test.jsonl +2 -2
  34. test/task1394_meta_woz_task_classification_test.jsonl +2 -2
  35. test/task1407_dart_question_generation_test.jsonl +2 -2
  36. test/task1409_dart_text_generation_test.jsonl +2 -2
  37. test/task1439_doqa_cooking_isanswerable_test.jsonl +2 -2
  38. test/task1442_doqa_movies_isanswerable_test.jsonl +2 -2
  39. test/task1516_imppres_naturallanguageinference_test.jsonl +2 -2
  40. test/task1529_scitail1.1_classification_test.jsonl +2 -2
  41. test/task1531_daily_dialog_type_classification_test.jsonl +2 -2
  42. test/task1533_daily_dialog_formal_classification_test.jsonl +2 -2
  43. test/task1534_daily_dialog_question_classification_test.jsonl +2 -2
  44. test/task1540_parsed_pdfs_summarization_test.jsonl +2 -2
  45. test/task1554_scitail_classification_test.jsonl +2 -2
  46. test/task1557_jfleg_answer_generation_test.jsonl +2 -2
  47. test/task1562_zest_text_modification_test.jsonl +2 -2
  48. test/task1586_scifact_title_generation_test.jsonl +2 -2
  49. test/task1598_nyc_long_text_generation_test.jsonl +2 -2
  50. 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:1cd8366f7915215b123570ffb50666fd7db839c277f12611a83e784b8e6f3277
3
- size 222061
 
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:ada6992368adf392c346ad6762fd264800a2a6a0a113106ce4af343aec096fe2
3
- size 3308608
 
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:2f04df3af7327b9877b395345ffcc71aaf7178d094d03b47a9dad5f527e96cf6
3
- size 22307349
 
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:d421d68776aee2513c45f61ac1d7b7e1600a43aa8b5521ad0b3c67bf6ae5e627
3
- size 11779505
 
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:7e46f01e127d594aaea36f60da63e135e9c04d49136461c41681c016e9c89f38
3
- size 3700007
 
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:fb8983e873cb5e2c98dd78ca5a9e23728bc1d167e30ae950af6fb4c9f66c0724
3
- size 7781832
 
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:43870d46a9c7af0f690bf657b6b3abf6b19b9ab48213c3ace5b1241665cc179c
3
- size 3297735
 
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:f894ee704618507b7ee27623c27c537a2584f75396c641452908988c98cb8f09
3
- size 8910407
 
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:8932c423dca6b53d72614b78bd69332b6540e99b555b9312ea8879390802e61d
3
- size 98164
 
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:3cc76eb098faffe4a3da666d45a934240f0ea83d71a39e905ec75a93900fc8c6
3
- size 1370790
 
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:e5a443c411368f8ab7bfd7d4c1e03a150ff66849d4c99ae35d82a97ae10b2902
3
- size 420217
 
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:9992569af22f4efd48fb527fe75d1a38800baee0e00f13babdf1925b2da5a9e0
3
- size 340984
 
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:01135dd636a512b9706b6168377ebc2a1cf439c1a3e6efbe4b132d96a3120900
3
- size 378261
 
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:70573b449207a891634c13c11b62ad829466fc24d997c1a5e2767437f9abef8b
3
- size 564291
 
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:9c1651666301b16bfc8afee05a0aafe9848cf70e9dd400d14fca8f95e61050f0
3
- size 204098
 
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:34b95c85e341be5781915fd83eba7826920dd3a7c27b813e7d0d1a996fa920fc
3
- size 338978
 
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:ebaecbb0bdea7fa871727b8ed7e17384a9742d46f9319c0cea263e45570f0949
3
- size 12536232
 
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:01c4396987339e457f30821de37629ec45069340bdb9bbd26d2a6c2e0bfcb871
3
- size 2367176
 
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:45b0d9ca488a06f748cf7a140345761345c8ddbcd19cbbc429721dd94d631039
3
- size 224715
 
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:a836ff76bb4d6ac12a3a5aec78c17d31de581d3f27555d58a8e11630081bdad2
3
- size 3948614
 
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:48971823844953cf9534709ff1d4b2490b5df89fb8af429647b6c4a13891ebf1
3
- size 3736416
 
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:07daaf686ff559001cd2a1d8b8a4b9cefd18ad3b45edb1f60ebd9361c767a2d3
3
- size 1805987
 
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:1aed2647177578e97b22ef61be25f4d3102d6692fc6aa9311bf928415e63f642
3
- size 2519364
 
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:60655ff65c23a1a8e7d4042bfe972d277e06de65b26b07fbf7bbbbf2d145217d
3
- size 18625426
 
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:b3493bf8f9899042ef1260e82aec2d8fa23b3259240f1e13da647ed465a55752
3
- size 3153614
 
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:4d989c7e084fecd6dfe9af288c7837179c3d8b5c536522e202671da55668230e
3
- size 814826
 
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:1fe30055a1656dfec013c354b209a2d8a77c8f07d66d1690cc9d2233f17660a2
3
- size 803067
 
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:661714e6cf6941095873cd9613503c910141e27b9b324eb7e1058d72669e545a
3
- size 958996
 
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:b4bca4df30626546e3e339c38f20e4b113244f09e572b4927065a78291948278
3
- size 226551
 
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:cdc2c4169c9a06ec019ff4a30e9d01ec59cc78de17458d3ed31cc61b68a40a49
3
- size 326216
 
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:613bbf79da39ebb265d9cea15287725c242f920398de3987bddb265e17c27209
3
- size 2534369
 
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:abbc6494025ea4f3666a0acb86df6e26e0f03f0a825f1698fd637b39dbbde0d0
3
- size 275096
 
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:1606143502d415aba4571659792d5e01c5084e81db42ef55e06a6c2dbf8ff337
3
- size 327802
 
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:7f730c9459f92e8a298d2edcbda1f8a5fe8776472f2c54ad8efcab0fe5ec1e65
3
- size 6788187
 
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:e55b43a06fdfde526a53389b11fca026934f64aaf392a1d72a52aab924536a01
3
- size 10645284
 
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:2f2988a2c99f6f834c3a4b25789defb922d9d4a9a8a0c088840c36afe63ce3ec
3
- size 3920964
 
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:e605e7ba6da197634a2dd6d80c45b1d5ff398553f71cc44cac9df67e31cfeb58
3
- size 2895874
 
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:782762f4f21e49dcfc4d56e56a1a63fd0f522dfb3cddb73e908927e91e2697ae
3
- size 361677
 
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:fcd4197edf8f034f49414e4b8ef4e29a28ebbe7940e9c071b833636113426abe
3
- size 3594622
 
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:552b56dae26381419b9086126be4d1fd507a0e497061c8d9fef5ac01a4f15780
3
- size 290807
 
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:d2b12a45e38c02c693f3904090c95efb553ef0075e3fb94f77544d5f29e9e173
3
- size 6322016
 
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:4c8fd871d06beacce5565a06a6f5250fbfe57b8276f9a7e7745bb2ac5f9ca22e
3
- size 5500540
 
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:9c9772427b9f19527a6e57a688b39cbe4c761d3d27526a3764662955f501103c
3
- size 4321621
 
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:19769b3148a58609ccf191d9a163dff26955bf7479541401b6a397ca028768c6
3
- size 3863706
 
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:350f69e66a3dbc8113d43432efd9e515df2f1e2114dcdb0a139e198c3df9b2a0
3
- size 312188
 
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:8a0745c4687e740e82014de30e55ea81be0b955d722b35bf4e90f83d33f22bd4
3
- size 174704
 
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:72ad75e98dae65564cca0dc784ec2ef3eb3edc485201268e916c193562971d31
3
- size 8745386
 
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:a03557b8b58716b1bef8a576071c7ab4b9cd4a538e1c08c5d359941d4cbd0753
3
- size 3146285
 
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:e47f772fc78762e5425bc4cea2060a17e6530b8d4a6727a28331659d2a7470c1
3
- size 987331
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db5db5d606d368d4eb34ef6d2b233efa38903be72699a955992ee0cf94ebec64
3
+ size 1079131