NamSyntax commited on
Commit
b6ee76e
·
verified ·
1 Parent(s): 69df643

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -42
README.md CHANGED
@@ -1,42 +1,91 @@
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
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Vietnamese News Classification Dataset
40
+ size_categories:
41
+ - 1M<n<10M
42
+ ---
43
+
44
+ # Vietnamese News Classification Dataset (1.3M)
45
+
46
+ ## Dataset Description
47
+
48
+ 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.
49
+
50
+ The dataset covers **11 topics** (categories) ranging from current affairs, sports, technology, to entertainment.
51
+
52
+ - **Curated by:** Nam Syntax
53
+ - **Language:** Vietnamese
54
+ - **Total Rows:** ~1.3M
55
+ - **Task:** Multi-class Text Classification
56
+
57
+ ## Dataset Structure
58
+
59
+ ### Data Fields
60
+
61
+ Each instance in the dataset consists of the following fields:
62
+
63
+ - `label`: The category label id (Integer, 0-10).
64
+ - `title`: The title of the news article (String).
65
+ - `description`: A short summary/abstract of the article (String).
66
+ - `text`: The combination of title and description (and body content if available) used for training (String).
67
+
68
+ ### Example
69
+
70
+ ```json
71
+ {
72
+ "label": 0
73
+ "title": "Ba xe tông liên hoàn trên đường tránh Quảng Bình",
74
+ "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...",
75
+ "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...",
76
+ }
77
+ ```
78
+
79
+ | ID | Vietnamese Label | English Alias |
80
+ |:---:|:---|:---|
81
+ | 0 | Thời sự | current_affairs |
82
+ | 1 | Thế giới | world |
83
+ | 2 | Kinh doanh | business |
84
+ | 3 | Khoa học công nghệ | science_tech |
85
+ | 4 | Bất động sản | real_estate |
86
+ | 5 | Sức khỏe | health |
87
+ | 6 | Thể thao | sports |
88
+ | 7 | Giải trí | entertainment |
89
+ | 8 | Pháp luật | law |
90
+ | 9 | Giáo dục | education |
91
+ | 10 | Đời sống | lifestyle |