rain1024 commited on
Commit
7b8c510
·
verified ·
1 Parent(s): 238a432

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -85
README.md CHANGED
@@ -2,7 +2,7 @@
2
  license: cc-by-nc-4.0
3
  language:
4
  - vi
5
- pretty_name: UVN - Underthesea Vietnamese News
6
  tags:
7
  - vietnamese
8
  - news
@@ -21,7 +21,9 @@ source_datasets:
21
  - original
22
  ---
23
 
24
- # Dataset Card for UVN - Underthesea Vietnamese News
 
 
25
 
26
  ## Dataset Description
27
 
@@ -31,32 +33,30 @@ source_datasets:
31
 
32
  ### Dataset Summary
33
 
34
- UVN (Underthesea Vietnamese News) is a dataset of Vietnamese news articles collected from 6 major Vietnamese newspapers. The dataset is designed for Vietnamese NLP research tasks such as text classification, language modeling, and text generation.
35
-
36
- The dataset contains 3,268 articles covering various topics including politics, business, sports, entertainment, technology, and more.
37
 
38
- ### Supported Tasks and Leaderboards
39
-
40
- - **Text Classification:** The dataset can be used to train models for news categorization.
41
- - **Language Modeling:** The content field provides substantial Vietnamese text for training language models.
42
- - **Text Generation:** Can be used for Vietnamese text generation tasks.
43
 
44
  ### Languages
45
 
46
- The dataset is in Vietnamese (vi).
47
 
48
  ## Dataset Structure
49
 
50
- ### Data Instances
51
 
52
  ```json
53
  {
54
  "id": "article-00001",
55
  "source": "vnexpress",
56
- "url": "https://vnexpress.net/example-article-123.html",
57
  "category": "Thời sự",
58
- "title": "Example Vietnamese News Title",
59
- "content": "Full article content in Vietnamese...",
60
  "publish_date": "2026-01-28"
61
  }
62
  ```
@@ -65,99 +65,87 @@ The dataset is in Vietnamese (vi).
65
 
66
  | Field | Type | Description |
67
  |-------|------|-------------|
68
- | `id` | string | Unique identifier (format: article-XXXXX) |
69
- | `source` | string | News source identifier (vnexpress, dantri, thanhnien, tuoitre, tienphong, nguoilaodong) |
70
  | `url` | string | Original article URL |
71
- | `category` | string | News category in Vietnamese |
72
- | `title` | string | Article headline |
73
- | `content` | string | Full article text content |
74
- | `publish_date` | string | Publication date in yyyy-mm-dd format |
75
 
76
  ### Data Splits
77
 
78
- | Split | Examples |
79
- |-------|----------|
80
  | train | 3,268 |
81
 
82
- ## Dataset Creation
83
-
84
- ### Curation Rationale
85
-
86
- This dataset was created to provide a high-quality Vietnamese news corpus for NLP research. Vietnamese is an under-resourced language, and this dataset aims to support the development of Vietnamese language models and text processing tools.
87
-
88
- ### Source Data
89
-
90
- #### Initial Data Collection and Normalization
91
-
92
- Articles were collected from 6 major Vietnamese news websites:
93
 
94
  | Source | Website | Count |
95
  |--------|---------|------:|
96
  | VnExpress | vnexpress.net | 1,000 |
97
- | Dan Tri | dantri.com.vn | 976 |
98
- | Thanh Nien | thanhnien.vn | 579 |
99
- | Tuoi Tre | tuoitre.vn | 210 |
100
- | Tien Phong | tienphong.vn | 240 |
101
- | Nguoi Lao Dong | nld.com.vn | 263 |
102
-
103
- #### Who are the source language producers?
104
-
105
- The text was written by professional journalists at Vietnamese news organizations.
106
-
107
- ### Annotations
108
-
109
- #### Annotation process
110
-
111
- No additional annotations were added. Categories are the original news categories assigned by the publishers.
112
-
113
- #### Who are the annotators?
114
-
115
- N/A - Categories are from original sources.
116
-
117
- ### Personal and Sensitive Information
118
-
119
- The dataset contains publicly available news articles. Users should be aware that articles may contain names of public figures and references to real events.
120
-
121
- ## Considerations for Using the Data
122
-
123
- ### Social Impact of Dataset
124
-
125
- This dataset can help advance Vietnamese NLP research and development of Vietnamese language technologies.
126
-
127
- ### Discussion of Biases
128
-
129
- - The dataset reflects the editorial perspectives of mainstream Vietnamese news outlets
130
- - Coverage may be biased toward urban and national news
131
- - Some categories may be underrepresented
 
 
132
 
133
- ### Other Known Limitations
134
 
135
- - Articles are from a specific time period (2025-2026)
136
- - Some sources have fewer articles than others due to website structure differences
137
- - Content reflects the views and potential biases of the source publications
138
 
139
- ## Additional Information
 
140
 
141
- ### Dataset Curators
142
 
143
- This dataset was curated by the Underthesea NLP team.
 
144
 
145
- ### Licensing Information
146
 
