Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Chinese
ArXiv:
Libraries:
Datasets
pandas
License:
real-jiakai commited on
Commit
84ac856
1 Parent(s): 2493aeb

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .ipynb_checkpoints/README-checkpoint.md +45 -17
  2. README.md +45 -17
.ipynb_checkpoints/README-checkpoint.md CHANGED
@@ -61,7 +61,7 @@ The dataset is stored in Parquet format and contains the following fields:
61
  from datasets import load_dataset
62
 
63
  # Load from Hugging Face Hub
64
- dataset = load_dataset("real-jiakai/chinese-squad-v2")
65
 
66
  # Example usage
67
  example = dataset['train'][0]
@@ -71,17 +71,11 @@ print(f"Answer: {example['answers']['text']}")
71
  ```
72
 
73
  Example output:
 
74
  ```python
75
- {
76
- 'id': '56be85543aeaaa14008c9065',
77
- 'title': '碧昂斯',
78
- 'context': '碧昂丝·吉赛尔·诺尔斯·卡特(生于1981年9月4日)是美国歌手、作曲家、唱片制作人和女演员。...',
79
- 'question': '碧昂丝在成长过程中,在哪些领域竞争?',
80
- 'answers': {
81
- 'text': ['歌舞'],
82
- 'answer_start': [70]
83
- }
84
- }
85
  ```
86
 
87
  ### Citation
@@ -90,16 +84,50 @@ If you use this dataset, please cite both the original SQuAD 2.0 paper and the C
90
 
91
  ```bibtex
