Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,50 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
download_size: 144905673
|
| 15 |
-
dataset_size: 240465170
|
| 16 |
configs:
|
| 17 |
- config_name: default
|
| 18 |
data_files:
|
| 19 |
- split: train
|
| 20 |
-
path: data/train-*
|
| 21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-classification
|
| 7 |
+
tags:
|
| 8 |
+
- sentiment
|
| 9 |
+
- alpaca
|
| 10 |
+
- sft
|
| 11 |
+
- instruction-tuning
|
| 12 |
+
size_categories:
|
| 13 |
+
- 100K<n<1M
|
|
|
|
|
|
|
| 14 |
configs:
|
| 15 |
- config_name: default
|
| 16 |
data_files:
|
| 17 |
- split: train
|
| 18 |
+
path: data/train-*.parquet
|
| 19 |
---
|
| 20 |
+
|
| 21 |
+
# summarization-sft-100k
|
| 22 |
+
|
| 23 |
+
Sentiment classification dataset in Alpaca instruction format for supervised fine-tuning (SFT).
|
| 24 |
+
|
| 25 |
+
**100,000 examples** sourced and normalised from:
|
| 26 |
+
- [mteb/mteb-human-tweet-sentiment-classification](https://huggingface.co/datasets/mteb/mteb-human-tweet-sentiment-classification)
|
| 27 |
+
- [stanfordnlp/sst2](https://huggingface.co/datasets/stanfordnlp/sst2)
|
| 28 |
+
- [SetFit/sst5](https://huggingface.co/datasets/SetFit/sst5) (5-class collapsed to 3)
|
| 29 |
+
- [jbeno/sentiment_merged](https://huggingface.co/datasets/jbeno/sentiment_merged)
|
| 30 |
+
|
| 31 |
+
## Label space
|
| 32 |
+
All labels normalised to 3 classes: `negative`, `neutral`, `positive`
|
| 33 |
+
|
| 34 |
+
## Format
|
| 35 |
+
|
| 36 |
+
| Column | Description |
|
| 37 |
+
|--------|-------------|
|
| 38 |
+
| `instruction` | Task prompt with label options |
|
| 39 |
+
| `input` | The text to classify |
|
| 40 |
+
| `output` | One of: negative, neutral, positive |
|
| 41 |
+
|
| 42 |
+
## Example
|
| 43 |
+
|
| 44 |
+
```json
|
| 45 |
+
{
|
| 46 |
+
"instruction": "Classify the sentiment of the following text. Respond with one of: negative, neutral, positive.",
|
| 47 |
+
"input": "This was an absolutely wonderful experience.",
|
| 48 |
+
"output": "positive"
|
| 49 |
+
}
|
| 50 |
+
```
|