NeroUCH commited on
Commit
a976949
1 Parent(s): 3632262

doc: update README

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md CHANGED
@@ -1,3 +1,54 @@
1
  ---
2
  license: pddl
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: pddl
3
  ---
4
+ ---
5
+ license: pddl
6
+ ---
7
+
8
+ # Online Health Chating
9
+
10
+ This is the repository for the Online Health Chating project.
11
+ which is the dataset of [chathealth](https://github.com/NeroHin/ChatHealth.git) project.
12
+
13
+ > Alarm: This dataset isfor academic research only and any commercial use and clinical use is prohibited.
14
+
15
+ ## Dataset
16
+
17
+ We used crawler to collect the data from the following websites:
18
+
19
+ - [KingNet](http://www.kingnet.com.tw/)
20
+
21
+ | Item | Size |
22
+ | :----: | :----: |
23
+ | Row | 91,735 |
24
+
25
+
26
+ - [問 8 健康咨詢](https://tw.wen8health.com/)
27
+
28
+ | Item | Size |
29
+ | :----: | :----: |
30
+ | Row | 4,919 |
31
+
32
+
33
+ - [臺灣 E 院](https://sp1.hso.mohw.gov.tw/doctor/)
34
+
35
+ | Item | Size |
36
+ | :----: | :----: |
37
+ | Row | 153,251 |
38
+
39
+ ## LLM Dataset
40
+ Then we concatenate the data and split it into train, dev set with 7:3 ratio.
41
+
42
+ - train.json
43
+ - dev.json
44
+
45
+ | question | answer |
46
+ | :----: | :----: |
47
+ | e.g. 有什麼方法可以治療腎結石? | 有的,腎結石的治療方法有很多種,包括藥物治療、手術治療、醫療治療、中醫治療等。 |
48
+
49
+ ```json
50
+ {
51
+ "question": "有什麼方法可以治療腎結石?",
52
+ "answer": "有的,腎結石的治療方法有很多種,包括藥物治療、手術治療、醫療治療、中醫治療等。"
53
+ }
54
+ ```