Datasets:
File size: 4,492 Bytes
021c4c0 9174bda ebddfc0 9174bda 6f423de 9174bda 342b5eb ac9f65b 342b5eb 9174bda ac9f65b 9174bda ab98107 94cf750 9950456 ab98107 9174bda 211a28e 9174bda ac9f65b 9174bda ac9f65b 9174bda 2c6885c 9174bda 65cd6a8 9174bda ac9f65b 9174bda 65cd6a8 9174bda c17f42c 9174bda b34f17a c17f42c b34f17a ac9f65b 9174bda ac9f65b |
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
---
license: mit
task_categories:
- question-answering
language:
- vi
tags:
- question-generation
- nlp
- faq
- low-resource
pretty_name: HVU_QA
size_categories:
- 10K<n<100K
---
# HVU_QA
**HVU_QA** is an open-source Vietnamese Question–Context–Answer (QCA) corpus and supporting tools for building FAQ-style question generation systems in low-resource languages. The dataset was created using a fully automated pipeline that combines web crawling from trustworthy sources, semantic tag-based extraction, and AI-assisted filtering to ensure high factual accuracy.
## 📋 Dataset Description
- **Language:** Vietnamese
- **Format:** SQuAD-style JSON
- **Total samples:** 30,000 QCA triples (full corpus released)
- **Domains covered:** Social services, labor law, administrative processes, and other public service topics.
- **Structure of each sample:**
- **Question:** Generated or extracted question
- **Context:** Supporting text passage from which the answer is derived
- **Answer:** Answer span within the context
## ⚙️ Creation Pipeline
The dataset was built using a 4-stage automated process:
1. **Selecting relevant QA websites** from trusted sources.
2. **Automated data crawling** to collect raw QA webpages.
3. **Extraction via semantic tags** to obtain clean Question–Context–Answer triples.
4. **AI-assisted filtering** to remove noisy or factually inconsistent samples.
## 📊 Quality Evaluation
A fine-tuned `VietAI/vit5-base` model trained on HVU_QA achieved:
| Metric | Score |
|-------------------------|----------------|
| BLEU | 90.61 |
| Semantic similarity | 97.0% (cos ≥ 0.8) |
| Human grammar score | 4.58 / 5 |
| Human usefulness score | 4.29 / 5 |
These results confirm that HVU_QA is a high-quality resource for developing robust FAQ-style question generation models.
## 📁 Dataset Structure
```
.HVU_QA
├── t5-viet-qg-finetuned/
├── fine_tune_qg.py
├── generate_question.py
├── 30ktrain.json
└── README.md
```
## 📁 Vietnamese Question Generation Tool
## 🛠️ Requirements
* Python 3.8+
* PyTorch >= 1.9
* Transformers >= 4.30
* scikit-learn
### 📦 Install Required Libraries
```bash
pip install datasets transformers sentencepiece safetensors accelerate evaluate sacrebleu rouge-score nltk scikit-learn
```
*(Install PyTorch separately from [pytorch.org](https://pytorch.org) if not installed yet.)*
### 📥 Load Dataset from Hugging Face Hub
```python
from datasets import load_dataset
ds = load_dataset("DANGDOCAO/GeneratingQuestions", split="train")
print(ds[0])
```
## 📚 Usage
* Train and evaluate a question generation model.
* Develop Vietnamese NLP tools.
* Conduct linguistic research.
### 🔹 Fine-tuning
```bash
python fine_tune_qg.py
```
This will:
1. Load the dataset from `30ktrain.json`.
2. Fine-tune `VietAI/vit5-base`.
3. Save the trained model into `t5-viet-qg-finetuned/`.
*(Or download the pre-trained model: [t5-viet-qg-finetuned](https://huggingface.co/datasets/DANGDOCAO/GeneratingQuestions/tree/main).)*
### 🔹 Generating Questions
```bash
python generate_question.py
```
**Example:**
```
Input passage:
Cà phê sữa đá là một loại đồ uống nổi tiếng ở Việt Nam.
(Iced milk coffee is a famous drink in Vietnam.)
Number of questions: 5
```
**Output:**
```
1. Loại cà phê nào nổi tiếng ở Việt Nam?
(What type of coffee is famous in Vietnam?)
2. Tại sao cà phê sữa đá lại phổ biến?
(Why is iced milk coffee popular?)
3. Cà phê sữa đá bao gồm những nguyên liệu gì?
(What ingredients are included in iced milk coffee?)
4. Cà phê sữa đá có nguồn gốc từ đâu?
(Where does iced milk coffee originate from?)
5. Cà phê sữa đá Việt Nam được pha chế như thế nào?
(How is Vietnamese iced milk coffee prepared?)
```
**You can adjust** in `generate_question.py`:
- `top_k`, `top_p`, `temperature`, `no_repeat_ngram_size`, `repetition_penalty`
## 📌 Citation
If you use **HVU_QA** in your research, please cite:
```bibtex
@inproceedings{nguyen2025hvuqa,
title={A Method to Build QA Corpora for Low-Resource Languages},
author={Ha Nguyen-Tien and Phuc Le-Hong and Dang Do-Cao and Cuong Nguyen-Hung and Chung Mai-Van},
booktitle={Proceedings of the International Conference on Knowledge and Systems Engineering (KSE)},
year={2025}
}
```
|