Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,12 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# HVU_QA
|
| 2 |
|
| 3 |
-
**HVU_QA** is an open-source Vietnamese Question–Context–Answer (QCA) corpus
|
| 4 |
|
| 5 |
## 📋 Dataset Description
|
| 6 |
|
| 7 |
- **Language:** Vietnamese
|
| 8 |
- **Format:** SQuAD-style JSON
|
| 9 |
-
- **Total samples:**
|
| 10 |
- **Domains covered:** Social services, labor law, administrative processes, and other public service topics.
|
| 11 |
- **Structure of each sample:**
|
| 12 |
- **Question:** Generated or extracted question
|
|
@@ -39,7 +64,7 @@ These results confirm that HVU_QA is a high-quality resource for developing robu
|
|
| 39 |
├── t5-viet-qg-finetuned/
|
| 40 |
├── fine_tune_qg.py
|
| 41 |
├── generate_question.py
|
| 42 |
-
├──
|
| 43 |
└── README.md
|
| 44 |
```
|
| 45 |
## 📁 Vietnamese Question Generation Tool
|
|
@@ -80,7 +105,7 @@ python fine_tune_qg.py
|
|
| 80 |
|
| 81 |
This will:
|
| 82 |
|
| 83 |
-
1. Load the dataset from `
|
| 84 |
2. Fine-tune `VietAI/vit5-base`.
|
| 85 |
3. Save the trained model into `t5-viet-qg-finetuned/`.
|
| 86 |
|
|
@@ -130,4 +155,38 @@ If you use **HVU_QA** in your research, please cite:
|
|
| 130 |
address = {Nha Trang, Vietnam},
|
| 131 |
note = {To appear}
|
| 132 |
}
|
| 133 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
- text-generation
|
| 6 |
+
- table-question-answering
|
| 7 |
+
- sentence-similarity
|
| 8 |
+
- feature-extraction
|
| 9 |
+
language:
|
| 10 |
+
- vi
|
| 11 |
+
tags:
|
| 12 |
+
- question-generation
|
| 13 |
+
- nlp
|
| 14 |
+
- faq
|
| 15 |
+
- low-resource
|
| 16 |
+
- code
|
| 17 |
+
pretty_name: HVU_QA
|
| 18 |
+
size_categories:
|
| 19 |
+
- 10K<n<100K
|
| 20 |
+
configs:
|
| 21 |
+
- config_name: default
|
| 22 |
+
data_files:
|
| 23 |
+
- split: train
|
| 24 |
+
path: 40k_train.json
|
| 25 |
+
---
|
| 26 |
# HVU_QA
|
| 27 |
|
| 28 |
+
**HVU_QA** is an open-source Vietnamese Question–Context–Answer (QCA) corpus, accompanied by supporting tools, created to facilitate the development of FAQ-style question generation and question answering systems, particularly for low-resource language settings. The dataset is developed by a research team at Hung Vuong University, Phu Tho, Vietnam, led by Dr. Ha Nguyen, Deputy Head of the Department of Engineering Technology. HVU_QA was constructed using a fully automated data-building pipeline that combines web crawling from reliable sources, semantic tag-based extraction, and AI-assisted filtering, helping ensure high factual accuracy, consistent structure, and practical usability for real-world applications.
|
| 29 |
|
| 30 |
## 📋 Dataset Description
|
| 31 |
|
| 32 |
- **Language:** Vietnamese
|
| 33 |
- **Format:** SQuAD-style JSON
|
| 34 |
+
- **Total samples:** 40,000 QCA triples (full corpus released)
|
| 35 |
- **Domains covered:** Social services, labor law, administrative processes, and other public service topics.
|
| 36 |
- **Structure of each sample:**
|
| 37 |
- **Question:** Generated or extracted question
|
|
|
|
| 64 |
├── t5-viet-qg-finetuned/
|
| 65 |
├── fine_tune_qg.py
|
| 66 |
├── generate_question.py
|
| 67 |
+
├── 40k_train.json
|
| 68 |
└── README.md
|
| 69 |
```
|
| 70 |
## 📁 Vietnamese Question Generation Tool
|
|
|
|
| 105 |
|
| 106 |
This will:
|
| 107 |
|
| 108 |
+
1. Load the dataset from `40k_train.json`.
|
| 109 |
2. Fine-tune `VietAI/vit5-base`.
|
| 110 |
3. Save the trained model into `t5-viet-qg-finetuned/`.
|
| 111 |
|
|
|
|
| 155 |
address = {Nha Trang, Vietnam},
|
| 156 |
note = {To appear}
|
| 157 |
}
|
| 158 |
+
```
|
| 159 |
+
## ❤️ Support / Funding
|
| 160 |
+
|
| 161 |
+
If you find **HVU_QA** useful, please consider supporting our work.
|
| 162 |
+
Your contributions help us maintain the dataset, improve quality, and release new versions (cleaning, expansion, benchmarks, and tools).
|
| 163 |
+
|
| 164 |
+
### 🇻🇳 Donate via VietQR (scan to support)
|
| 165 |
+
This **VietQR / NAPAS 247** code can be scanned by Vietnamese banking apps and some international payment apps that support QR bank transfers.
|
| 166 |
+
|
| 167 |
+
<img src="QRtk.jpg" alt="VietQR Support" width="320"/>
|
| 168 |
+
|
| 169 |
+
**Bank:** VietinBank (Vietnam)
|
| 170 |
+
**Account name:** NGUYEN TIEN HA
|
| 171 |
+
**Account number:** 103004492490
|
| 172 |
+
**Branch:** VietinBank CN PHU THO - HOI SO
|
| 173 |
+
|
| 174 |
+
### 🌍 International Support (Quick card payment)
|
| 175 |
+
If you are outside Vietnam, you can support this project via **Buy Me a Coffee**
|
| 176 |
+
(no PayPal account needed — pay directly with a credit/debit card):
|
| 177 |
+
- BuyMeACoffee: https://buymeacoffee.com/hanguyen0408
|
| 178 |
+
|
| 179 |
+
### 🌍 International Support (PayPal)
|
| 180 |
+
If you prefer PayPal, you can also support us here:
|
| 181 |
+
- PayPal.me: https://paypal.me/HaNguyen0408
|
| 182 |
+
|
| 183 |
+
### ✨ Other ways to support
|
| 184 |
+
- ⭐ Star this repository / dataset on Hugging Face
|
| 185 |
+
- 📌 Cite our paper if you use it in your research
|
| 186 |
+
- 🐛 Open issues / pull requests to improve the dataset and tools
|
| 187 |
+
-
|
| 188 |
+
📬 Contact / Maintainers
|
| 189 |
+
For questions, feedback, collaborations, or issue reports related to HVU_QA, please contact:
|
| 190 |
+
Dr. Ha Nguyen (Project Lead)
|
| 191 |
+
Hung Vuong University, Phu Tho, Vietnam
|
| 192 |
+
Email: nguyentienha@hvu.edu.vn
|