Datasets:
Update README.md
Browse files---
language:
- vi
task_categories:
- text-classification
pretty_name: Vietnamese News Classification 1.3M
size_categories:
- 1M<n<10M
---
# Vietnamese News Classification Dataset (1.3M)
## Dataset Description
This dataset contains approximately **1.3 million** Vietnamese news articles collected from major online news portals. Structured similarly to the popular AG News dataset, it serves as a valuable resource for experimenting with multi-class text classification in Vietnamese.
The dataset covers **11 topics** (categories) ranging from current affairs, sports, technology, to entertainment.
- **Curated by:** Nam Syntax
- **Language:** Vietnamese
- **Total Rows:** ~1.3M
- **Task:** Multi-class Text Classification
## Dataset Structure
### Data Fields
Each instance in the dataset consists of the following fields:
- `label`: The category label id (Integer, 0-10).
- `title`: The title of the news article (String).
- `description`: A short summary/abstract of the article (String).
- `text`: The combination of title and description (and body content if available) used for training (String).
### Example
```json
{
"label": 0
"title": "Ba xe tông liên hoàn trên đường tránh Quảng Bình",
"description": "Xe khách bị rách hông bên phải sau cú tông vào xe tải chạy ngược chiều...",
"text": "Ba xe tông liên hoàn trên đường tránh Quảng Bình. Xe khách bị rách hông...",
}
```
| ID | Vietnamese Label | English Alias |
|:---:|:---|:---|
| 0 | Thời sự | current_affairs |
| 1 | Thế giới | world |
| 2 | Kinh doanh | business |
| 3 | Khoa học công nghệ | science_tech |
| 4 | Bất động sản | real_estate |
| 5 | Sức khỏe | health |
| 6 | Thể thao | sports |
| 7 | Giải trí | entertainment |
| 8 | Pháp luật | law |
| 9 | Giáo dục | education |
| 10 | Đời sống | lifestyle |
|
@@ -1,37 +1,42 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
configs:
|
| 4 |
-
- config_name: default
|
| 5 |
-
data_files:
|
| 6 |
-
- split: train
|
| 7 |
-
path: data/train-*
|
| 8 |
-
dataset_info:
|
| 9 |
-
features:
|
| 10 |
-
- name: label
|
| 11 |
-
dtype:
|
| 12 |
-
class_label:
|
| 13 |
-
names:
|
| 14 |
-
'0': Thời sự
|
| 15 |
-
'1': Thế giới
|
| 16 |
-
'2': Kinh doanh
|
| 17 |
-
'3': Khoa học
|
| 18 |
-
'4': Bất động sản
|
| 19 |
-
'5': Sức khỏe
|
| 20 |
-
'6': Thể thao
|
| 21 |
-
'7': Giải trí
|
| 22 |
-
'8': Pháp luật
|
| 23 |
-
'9': Giáo dục
|
| 24 |
-
'10': Đời sống
|
| 25 |
-
- name: title
|
| 26 |
-
dtype: string
|
| 27 |
-
- name: description
|
| 28 |
-
dtype: string
|
| 29 |
-
- name: text
|
| 30 |
-
dtype: string
|
| 31 |
-
splits:
|
| 32 |
-
- name: train
|
| 33 |
-
num_bytes: 735809126
|
| 34 |
-
num_examples: 1348717
|
| 35 |
-
download_size: 401116845
|
| 36 |
-
dataset_size: 735809126
|
| 37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: default
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: data/train-*
|
| 8 |
+
dataset_info:
|
| 9 |
+
features:
|
| 10 |
+
- name: label
|
| 11 |
+
dtype:
|
| 12 |
+
class_label:
|
| 13 |
+
names:
|
| 14 |
+
'0': Thời sự
|
| 15 |
+
'1': Thế giới
|
| 16 |
+
'2': Kinh doanh
|
| 17 |
+
'3': Khoa học
|
| 18 |
+
'4': Bất động sản
|
| 19 |
+
'5': Sức khỏe
|
| 20 |
+
'6': Thể thao
|
| 21 |
+
'7': Giải trí
|
| 22 |
+
'8': Pháp luật
|
| 23 |
+
'9': Giáo dục
|
| 24 |
+
'10': Đời sống
|
| 25 |
+
- name: title
|
| 26 |
+
dtype: string
|
| 27 |
+
- name: description
|
| 28 |
+
dtype: string
|
| 29 |
+
- name: text
|
| 30 |
+
dtype: string
|
| 31 |
+
splits:
|
| 32 |
+
- name: train
|
| 33 |
+
num_bytes: 735809126
|
| 34 |
+
num_examples: 1348717
|
| 35 |
+
download_size: 401116845
|
| 36 |
+
dataset_size: 735809126
|
| 37 |
+
language:
|
| 38 |
+
- vi
|
| 39 |
+
pretty_name: d
|
| 40 |
+
size_categories:
|
| 41 |
+
- 1M<n<10M
|
| 42 |
+
---
|