system HF staff commited on
Commit
e0748ba
1 Parent(s): 8d3327c

Update files from the datasets library (from 1.17.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.17.0

README.md CHANGED
@@ -95,9 +95,9 @@ This example was too long and was cropped:
95
 
96
  #### chid
97
 
98
- - **Size of downloaded dataset files:** 127.15 MB
99
- - **Size of the generated dataset:** 259.71 MB
100
- - **Total amount of disk used:** 386.86 MB
101
 
102
  An example of 'train' looks as follows.
103
  ```
@@ -116,9 +116,9 @@ This example was too long and was cropped:
116
 
117
  #### cluewsc2020
118
 
119
- - **Size of downloaded dataset files:** 0.08 MB
120
- - **Size of the generated dataset:** 0.41 MB
121
- - **Total amount of disk used:** 0.49 MB
122
 
123
  An example of 'train' looks as follows.
124
  ```
95
 
96
  #### chid
97
 
98
+ - **Size of downloaded dataset files:** 132.75 MB
99
+ - **Size of the generated dataset:** 261.38 MB
100
+ - **Total amount of disk used:** 394.13 MB
101
 
102
  An example of 'train' looks as follows.
103
  ```
116
 
117
  #### cluewsc2020
118
 
119
+ - **Size of downloaded dataset files:** 0.27 MB
120
+ - **Size of the generated dataset:** 0.98 MB
121
+ - **Total amount of disk used:** 1.23 MB
122
 
123
  An example of 'train' looks as follows.
124
  ```
clue.py CHANGED
@@ -407,12 +407,18 @@ class Clue(datasets.GeneratorBasedBuilder):
407
  def _split_generators(self, dl_manager):
408
  dl_dir = dl_manager.download_and_extract(self.config.data_url)
409
  data_dir = os.path.join(dl_dir, self.config.data_dir)
 
 
 
 
 
 
 
 
410
  test_split = datasets.SplitGenerator(
411
  name=datasets.Split.TEST,
412
  gen_kwargs={
413
- "data_file": os.path.join(
414
- data_dir, "test.json" if self.config.name != "diagnostics" else "diagnostics_test.json"
415
- ),
416
  "split": "test",
417
  },
418
  )
@@ -472,7 +478,7 @@ class Clue(datasets.GeneratorBasedBuilder):
472
  data_subset = json.load(open(f, encoding="utf8"))
473
  data += data_subset
474
  for idx, entry in enumerate(data):
475
- for question in entry[1]:
476
  example = {
477
  "id": idx if split != "test" else int(question["id"]),
478
  "context": entry[0],
@@ -480,7 +486,7 @@ class Clue(datasets.GeneratorBasedBuilder):
480
  "choice": question["choice"],
481
  "answer": question["answer"] if split != "test" else "",
482
  }
483
- yield example["id"], example
484
 
485
  else:
486
  with open(data_file, encoding="utf8") as f:
407
  def _split_generators(self, dl_manager):
408
  dl_dir = dl_manager.download_and_extract(self.config.data_url)
409
  data_dir = os.path.join(dl_dir, self.config.data_dir)
410
+
411
+ if self.config.name in {"chid", "c3"}:
412
+ test_file = "test1.1.json"
413
+ elif self.config.name == "diagnostics":
414
+ test_file = "diagnostics_test.json"
415
+ else:
416
+ test_file = "test.json"
417
+
418
  test_split = datasets.SplitGenerator(
419
  name=datasets.Split.TEST,
420
  gen_kwargs={
421
+ "data_file": os.path.join(data_dir, test_file),
 
 
422
  "split": "test",
423
  },
424
  )
478
  data_subset = json.load(open(f, encoding="utf8"))
479
  data += data_subset
480
  for idx, entry in enumerate(data):
481
+ for qidx, question in enumerate(entry[1]):
482
  example = {
483
  "id": idx if split != "test" else int(question["id"]),
484
  "context": entry[0],
486
  "choice": question["choice"],
487
  "answer": question["answer"] if split != "test" else "",
488
  }
489
+ yield f"{idx}_{qidx}", example
490
 
491
  else:
492
  with open(data_file, encoding="utf8") as f:
dataset_infos.json CHANGED
@@ -1 +1 @@
1
- {"afqmc": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://dc.cloud.alipay.com/index#/topic/data?id=8", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["0", "1"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "afqmc", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 378726, "num_examples": 3861, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 3396535, "num_examples": 34334, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 426293, "num_examples": 4316, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/afqmc_public.zip": {"num_bytes": 1195044, "checksum": "5a4cb1556b833010c329fa2ad2207d9e98fc94071b7e474015e9dd7c385db4dc"}}, "download_size": 1195044, "post_processing_size": null, "dataset_size": 4201554, "size_in_bytes": 5396598}, "tnews": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/skdjfla/toutiao-text-classfication-dataset", "license": "", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 15, "names": ["100", "101", "102", "103", "104", "106", "107", "108", "109", "110", "112", "113", "114", "115", "116"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "tnews", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 797765, "num_examples": 10000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 4245701, "num_examples": 53360, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 797926, "num_examples": 10000, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/tnews_public.zip": {"num_bytes": 4689325, "checksum": "2469c4205606e24118c7de08199fbd55da483b65128e1d9c1f380849797f6ce0"}}, "download_size": 4689325, "post_processing_size": null, "dataset_size": 5841392, "size_in_bytes": 10530717}, "iflytek": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 119, "names": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "iflytek", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2105688, "num_examples": 2600, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 10028613, "num_examples": 12133, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2157123, "num_examples": 2599, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/iflytek_public.zip": {"num_bytes": 6505938, "checksum": "c59b961b29f1d0bad0c5e01aa62e4a61a80e9cfb980ce89b06c000851fbb3b06"}}, "download_size": 6505938, "post_processing_size": null, "dataset_size": 14291424, "size_in_bytes": 20797362}, "cmnli": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "cmnli", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2386837, "num_examples": 13880, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 67685309, "num_examples": 391783, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2051845, "num_examples": 12241, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cmnli_public.zip": {"num_bytes": 31404066, "checksum": "3a3f3b1d3d27134cf11e585156f07fa050bd0a0836821c02696af0dbaa14513b"}}, "download_size": 31404066, "post_processing_size": null, "dataset_size": 72123991, "size_in_bytes": 103528057}, "cluewsc2020": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["true", "false"], "names_file": null, "id": null, "_type": "ClassLabel"}, "target": {"span1_text": {"dtype": "string", "id": null, "_type": "Value"}, "span2_text": {"dtype": "string", "id": null, "_type": "Value"}, "span1_index": {"dtype": "int32", "id": null, "_type": "Value"}, "span2_index": {"dtype": "int32", "id": null, "_type": "Value"}}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "cluewsc2020", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 66295, "num_examples": 290, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 288828, "num_examples": 1244, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 72682, "num_examples": 304, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cluewsc2020_public.zip": {"num_bytes": 88526, "checksum": "5e318e8c2c88256ea66819a24348a65d0824ade15c0f02c5a14b78d240d38afb"}}, "download_size": 88526, "post_processing_size": null, "dataset_size": 427805, "size_in_bytes": 516331}, "csl": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/P01son6415/CSL", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "corpus_id": {"dtype": "int32", "id": null, "_type": "Value"}, "abst": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["0", "1"], "names_file": null, "id": null, "_type": "ClassLabel"}, "keyword": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "csl", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2463740, "num_examples": 3000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 16478914, "num_examples": 20000, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2464575, "num_examples": 3000, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/csl_public.zip": {"num_bytes": 3234594, "checksum": "795d1a2e475d59acad8236f6c5baba7a0b43d3e0508cb60f15ffbc76d5f437c4"}}, "download_size": 3234594, "post_processing_size": null, "dataset_size": 21407229, "size_in_bytes": 24641823}, "cmrc2018": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @article{cmrc2018-dataset,\n title={A Span-Extraction Dataset for Chinese Machine Reading Comprehension},\n author={Cui, Yiming and Liu, Ting and Xiao, Li and Chen, Zhipeng and Ma, Wentao and Che, Wanxiang and Wang, Shijin and Hu, Guoping},\n journal={arXiv preprint arXiv:1810.07366},\n year={2018}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://hfl-rc.github.io/cmrc2018/", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "answer_start": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "cmrc2018", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 3112066, "num_examples": 2000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 15508110, "num_examples": 10142, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 5183809, "num_examples": 3219, "dataset_name": "clue"}, "trial": {"name": "trial", "num_bytes": 1606931, "num_examples": 1002, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cmrc2018_public.zip": {"num_bytes": 3405146, "checksum": "6c63dc27e728ec5231aeb7d2861b4c90b6c116390582e0c44416cf3edf030b16"}}, "download_size": 3405146, "post_processing_size": null, "dataset_size": 25410916, "size_in_bytes": 28816062}, "drcd": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/DRCKnowledgeTeam/DRCD", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "answer_start": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "drcd", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 4982402, "num_examples": 3493, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 37443458, "num_examples": 26936, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 5222753, "num_examples": 3524, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/drcd_public.zip": {"num_bytes": 7264200, "checksum": "f03a38bded37572e224b69b822794eca6218f9584afc0918bf8aa2bc77cf968d"}}, "download_size": 7264200, "post_processing_size": null, "dataset_size": 47648613, "size_in_bytes": 54912813}, "chid": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @article{Zheng_2019,\n title={ChID: A Large-scale Chinese IDiom Dataset for Cloze Test},\n url={http://dx.doi.org/10.18653/v1/P19-1075},\n DOI={10.18653/v1/p19-1075},\n journal={Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics},\n publisher={Association for Computational Linguistics},\n author={Zheng, Chujie and Huang, Minlie and Sun, Aixin},\n year={2019}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/1906.01265", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "candidates": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "content": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "candidate_id": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "chid", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 9733464, "num_examples": 3231, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 252478178, "num_examples": 84709, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 10117789, "num_examples": 3218, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/chid_public.zip": {"num_bytes": 133322133, "checksum": "4cdf93c0a9dfa43113284c501d8948bbc17bd6a55e3b0b4314a31909562ec19d"}}, "download_size": 133322133, "post_processing_size": null, "dataset_size": 272329431, "size_in_bytes": 405651564}, "c3": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "@article{sun2020investigating,\n author = {Kai Sun and\n Dian Yu and\n Dong Yu and\n Claire Cardie},\n title = {Investigating Prior Knowledge for Challenging Chinese Machine Reading\n Comprehension},\n journal = {Trans. Assoc. Comput. Linguistics},\n volume = {8},\n pages = {141--155},\n year = {2020},\n url = {https://transacl.org/ojs/index.php/tacl/article/view/1882}\n }\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/1904.09679", "license": "", "features": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "context": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "choice": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "answer": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "c3", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 3025700, "num_examples": 3892, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 9672787, "num_examples": 11869, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2990967, "num_examples": 3816, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/c3_public.zip": {"num_bytes": 3200727, "checksum": "15e98a52512116efc2382c82496069ae75b7944cbd144230ef0f7f8150a1de7c"}}, "download_size": 3200727, "post_processing_size": null, "dataset_size": 15689454, "size_in_bytes": 18890181}, "ocnli": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @inproceedings{ocnli,\n title={OCNLI: Original Chinese Natural Language Inference},\n author={Hai Hu and Kyle Richardson and Liang Xu and Lu Li and Sandra Kuebler and Larry Moss},\n booktitle={Findings of EMNLP},\n year={2020},\n url={https://arxiv.org/abs/2010.05444}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/2010.05444", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "ocnli", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 376066, "num_examples": 3000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 6187190, "num_examples": 50437, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 366235, "num_examples": 2950, "dataset_name": "clue"}}, "download_checksums": {"https://github.com/CLUEbenchmark/OCNLI/archive/02d55cb3c7dc984682677b8dd81db6a1e4710720.zip": {"num_bytes": 4359754, "checksum": "93abd5dbe417101d4c7526920fae59cc67969936c1868b1559fa4802839c49d0"}}, "download_size": 4359754, "post_processing_size": null, "dataset_size": 6929491, "size_in_bytes": 11289245}, "diagnostics": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "clue", "config_name": "diagnostics", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 42400, "num_examples": 514, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/clue_diagnostics_public.zip": {"num_bytes": 12062, "checksum": "56b52e70c195686557a966c6064c9bdc4dece1de8c89551f89ad046637e9a7c4"}}, "download_size": 12062, "post_processing_size": null, "dataset_size": 42400, "size_in_bytes": 54462}}
1
+ {"afqmc": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://dc.cloud.alipay.com/index#/topic/data?id=8", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["0", "1"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "afqmc", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 378726, "num_examples": 3861, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 3396535, "num_examples": 34334, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 426293, "num_examples": 4316, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/afqmc_public.zip": {"num_bytes": 1195044, "checksum": "5a4cb1556b833010c329fa2ad2207d9e98fc94071b7e474015e9dd7c385db4dc"}}, "download_size": 1195044, "post_processing_size": null, "dataset_size": 4201554, "size_in_bytes": 5396598}, "tnews": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/skdjfla/toutiao-text-classfication-dataset", "license": "", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 15, "names": ["100", "101", "102", "103", "104", "106", "107", "108", "109", "110", "112", "113", "114", "115", "116"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "tnews", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 810974, "num_examples": 10000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 4245701, "num_examples": 53360, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 797926, "num_examples": 10000, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/tnews_public.zip": {"num_bytes": 5123575, "checksum": "77c476e70cfe0b014a81b84c6e1db2142a8a2f52f4ae0a8216aa75e673933462"}}, "download_size": 5123575, "post_processing_size": null, "dataset_size": 5854601, "size_in_bytes": 10978176}, "iflytek": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 119, "names": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "iflytek", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2105688, "num_examples": 2600, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 10028613, "num_examples": 12133, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2157123, "num_examples": 2599, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/iflytek_public.zip": {"num_bytes": 6505938, "checksum": "c59b961b29f1d0bad0c5e01aa62e4a61a80e9cfb980ce89b06c000851fbb3b06"}}, "download_size": 6505938, "post_processing_size": null, "dataset_size": 14291424, "size_in_bytes": 20797362}, "cmnli": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "cmnli", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2386837, "num_examples": 13880, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 67685309, "num_examples": 391783, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2051845, "num_examples": 12241, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cmnli_public.zip": {"num_bytes": 31404066, "checksum": "3a3f3b1d3d27134cf11e585156f07fa050bd0a0836821c02696af0dbaa14513b"}}, "download_size": 31404066, "post_processing_size": null, "dataset_size": 72123991, "size_in_bytes": 103528057}, "cluewsc2020": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["true", "false"], "names_file": null, "id": null, "_type": "ClassLabel"}, "target": {"span1_text": {"dtype": "string", "id": null, "_type": "Value"}, "span2_text": {"dtype": "string", "id": null, "_type": "Value"}, "span1_index": {"dtype": "int32", "id": null, "_type": "Value"}, "span2_index": {"dtype": "int32", "id": null, "_type": "Value"}}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "cluewsc2020", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 645649, "num_examples": 2574, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 288828, "num_examples": 1244, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 72682, "num_examples": 304, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cluewsc2020_public.zip": {"num_bytes": 281384, "checksum": "ebe5f357b19392d601be401b2fd4246983f534809a078eab7bda1de418fb3ffe"}}, "download_size": 281384, "post_processing_size": null, "dataset_size": 1007159, "size_in_bytes": 1288543}, "csl": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/P01son6415/CSL", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "corpus_id": {"dtype": "int32", "id": null, "_type": "Value"}, "abst": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 2, "names": ["0", "1"], "names_file": null, "id": null, "_type": "ClassLabel"}, "keyword": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "csl", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2463740, "num_examples": 3000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 16478914, "num_examples": 20000, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2464575, "num_examples": 3000, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/csl_public.zip": {"num_bytes": 3234594, "checksum": "795d1a2e475d59acad8236f6c5baba7a0b43d3e0508cb60f15ffbc76d5f437c4"}}, "download_size": 3234594, "post_processing_size": null, "dataset_size": 21407229, "size_in_bytes": 24641823}, "cmrc2018": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @article{cmrc2018-dataset,\n title={A Span-Extraction Dataset for Chinese Machine Reading Comprehension},\n author={Cui, Yiming and Liu, Ting and Xiao, Li and Chen, Zhipeng and Ma, Wentao and Che, Wanxiang and Wang, Shijin and Hu, Guoping},\n journal={arXiv preprint arXiv:1810.07366},\n year={2018}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://hfl-rc.github.io/cmrc2018/", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "answer_start": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "cmrc2018", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 3112066, "num_examples": 2000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 15508110, "num_examples": 10142, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 5183809, "num_examples": 3219, "dataset_name": "clue"}, "trial": {"name": "trial", "num_bytes": 1606931, "num_examples": 1002, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/cmrc2018_public.zip": {"num_bytes": 3405146, "checksum": "6c63dc27e728ec5231aeb7d2861b4c90b6c116390582e0c44416cf3edf030b16"}}, "download_size": 3405146, "post_processing_size": null, "dataset_size": 25410916, "size_in_bytes": 28816062}, "drcd": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/DRCKnowledgeTeam/DRCD", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "answer_start": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "drcd", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 4982402, "num_examples": 3493, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 37443458, "num_examples": 26936, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 5222753, "num_examples": 3524, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/drcd_public.zip": {"num_bytes": 7264200, "checksum": "f03a38bded37572e224b69b822794eca6218f9584afc0918bf8aa2bc77cf968d"}}, "download_size": 7264200, "post_processing_size": null, "dataset_size": 47648613, "size_in_bytes": 54912813}, "chid": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @article{Zheng_2019,\n title={ChID: A Large-scale Chinese IDiom Dataset for Cloze Test},\n url={http://dx.doi.org/10.18653/v1/P19-1075},\n DOI={10.18653/v1/p19-1075},\n journal={Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics},\n publisher={Association for Computational Linguistics},\n author={Zheng, Chujie and Huang, Minlie and Sun, Aixin},\n year={2019}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/1906.01265", "license": "", "features": {"idx": {"dtype": "int32", "id": null, "_type": "Value"}, "candidates": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "content": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "candidate_id": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "chid", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 11480463, "num_examples": 3447, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 252478178, "num_examples": 84709, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 10117789, "num_examples": 3218, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/chid_public.zip": {"num_bytes": 139199202, "checksum": "be02dbcc41a9c237542141f53836e70a209f7a686cf894891411c7e5534f73a4"}}, "download_size": 139199202, "post_processing_size": null, "dataset_size": 274076430, "size_in_bytes": 413275632}, "c3": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "@article{sun2020investigating,\n author = {Kai Sun and\n Dian Yu and\n Dong Yu and\n Claire Cardie},\n title = {Investigating Prior Knowledge for Challenging Chinese Machine Reading\n Comprehension},\n journal = {Trans. Assoc. Comput. Linguistics},\n volume = {8},\n pages = {141--155},\n year = {2020},\n url = {https://transacl.org/ojs/index.php/tacl/article/view/1882}\n }\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/1904.09679", "license": "", "features": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "context": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "choice": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "answer": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "c3", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 1600166, "num_examples": 1625, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 9672787, "num_examples": 11869, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 2990967, "num_examples": 3816, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/c3_public.zip": {"num_bytes": 3495930, "checksum": "20dfa683c57c9795129e22d8dd0c299d6b2a29fbc84758ef2ebdb8b2904d7e12"}}, "download_size": 3495930, "post_processing_size": null, "dataset_size": 14263920, "size_in_bytes": 17759850}, "ocnli": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": " @inproceedings{ocnli,\n title={OCNLI: Original Chinese Natural Language Inference},\n author={Hai Hu and Kyle Richardson and Liang Xu and Lu Li and Sandra Kuebler and Larry Moss},\n booktitle={Findings of EMNLP},\n year={2020},\n url={https://arxiv.org/abs/2010.05444}\n}\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://arxiv.org/abs/2010.05444", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "ocnli", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 376066, "num_examples": 3000, "dataset_name": "clue"}, "train": {"name": "train", "num_bytes": 6187190, "num_examples": 50437, "dataset_name": "clue"}, "validation": {"name": "validation", "num_bytes": 366235, "num_examples": 2950, "dataset_name": "clue"}}, "download_checksums": {"https://github.com/CLUEbenchmark/OCNLI/archive/02d55cb3c7dc984682677b8dd81db6a1e4710720.zip": {"num_bytes": 4359754, "checksum": "93abd5dbe417101d4c7526920fae59cc67969936c1868b1559fa4802839c49d0"}}, "download_size": 4359754, "post_processing_size": null, "dataset_size": 6929491, "size_in_bytes": 11289245}, "diagnostics": {"description": "CLUE, A Chinese Language Understanding Evaluation Benchmark\n(https://www.cluebenchmarks.com/) is a collection of resources for training,\nevaluating, and analyzing Chinese language understanding systems.\n\n", "citation": "\n@misc{xu2020clue,\n title={CLUE: A Chinese Language Understanding Evaluation Benchmark},\n author={Liang Xu and Xuanwei Zhang and Lu Li and Hai Hu and Chenjie Cao and Weitang Liu and Junyi Li and Yudong Li and Kai Sun and Yechen Xu and Yiming Cui and Cong Yu and Qianqian Dong and Yin Tian and Dian Yu and Bo Shi and Jun Zeng and Rongzhao Wang and Weijian Xie and Yanting Li and Yina Patterson and Zuoyu Tian and Yiwen Zhang and He Zhou and Shaoweihua Liu and Qipeng Zhao and Cong Yue and Xinrui Zhang and Zhengliang Yang and Zhenzhong Lan},\n year={2020},\n eprint={2004.05986},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "", "license": "", "features": {"sentence1": {"dtype": "string", "id": null, "_type": "Value"}, "sentence2": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 3, "names": ["neutral", "entailment", "contradiction"], "names_file": null, "id": null, "_type": "ClassLabel"}, "idx": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "clue", "config_name": "diagnostics", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 42400, "num_examples": 514, "dataset_name": "clue"}}, "download_checksums": {"https://storage.googleapis.com/cluebenchmark/tasks/clue_diagnostics_public.zip": {"num_bytes": 12062, "checksum": "56b52e70c195686557a966c6064c9bdc4dece1de8c89551f89ad046637e9a7c4"}}, "download_size": 12062, "post_processing_size": null, "dataset_size": 42400, "size_in_bytes": 54462}}
dummy/c3/1.0.0/dummy_data.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7eb325b417f8ee772f68a85e4785a9245c50f7332589a30e1ddf1e0f5e7eb8d5
3
- size 5546
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17bf3573f01899b6410eb13e5e12b9fd832ff911bb70e654111a88a559e404ff
3
+ size 5836
dummy/chid/1.0.0/dummy_data.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5dd8d263daf979bb8293347f9f5f6bde6683985a7bd5c437a62968b550da8ccc
3
- size 8874
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c5758afa715bd2ed556048b36e135168ab9c8a17b5fe94675897ed67c8f6a14
3
+ size 9122