Update README.md
Browse filesadded the datset description
README.md
CHANGED
@@ -39,3 +39,40 @@ configs:
|
|
39 |
- split: train
|
40 |
path: data/train-*
|
41 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
- split: train
|
40 |
path: data/train-*
|
41 |
---
|
42 |
+
|
43 |
+
# Sentiment Analysis Dataset
|
44 |
+
|
45 |
+
## Description
|
46 |
+
This dataset contains social media posts labeled with sentiment categories. It includes metadata such as user details, timestamps, engagement metrics, and hashtags, making it useful for sentiment analysis, natural language processing (NLP), and social media analytics.
|
47 |
+
|
48 |
+
## Dataset Details
|
49 |
+
|
50 |
+
### **Columns:**
|
51 |
+
- **Text**: The content of the social media post.
|
52 |
+
- **Sentiment**: The sentiment classification (**Positive, Negative, Neutral**).
|
53 |
+
- **Timestamp**: The date and time when the post was made.
|
54 |
+
- **User**: The username of the person who posted the content.
|
55 |
+
- **Platform**: The social media platform (**Twitter, Instagram, Facebook, etc.**).
|
56 |
+
- **Hashtags**: Hashtags used in the post.
|
57 |
+
- **Retweets**: Number of retweets (for Twitter) or shares.
|
58 |
+
- **Likes**: Number of likes the post received.
|
59 |
+
- **Country**: The country from which the post originated.
|
60 |
+
- **Year, Month, Day, Hour**: Extracted datetime components for time-based analysis.
|
61 |
+
|
62 |
+
### **Notes:**
|
63 |
+
- The dataset contains **732 entries**.
|
64 |
+
- The **Unnamed: 0** and **Unnamed: 0.1** columns appear to be redundant and can be ignored.
|
65 |
+
- This dataset can be used for **training sentiment classification models** or **analyzing engagement trends**.
|
66 |
+
|
67 |
+
## Use Cases
|
68 |
+
- **Sentiment analysis** of social media content.
|
69 |
+
- **Engagement analysis** of posts based on likes and retweets.
|
70 |
+
- **Trend analysis** of public opinion over time.
|
71 |
+
|
72 |
+
## How to Use
|
73 |
+
You can load the dataset using the `datasets` library:
|
74 |
+
```python
|
75 |
+
from datasets import load_dataset
|
76 |
+
|
77 |
+
dataset = load_dataset("Tarakeshwaran/Hackathon_Sentiment_analysis")
|
78 |
+
print(dataset)
|