92
  @inproceedings{rajpurkar-etal-2018-know,
93
- title = "Know What You Don't Know: Unanswerable Questions for {SQ}u{AD}",
94
- author = "Rajpurkar, Pranav and Jia, Robin and Liang, Percy",
95
- booktitle = "Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics",
 
 
 
 
 
96
  year = "2018",
 
 
 
 
97
  pages = "784--789",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
 
100
- @misc{chinese-squad,
101
- title = "ChineseSquad: A Chinese Translation of SQuAD 2.0",
102
- author = "Zeng, Jun",
103
  url = "https://github.com/junzeng-pluto/ChineseSquad",
104
  }
105
  ```
 
61
  from datasets import load_dataset
62
 
63
  # Load from Hugging Face Hub
64
+ dataset = load_dataset("real-jiakai/chinese-squadv2")
65
 
66
  # Example usage
67
  example = dataset['train'][0]
 
71
  ```
72
 
73
  Example output:
74
+
75
  ```python
76
+ Question: 碧昂丝在成长过程中,在哪些领域竞争?
77
+ Context: 碧昂丝·吉赛尔·诺尔斯·卡特(生于1981年9月4日)是美国歌手、作曲家、唱片制作人和女演员。她在得克萨斯州休斯顿出生长大,小时候参加过各种歌舞比赛,上世纪90年代末以R&B女团“命运之子”的主唱而声名鹊起。由她父亲马修·诺尔斯(Mathew Knowles)管理的这个集团,一直以来都是世界上最畅销的女孩集团之一。暂停期间,碧昂丝发行了首张专辑《恋爱中的危险》(2003),确立了她作为全球独唱艺术家的地位,获得了五项格莱美奖,并在广告牌上热播100首单曲《疯狂恋爱》和《小男孩》。
78
+ Answer: ['歌舞']
 
 
 
 
 
 
 
79
  ```
80
 
81
  ### Citation
 
84
 
85
  ```bibtex
86
  @inproceedings{rajpurkar-etal-2018-know,
87
+ title = "Know What You Don{'}t Know: Unanswerable Questions for {SQ}u{AD}",
88
+ author = "Rajpurkar, Pranav and
89
+ Jia, Robin and
90
+ Liang, Percy",
91
+ editor = "Gurevych, Iryna and
92
+ Miyao, Yusuke",
93
+ booktitle = "Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)",
94
+ month = jul,
95
  year = "2018",
96
+ address = "Melbourne, Australia",
97
+ publisher = "Association for Computational Linguistics",
98
+ url = "https://aclanthology.org/P18-2124",
99
+ doi = "10.18653/v1/P18-2124",
100
  pages = "784--789",
101
+ eprint={1806.03822},
102
+ archivePrefix={arXiv},
103
+ primaryClass={cs.CL}
104
+ }
105
+
106
+ @inproceedings{rajpurkar-etal-2016-squad,
107
+ title = "{SQ}u{AD}: 100,000+ Questions for Machine Comprehension of Text",
108
+ author = "Rajpurkar, Pranav and
109
+ Zhang, Jian and
110
+ Lopyrev, Konstantin and
111
+ Liang, Percy",
112
+ editor = "Su, Jian and
113
+ Duh, Kevin and
114
+ Carreras, Xavier",
115
+ booktitle = "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing",
116
+ month = nov,
117
+ year = "2016",
118
+ address = "Austin, Texas",
119
+ publisher = "Association for Computational Linguistics",
120
+ url = "https://aclanthology.org/D16-1264",
121
+ doi = "10.18653/v1/D16-1264",
122
+ pages = "2383--2392",
123
+ eprint={1606.05250},
124
+ archivePrefix={arXiv},
125
+ primaryClass={cs.CL},
126
  }
127
 
128
+ @misc{ChineseSquad,
129
+ title = "ChineseSquad",
130
+ author = "junzeng-pluto",
131
  url = "https://github.com/junzeng-pluto/ChineseSquad",
132
  }
133
  ```
README.md CHANGED
@@ -61,7 +61,7 @@ The dataset is stored in Parquet format and contains the following fields:
61
  from datasets import load_dataset
62
 
63
  # Load from Hugging Face Hub
64
- dataset = load_dataset("real-jiakai/chinese-squad-v2")
65
 
66
  # Example usage
67
  example = dataset['train'][0]
@@ -71,17 +71,11 @@ print(f"Answer: {example['answers']['text']}")
71
  ```
72
 
73
  Example output:
 
74
  ```python
75
- {
76
- 'id': '56be85543aeaaa14008c9065',
77
- 'title': '碧昂斯',
78
- 'context': '碧昂丝·吉赛尔·诺尔斯·卡特(生于1981年9月4日)是美国歌手、作曲家、唱片制作人和女演员。...',
79
- 'question': '碧昂丝在成长过程中,在哪些领域竞争?',
80
- 'answers': {
81
- 'text': ['歌舞'],
82
- 'answer_start': [70]
83
- }
84
- }
85
  ```
86
 
87
  ### Citation
@@ -90,16 +84,50 @@ If you use this dataset, please cite both the original SQuAD 2.0 paper and the C
90
 
91
  ```bibtex
92
  @inproceedings{rajpurkar-etal-2018-know,
93
- title = "Know What You Don't Know: Unanswerable Questions for {SQ}u{AD}",
94
- author = "Rajpurkar, Pranav and Jia, Robin and Liang, Percy",
95
- booktitle = "Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics",
 
 
 
 
 
96
  year = "2018",
 
 
 
 
97
  pages = "784--789",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
 
100
- @misc{chinese-squad,
101
- title = "ChineseSquad: A Chinese Translation of SQuAD 2.0",
102
- author = "Zeng, Jun",
103
  url = "https://github.com/junzeng-pluto/ChineseSquad",
104
  }
105
  ```
 
61
  from datasets import load_dataset
62
 
63
  # Load from Hugging Face Hub
64
+ dataset = load_dataset("real-jiakai/chinese-squadv2")
65
 
66
  # Example usage
67
  example = dataset['train'][0]
 
71
  ```
72
 
73
  Example output:
74
+
75
  ```python
76
+ Question: 碧昂丝在成长过程中,在哪些领域竞争?
77
+ Context: 碧昂丝·吉赛尔·诺尔斯·卡特(生于1981年9月4日)是美国歌手、作曲家、唱片制作人和女演员。她在得克萨斯州休斯顿出生长大,小时候参加过各种歌舞比赛,上世纪90年代末以R&B女团“命运之子”的主唱而声名鹊起。由她父亲马修·诺尔斯(Mathew Knowles)管理的这个集团,一直以来都是世界上最畅销的女孩集团之一。暂停期间,碧昂丝发行了首张专辑《恋爱中的危险》(2003),确立了她作为全球独唱艺术家的地位,获得了五项格莱美奖,并在广告牌上热播100首单曲《疯狂恋爱》和《小男孩》。
78
+ Answer: ['歌舞']
 
 
 
 
 
 
 
79
  ```
80
 
81
  ### Citation
 
84
 
85
  ```bibtex
86
  @inproceedings{rajpurkar-etal-2018-know,
87
+ title = "Know What You Don{'}t Know: Unanswerable Questions for {SQ}u{AD}",
88
+ author = "Rajpurkar, Pranav and
89
+ Jia, Robin and
90
+ Liang, Percy",
91
+ editor = "Gurevych, Iryna and
92
+ Miyao, Yusuke",
93
+ booktitle = "Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)",
94
+ month = jul,
95
  year = "2018",
96
+ address = "Melbourne, Australia",
97
+ publisher = "Association for Computational Linguistics",
98
+ url = "https://aclanthology.org/P18-2124",
99
+ doi = "10.18653/v1/P18-2124",
100
  pages = "784--789",
101
+ eprint={1806.03822},
102
+ archivePrefix={arXiv},
103
+ primaryClass={cs.CL}
104
+ }
105
+
106
+ @inproceedings{rajpurkar-etal-2016-squad,
107
+ title = "{SQ}u{AD}: 100,000+ Questions for Machine Comprehension of Text",
108
+ author = "Rajpurkar, Pranav and
109
+ Zhang, Jian and
110
+ Lopyrev, Konstantin and
111
+ Liang, Percy",
112
+ editor = "Su, Jian and
113
+ Duh, Kevin and
114
+ Carreras, Xavier",
115
+ booktitle = "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing",
116
+ month = nov,
117
+ year = "2016",
118
+ address = "Austin, Texas",
119
+ publisher = "Association for Computational Linguistics",
120
+ url = "https://aclanthology.org/D16-1264",
121
+ doi = "10.18653/v1/D16-1264",
122
+ pages = "2383--2392",
123
+ eprint={1606.05250},
124
+ archivePrefix={arXiv},
125
+ primaryClass={cs.CL},
126
  }
127
 
128
+ @misc{ChineseSquad,
129
+ title = "ChineseSquad",
130
+ author = "junzeng-pluto",
131
  url = "https://github.com/junzeng-pluto/ChineseSquad",
132
  }
133
  ```