NamSyntax commited on
Commit
669d07e
·
verified ·
1 Parent(s): 52919c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -26
README.md CHANGED
@@ -1,26 +1,58 @@
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: int64
12
- - name: title
13
- dtype: string
14
- - name: description
15
- dtype: string
16
- - name: text
17
- dtype: string
18
- - name: text_vi
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 94742232
23
- num_examples: 120000
24
- download_size: 55392570
25
- dataset_size: 94742232
26
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: int64
12
+ - name: title
13
+ dtype: string
14
+ - name: description
15
+ dtype: string
16
+ - name: text
17
+ dtype: string
18
+ - name: text_vi
19
+ dtype: string
20
+ splits:
21
+ - name: train
22
+ num_bytes: 94742232
23
+ num_examples: 120000
24
+ download_size: 55392570
25
+ dataset_size: 94742232
26
+ task_categories:
27
+ - text-classification
28
+ - token-classification
29
+ language:
30
+ - vi
31
+ - en
32
+ pretty_name: Vietnamese AG News
33
+ size_categories:
34
+ - 100K<n<1M
35
+ ---
36
+
37
+ # Vietnamese AG News (Machine Translated)
38
+
39
+ ## Overview
40
+ This is a Vietnamese version of the **AG News** dataset, created for experimental purposes and personal learning. I used a machine translation model to convert the original English content into Vietnamese to explore how translation affects text classification tasks.
41
+
42
+ ## Translation Method
43
+ The translation was performed using the **`facebook/nllb-200-distilled-1.3B`** model.
44
+
45
+ * **Source**: AG News dataset (English)
46
+ * **Target**: Vietnamese
47
+
48
+ ## Dataset Structure
49
+ The dataset contains the following columns:
50
+
51
+ - `label`: The category ID (0: World, 1: Sports, 2: Business, 3: Sci/Tech).
52
+ - `title`: The original English title.
53
+ - `description`: The original English description.
54
+ - `text`: A combination of `title` and `description` in English.
55
+ - `text_vi`: The machine-translated version of the `text` column in Vietnamese.
56
+
57
+ ## Purpose
58
+ This project is strictly for fun and educational exploration. Please note that since the translation is automated, some nuances or technical terms may not be perfectly accurate.