Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- education
|
| 7 |
+
- movie
|
| 8 |
+
size_categories:
|
| 9 |
+
- 1K<n<10K
|
| 10 |
---
|
| 11 |
+
# 📚 Dataset Card for "My Sentiment Dataset"
|
| 12 |
+
|
| 13 |
+
## Dataset Summary
|
| 14 |
+
|
| 15 |
+
This dataset contains English-language movie reviews labeled with sentiment (positive or negative). It can be used for binary sentiment classification tasks. The dataset was collected from publicly available online sources and manually labeled for accuracy.
|
| 16 |
+
|
| 17 |
+
- 10,000 reviews
|
| 18 |
+
- 5,000 positive / 5,000 negative
|
| 19 |
+
- Text only (no metadata)
|
| 20 |
+
|
| 21 |
+
## Supported Tasks and Leaderboards
|
| 22 |
+
|
| 23 |
+
**Task:** Sentiment Classification
|
| 24 |
+
**Input:** Text (movie review)
|
| 25 |
+
**Output:** Binary label (`positive` or `negative`)
|
| 26 |
+
|
| 27 |
+
This dataset is commonly used for:
|
| 28 |
+
- Benchmarking binary text classification models
|
| 29 |
+
- Fine-tuning pretrained language models for sentiment analysis
|
| 30 |
+
|
| 31 |
+
## Languages
|
| 32 |
+
|
| 33 |
+
- English (en)
|
| 34 |
+
|
| 35 |
+
## Dataset Structure
|
| 36 |
+
|
| 37 |
+
### Data Fields
|
| 38 |
+
|
| 39 |
+
- `text` (string): The movie review text.
|
| 40 |
+
- `label` (int): Sentiment label — 0 for negative, 1 for positive.
|
| 41 |
+
|
| 42 |
+
### Example
|
| 43 |
+
|
| 44 |
+
```json
|
| 45 |
+
{
|
| 46 |
+
"text": "I really enjoyed this movie. The acting was great!",
|
| 47 |
+
"label": 1
|
| 48 |
+
}
|