ihainan commited on
Commit
89d09b7
·
verified ·
1 Parent(s): 3046643

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: cc-by-sa-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-3.0
3
+ language: zh
4
+ tags:
5
+ - information-retrieval
6
+ - question-answering
7
+ - chinese
8
+ - wikipedia
9
+ - open-domain-qa
10
+ pretty_name: DRCD for Information Retrieval (Simplified Chinese)
11
+ dataset_info:
12
+ features:
13
+ - name: corpus
14
+ type: jsonl
15
+ - name: queries
16
+ type: jsonl
17
+ - name: qrels
18
+ type: jsonl
19
+ splits:
20
+ - name: train
21
+ - name: dev
22
+ - name: test
23
+ ---
24
+
25
+ # DRCD for Information Retrieval (Simplified Chinese)
26
+
27
+ This dataset is a reformatted version of the [Delta Reading Comprehension Dataset (DRCD)](https://github.com/DRCKnowledgeTeam/DRCD), converted to Simplified Chinese and adapted for information retrieval (IR) tasks.
28
+
29
+ ## Summary
30
+
31
+ The dataset transforms the original DRCD QA data into a passage retrieval setup commonly used in open-domain question answering. It is suitable for training and evaluating sparse/dense retrievers such as BM25, DPR, or ColBERT.
32
+
33
+ ## Key Features
34
+
35
+ - 🔤 **Language**: Simplified Chinese (converted from Traditional)
36
+ - 📚 **Domain**: General Wikipedia
37
+ - 🔍 **Use Cases**: Passage retrieval, open-domain QA, reranking, dense/sparse IR
38
+
39
+ ## License
40
+ The dataset is distributed under the Creative Commons Attribution-ShareAlike 3.0 License (CC BY-SA 3.0). You must give appropriate credit and share any derivative works under the same terms.
41
+
42
+ ## Citation
43
+ If you use this dataset, please also consider citing the original DRCD paper:
44
+
45
+ ```graphql
46
+ @inproceedings{shao2018drcd,
47
+ title={DRCD: a Chinese machine reading comprehension dataset},
48
+ author={Shao, Chih-Chieh and Chang, Chia-Hsuan and others},
49
+ booktitle={Proceedings of the Workshop on Machine Reading for Question Answering},
50
+ year={2018}
51
+ }
52
+ ```
53
+
54
+ ## Acknowledgments
55
+ - Original data provided by Delta Research Center.
56
+ - This project performed format adaptation and Simplified Chinese conversion for IR use cases.