Asharox commited on
Commit
8441cb1
·
verified ·
1 Parent(s): 7155407

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -15
README.md CHANGED
@@ -1,21 +1,50 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: instruction
5
- dtype: large_string
6
- - name: input
7
- dtype: large_string
8
- - name: output
9
- dtype: large_string
10
- splits:
11
- - name: train
12
- num_bytes: 240465170
13
- num_examples: 100000
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
+ ```