File size: 1,533 Bytes
4e7670a d58d360 d2b4b8b d58d360 d2b4b8b d58d360 d2b4b8b 4e7670a a976949 d2b4b8b a976949 |
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 |
---
license: pddl
task_categories:
- question-answering
- table-question-answering
language:
- zh
tags:
- healthcare
- chat
- llm
- medical
size_categories:
- 100K<n<1M
---
---
license: pddl
---
# Online Health Chating
This is the repository for the Online Health Chating project.
which is the dataset of [chathealth](https://github.com/NeroHin/ChatHealth.git) project.
> Alarm: This dataset isfor academic research only and any commercial use and clinical use is prohibited.
## Dataset
We used crawler to collect the data from the following websites:
- [KingNet](http://www.kingnet.com.tw/)
| Item | Size |
| :----: | :----: |
| Row | 91,735 |
- [問 8 健康咨詢](https://tw.wen8health.com/)
| Item | Size |
| :----: | :----: |
| Row | 4,919 |
- [臺灣 E 院](https://sp1.hso.mohw.gov.tw/doctor/)
| Item | Size |
| :----: | :----: |
| Row | 153,251 |
- [家庭醫生](https://www.familydoctor.com.cn/)
| Item | Size |
| :----: | :----: |
| Row | 577,849 |
## LLM Dataset
Then we concatenate the data and split it into train, dev set with 7:3 ratio.
- train.json
- dev.json
| question | answer |
| :----: | :----: |
| e.g. 有什麼方法可以治療腎結石? | 有的,腎結石的治療方法有很多種,包括藥物治療、手術治療、醫療治療、中醫治療等。 |
```json
{
"question": "有什麼方法可以治療腎結石?",
"answer": "有的,腎結石的治療方法有很多種,包括藥物治療、手術治療、醫療治療、中醫治療等。"
}
``` |