Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
json
Languages:
Chinese
Size:
10M - 100M
ArXiv:
Tags:
medical
License:
Update my_dataset.py
Browse files- my_dataset.py +12 -2
my_dataset.py
CHANGED
@@ -12,8 +12,18 @@ class MyDataset(GeneratorBasedBuilder):
|
|
12 |
"answers": Sequence(Value("string"))
|
13 |
}),
|
14 |
supervised_keys=("questions", "answers"),
|
15 |
-
homepage="https://github.com/FreedomIntelligence/
|
16 |
-
citation=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
)
|
18 |
|
19 |
def _split_generators(self, dl_manager):
|
|
|
12 |
"answers": Sequence(Value("string"))
|
13 |
}),
|
14 |
supervised_keys=("questions", "answers"),
|
15 |
+
homepage="https://github.com/FreedomIntelligence/Huatuo-26M",
|
16 |
+
citation='''
|
17 |
+
@misc{li2023huatuo26m,
|
18 |
+
title={Huatuo-26M, a Large-scale Chinese Medical QA Dataset},
|
19 |
+
author={Jianquan Li and Xidong Wang and Xiangbo Wu and Zhiyi Zhang and Xiaolong Xu and Jie Fu and Prayag Tiwari and Xiang Wan and Benyou Wang},
|
20 |
+
year={2023},
|
21 |
+
eprint={2305.01526},
|
22 |
+
archivePrefix={arXiv},
|
23 |
+
primaryClass={cs.CL}
|
24 |
+
}
|
25 |
+
|
26 |
+
''',
|
27 |
)
|
28 |
|
29 |
def _split_generators(self, dl_manager):
|