File size: 1,836 Bytes
b2bd6b8
b338c75
b2bd6b8
 
 
 
 
 
 
 
13e4f36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e145585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74a5a98
e145585
 
dfc1a45
177f319
13e4f36
 
 
 
dfc1a45
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
---
viewer: true
task_categories:
- text-classification
language:
- vi
tags:
- sentiment
size_categories:
- 10K<n<100K
---

# Vietnamese Comment Sentiment Dataset

## Overview
This dataset contains Vietnamese comments collected from various social networks to facilitate sentiment analysis. Each comment is labeled to indicate its sentiment, making it useful for natural language processing tasks.

## Data Source
The comments were crawled from several social network platforms, ensuring a diverse range of expressions and contexts within Vietnamese language usage.

## Structure
The dataset is in CSV format, comprising the following columns:
- `ID`: A unique identifier for each comment.
- `Title`: The title associated with the comment.
- `Content`: The full text of the comment.
- `BriefContent`: A brief excerpt of the comment.
- `URL`: The URL of the source from which the comment was collected.
- `Published Date`: The date when the comment was published.
- `Week`: The week of the year the comment corresponds to.
- `Keyword`: Keywords associated with the content.
- `Group`: Group classification of the comment.
- `Sub`: Sub-category relating to the group.
- `Sentiment`: The sentiment label, categorized as positive, negative, or neutral.


## Usage

You can load and use the Vietnamese Comment Sentiment dataset from the Hugging Face Hub using the `datasets` library in Python. Here’s how you can do it:

```python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("minhtoan/vietnamese-comment-sentiment")

# Access the train split
train_data = dataset['train']

# Display a sample data point
print(train_data[0])
```


## Author
dataset{minhtoan/vietnamese-comment-sentiment,
  title={Vietnamese Comment Sentiment Dataset},
  author={Phan Minh Toan},
  year={2022},
  publisher={Hugging Face}
}