147
- This dataset is released under CC-BY-NC-4.0 license. The original content belongs to the respective news publishers. This dataset is for research and educational purposes only.
148
 
149
- ### Citation Information
150
 
151
  ```bibtex
152
- @misc{uvn_dataset,
153
- title={UVN: Underthesea Vietnamese News Dataset},
154
  author={Underthesea NLP},
155
  year={2026},
156
  publisher={HuggingFace},
157
  url={https://huggingface.co/datasets/undertheseanlp/UVN-1}
158
  }
159
  ```
160
-
161
- ### Contributions
162
-
163
- Thanks to the Underthesea community for their contributions to Vietnamese NLP.
 
2
  license: cc-by-nc-4.0
3
  language:
4
  - vi
5
+ pretty_name: Vietnamese News Dataset
6
  tags:
7
  - vietnamese
8
  - news
 
21
  - original
22
  ---
23
 
24
+ # Vietnamese News Dataset
25
+
26
+ A dataset of Vietnamese news articles collected from 6 major Vietnamese newspapers for NLP research.
27
 
28
  ## Dataset Description
29
 
 
33
 
34
  ### Dataset Summary
35
 
36
+ This dataset contains 3,268 Vietnamese news articles covering various topics including politics, business, sports, entertainment, education, health, and technology. It is designed for Vietnamese NLP research tasks such as:
 
 
37
 
38
+ - Text classification (news categorization)
39
+ - Language modeling
40
+ - Text generation
41
+ - Named entity recognition
42
+ - Keyword extraction
43
 
44
  ### Languages
45
 
46
+ Vietnamese (vi)
47
 
48
  ## Dataset Structure
49
 
50
+ ### Data Instance
51
 
52
  ```json
53
  {
54
  "id": "article-00001",
55
  "source": "vnexpress",
56
+ "url": "https://vnexpress.net/example-123.html",
57
  "category": "Thời sự",
58
+ "title": "Tiêu đề bài báo",
59
+ "content": "Nội dung bài báo...",
60
  "publish_date": "2026-01-28"
61
  }
62
  ```
 
65
 
66
  | Field | Type | Description |
67
  |-------|------|-------------|
68
+ | `id` | string | Unique identifier (article-XXXXX) |
69
+ | `source` | string | News source |
70
  | `url` | string | Original article URL |
71
+ | `category` | string | News category |
72
+ | `title` | string | Article title |
73
+ | `content` | string | Full article content |
74
+ | `publish_date` | string | Publication date (yyyy-mm-dd) |
75
 
76
  ### Data Splits
77
 
78
+ | Split | Count |
79
+ |-------|------:|
80
  | train | 3,268 |
81
 
82
+ ### Sources
 
 
 
 
 
 
 
 
 
 
83
 
84
  | Source | Website | Count |
85
  |--------|---------|------:|
86
  | VnExpress | vnexpress.net | 1,000 |
87
+ | Dân Trí | dantri.com.vn | 976 |
88
+ | Thanh Niên | thanhnien.vn | 579 |
89
+ | Tuổi Trẻ | tuoitre.vn | 210 |
90
+ | Tiền Phong | tienphong.vn | 240 |
91
+ | Người Lao Động | nld.com.vn | 263 |
92
+
93
+ ### Categories
94
+
95
+ - Thời sự (Politics)
96
+ - Thế giới (World)
97
+ - Kinh doanh (Business)
98
+ - Giải trí (Entertainment)
99
+ - Thể thao (Sports)
100
+ - Pháp luật (Law)
101
+ - Giáo dục (Education)
102
+ - Sức khỏe (Health)
103
+ - Đời sống (Lifestyle)
104
+ - Khoa học (Science/Technology)
105
+
106
+ ## Usage
107
+
108
+ ```python
109
+ from datasets import load_dataset
110
+
111
+ dataset = load_dataset("undertheseanlp/UVN-1")
112
+
113
+ # Access articles
114
+ for article in dataset["train"]:
115
+ print(article["id"], article["title"])
116
+ break
117
+
118
+ # Filter by source
119
+ vnexpress = dataset["train"].filter(lambda x: x["source"] == "vnexpress")
120
+
121
+ # Filter by category
122
+ sports = dataset["train"].filter(lambda x: x["category"] == "Thể thao")
123
+ ```
124
 
125
+ ## Considerations
126
 
127
+ ### Biases
 
 
128
 
129
+ - Reflects editorial perspectives of mainstream Vietnamese news outlets
130
+ - May be biased toward urban and national news coverage
131
 
132
+ ### Limitations
133
 
134
+ - Articles from 2025-2026 time period
135
+ - Uneven distribution across sources due to website structure differences
136
 
137
+ ## License
138
 
139
+ CC-BY-NC-4.0. For research and educational purposes only.
140
 
141
+ ## Citation
142
 
143
  ```bibtex
144
+ @misc{vietnamese_news_dataset,
145
+ title={Vietnamese News Dataset},
146
  author={Underthesea NLP},
147
  year={2026},
148
  publisher={HuggingFace},
149
  url={https://huggingface.co/datasets/undertheseanlp/UVN-1}
150
  }
151
  ```