hungnm commited on
Commit
6201315
1 Parent(s): f65ee9a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -1
README.md CHANGED
@@ -28,4 +28,53 @@ license: apache-2.0
28
  pretty_name: b
29
  size_categories:
30
  - 1K<n<10K
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  pretty_name: b
29
  size_categories:
30
  - 1K<n<10K
31
+ ---
32
+ ## Dataset Summary
33
+
34
+ Vietnamese-Medical-QA is a question-answering dataset in the healthcare domain, collected from [edoctor](https://edoctor.io/hoi-dap) and [vinmec](https://www.vinmec.com/vi/tin-tuc/hoi-dap-bac-si/).
35
+ * Size: After merging data from these two sources, obtained 9335 QA pairs.
36
+ * Language: Vietnamese
37
+
38
+
39
+ ## Load with Datasets
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ # Load dataset from huggingface
45
+ qa_dataset = load_dataset("hungnm/vietnamese-medical-qa")
46
+
47
+ # print a QA example
48
+ print(qa_dataset['train'][0])
49
+ ```
50
+
51
+ ```json
52
+
53
+ {
54
+ "question": "Chào bác sĩ,\nRăng cháu hiện tại có mủ ở dưới lợi nhưng khi đau cháu sẽ không ngủ được (quá đau). Tuy nhiên chỉ vài ngày là hết mà thỉnh thoảng nó lại bị đau. Chị cháu bảo là trước chị cháu cũng bị như vậy chỉ là đau răng tuổi dậy thì thôi. Bác sĩ cho cháu hỏi đau răng kèm có mủ dưới lợi là bệnh gì? Cháu có cần đi chữa trị không? Cháu cảm ơn.",
55
+ "answer": "Chào bạn,\nĐể trả lời câu hỏi trên, bác sĩ xin giải đáp như sau:\nRăng bạn hiện tại có mủ dưới lợi gây đau nhức nhiều. Bạn có thể đến phòng khám răng hàm mặt bệnh viện để được thăm khám, chụp phim và tư vấn cho bạn được chính xác\nTrân trọng!"
56
+ }
57
+
58
+ ```
59
+
60
+ ## Dataset Version and Update
61
+ * Version Details:
62
+ * Current version: 1.0
63
+ * Last Update: 16/02/2024
64
+ * First Release: 16/02/2024
65
+
66
+ * Update Plan: We will keep updating as we gather additional data.
67
+
68
+ ## Licensing Information
69
+ This dataset can be used for any purpose, whether academic or commercial, under the terms of the [Apache 2.0](https://opensource.org/license/apache-2-0) License.
70
+
71
+
72
+ ## Citation Information
73
+ ```bibtex
74
+ @misc{vietnamese-medical-qa,
75
+ title={Vietnamese Medical QA: Question Answering dataset for medical in Vietnamese},
76
+ author={Hung Nguyen},
77
+ year={2024},
78
+ }
79
+ ```
80
+