hungnm commited on
Commit
f65ee9a
1 Parent(s): 0eb5531

Update README.md

Browse files

## Dataset Summary

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/).
* Size: After merging data from these two sources, obtained 9335 QA pairs.
* Language: Vietnamese


## Load with Datasets

```python
from datasets import load_dataset

# Load dataset from huggingface
qa_dataset = load_dataset("hungnm/vietnamese-medical-qa")

# print a QA example
print(qa_dataset['train'][0])
```

```json

{
"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.",
"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!"
}

```

## Dataset Version and Update
* Version Details:
* Current version: 1.0
* Last Update: 16/02/2024
* First Release: 16/02/2024

* Update Plan: We will keep updating as we gather additional data.

## Licensing Information
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.


## Citation Information

```bibtex


@misc

{vietnamese-medical-qa,
title={Vietnamese Medical QA: Question Answering dataset for medical in Vietnamese},
author={Hung Nguyen},
year={2024},
}
```

Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -24,4 +24,8 @@ tags:
24
  - question answering
25
  - medical
26
  - vietnamese
 
 
 
 
27
  ---
 
24
  - question answering
25
  - medical
26
  - vietnamese
27
+ license: apache-2.0
28
+ pretty_name: b
29
+ size_categories:
30
+ - 1K<n<10K
31
  ---