system HF staff commited on
Commit
39f913a
1 Parent(s): 3a142fd

Update files from the datasets library (from 1.1.3)

Browse files

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

clue.py CHANGED
@@ -288,6 +288,34 @@ class Clue(datasets.GeneratorBasedBuilder):
288
  }"""
289
  ),
290
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  ClueConfig(
292
  name="diagnostics",
293
  description=textwrap.dedent(
@@ -306,7 +334,7 @@ class Clue(datasets.GeneratorBasedBuilder):
306
  ]
307
 
308
  def _info(self):
309
- if self.config.name in ["afqmc", "tnews", "iflytek", "cmnli", "diagnostics"]:
310
  features = {
311
  text_feature: datasets.Value("string") for text_feature in six.iterkeys(self.config.text_features)
312
  }
@@ -506,8 +534,8 @@ class Clue(datasets.GeneratorBasedBuilder):
506
 
507
  elif self.config.label_column in row:
508
  label = row[self.config.label_column]
509
- # Notice: some labels in CMNLI are missing. We drop these data.
510
- if self.config.name == "cmnli" and label == "-":
511
  continue
512
  # For some tasks, the label is represented as 0 and 1 in the tsv
513
  # files and needs to be cast to integer to work with the feature.
 
288
  }"""
289
  ),
290
  ),
291
+ ClueConfig(
292
+ name="ocnli",
293
+ description=textwrap.dedent(
294
+ """\
295
+ OCNLI stands for Original Chinese Natural Language Inference. It is a corpus for
296
+ Chinese Natural Language Inference, collected following closely the procedures of MNLI,
297
+ but with enhanced strategies aiming for more challenging inference pairs. We want to
298
+ emphasize we did not use human/machine translation in creating the dataset, and thus
299
+ our Chinese texts are original and not translated.
300
+ """
301
+ ),
302
+ text_features={"sentence1": "sentence1", "sentence2": "sentence2"},
303
+ label_classes=["neutral", "entailment", "contradiction"],
304
+ label_column="label",
305
+ data_url="https://github.com/CLUEbenchmark/OCNLI/archive/02d55cb3c7dc984682677b8dd81db6a1e4710720.zip",
306
+ data_dir="OCNLI-02d55cb3c7dc984682677b8dd81db6a1e4710720/data/ocnli",
307
+ url="https://arxiv.org/abs/2010.05444",
308
+ citation=textwrap.dedent(
309
+ """\
310
+ @inproceedings{ocnli,
311
+ title={OCNLI: Original Chinese Natural Language Inference},
312
+ author={Hai Hu and Kyle Richardson and Liang Xu and Lu Li and Sandra Kuebler and Larry Moss},
313
+ booktitle={Findings of EMNLP},
314
+ year={2020},
315
+ url={https://arxiv.org/abs/2010.05444}
316
+ }"""
317
+ ),
318
+ ),
319
  ClueConfig(
320
  name="diagnostics",
321
  description=textwrap.dedent(
 
334
  ]
335
 
336
  def _info(self):
337
+ if self.config.name in ["afqmc", "tnews", "iflytek", "cmnli", "diagnostics", "ocnli"]:
338
  features = {
339
  text_feature: datasets.Value("string") for text_feature in six.iterkeys(self.config.text_features)
340
  }
 
534
 
535
  elif self.config.label_column in row:
536
  label = row[self.config.label_column]
537
+ # Notice: some labels in CMNLI and OCNLI are invalid. We drop these data.
538
+ if self.config.name in ["cmnli", "ocnli"] and label == "-":
539
  continue
540
  # For some tasks, the label is represented as 0 and 1 in the tsv
541
  # files and needs to be cast to integer to work with the feature.
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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "afqmc", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "tnews", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "iflytek", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "cmnli", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "cluewsc2020", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "csl", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}, "trial": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "cmrc2018", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "drcd", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "chid", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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": {"features": null, "resources_checksums": {"test": {}, "train": {}, "validation": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "c3", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "dataset_size": 15689454, "size_in_bytes": 18890181}, "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": {"features": null, "resources_checksums": {"test": {}}}, "supervised_keys": null, "builder_name": "clue", "config_name": "diagnostics", "version": {"version_str": "1.0.0", "description": "", "datasets_version_to_prepare": null, "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": 0, "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, "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}}
dummy/ocnli/1.0.0/dummy_data.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dfe232907136f61c1b5f261770ffe0ae1cdfe673cadbc896be76b20d8700fc5
3
+ size 7153