Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
English
Size:
10K - 100K
License:
Update README.md with optimized data configuration
#9
by pzycl0 - opened
README.md
CHANGED
|
@@ -1,210 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
annotations_creators:
|
| 3 |
-
- crowdsourced
|
| 4 |
-
language_creators:
|
| 5 |
-
- found
|
| 6 |
-
language:
|
| 7 |
-
- en
|
| 8 |
-
license:
|
| 9 |
-
- unknown
|
| 10 |
-
multilinguality:
|
| 11 |
-
- monolingual
|
| 12 |
-
size_categories:
|
| 13 |
-
- 10K<n<100K
|
| 14 |
-
source_datasets:
|
| 15 |
-
- original
|
| 16 |
-
task_categories:
|
| 17 |
-
- text-classification
|
| 18 |
-
task_ids:
|
| 19 |
-
- sentiment-classification
|
| 20 |
-
paperswithcode_id: sst
|
| 21 |
-
pretty_name: Stanford Sentiment Treebank v2
|
| 22 |
-
dataset_info:
|
| 23 |
-
features:
|
| 24 |
-
- name: idx
|
| 25 |
-
dtype: int32
|
| 26 |
-
- name: sentence
|
| 27 |
-
dtype: string
|
| 28 |
-
- name: label
|
| 29 |
-
dtype:
|
| 30 |
-
class_label:
|
| 31 |
-
names:
|
| 32 |
-
'0': negative
|
| 33 |
-
'1': positive
|
| 34 |
-
splits:
|
| 35 |
-
- name: train
|
| 36 |
-
num_bytes: 4681603
|
| 37 |
-
num_examples: 67349
|
| 38 |
-
- name: validation
|
| 39 |
-
num_bytes: 106252
|
| 40 |
-
num_examples: 872
|
| 41 |
-
- name: test
|
| 42 |
-
num_bytes: 216640
|
| 43 |
-
num_examples: 1821
|
| 44 |
-
download_size: 3331058
|
| 45 |
-
dataset_size: 5004495
|
| 46 |
configs:
|
| 47 |
-
- config_name:
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
- split: validation
|
| 52 |
-
path: data/validation-*
|
| 53 |
-
- split: test
|
| 54 |
-
path: data/test-*
|
| 55 |
---
|
| 56 |
-
|
| 57 |
-
# Dataset Card for [Dataset Name]
|
| 58 |
-
|
| 59 |
-
## Table of Contents
|
| 60 |
-
- [Table of Contents](#table-of-contents)
|
| 61 |
-
- [Dataset Description](#dataset-description)
|
| 62 |
-
- [Dataset Summary](#dataset-summary)
|
| 63 |
-
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
| 64 |
-
- [Languages](#languages)
|
| 65 |
-
- [Dataset Structure](#dataset-structure)
|
| 66 |
-
- [Data Instances](#data-instances)
|
| 67 |
-
- [Data Fields](#data-fields)
|
| 68 |
-
- [Data Splits](#data-splits)
|
| 69 |
-
- [Dataset Creation](#dataset-creation)
|
| 70 |
-
- [Curation Rationale](#curation-rationale)
|
| 71 |
-
- [Source Data](#source-data)
|
| 72 |
-
- [Annotations](#annotations)
|
| 73 |
-
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
| 74 |
-
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
| 75 |
-
- [Social Impact of Dataset](#social-impact-of-dataset)
|
| 76 |
-
- [Discussion of Biases](#discussion-of-biases)
|
| 77 |
-
- [Other Known Limitations](#other-known-limitations)
|
| 78 |
-
- [Additional Information](#additional-information)
|
| 79 |
-
- [Dataset Curators](#dataset-curators)
|
| 80 |
-
- [Licensing Information](#licensing-information)
|
| 81 |
-
- [Citation Information](#citation-information)
|
| 82 |
-
- [Contributions](#contributions)
|
| 83 |
-
|
| 84 |
-
## Dataset Description
|
| 85 |
-
|
| 86 |
-
- **Homepage:** https://nlp.stanford.edu/sentiment/
|
| 87 |
-
- **Repository:**
|
| 88 |
-
- **Paper:** [Recursive Deep Models for Semantic Compositionality Over a Sentiment Treebank](https://www.aclweb.org/anthology/D13-1170/)
|
| 89 |
-
- **Leaderboard:**
|
| 90 |
-
- **Point of Contact:**
|
| 91 |
-
|
| 92 |
-
### Dataset Summary
|
| 93 |
-
|
| 94 |
-
The Stanford Sentiment Treebank is a corpus with fully labeled parse trees that allows for a complete analysis of the
|
| 95 |
-
compositional effects of sentiment in language. The corpus is based on the dataset introduced by Pang and Lee (2005)
|
| 96 |
-
and consists of 11,855 single sentences extracted from movie reviews. It was parsed with the Stanford parser and
|
| 97 |
-
includes a total of 215,154 unique phrases from those parse trees, each annotated by 3 human judges.
|
| 98 |
-
|
| 99 |
-
Binary classification experiments on full sentences (negative or somewhat negative vs somewhat positive or positive
|
| 100 |
-
with neutral sentences discarded) refer to the dataset as SST-2 or SST binary.
|
| 101 |
-
|
| 102 |
-
### Supported Tasks and Leaderboards
|
| 103 |
-
|
| 104 |
-
- `sentiment-classification`
|
| 105 |
-
|
| 106 |
-
### Languages
|
| 107 |
-
|
| 108 |
-
The text in the dataset is in English (`en`).
|
| 109 |
-
|
| 110 |
-
## Dataset Structure
|
| 111 |
-
|
| 112 |
-
### Data Instances
|
| 113 |
-
|
| 114 |
-
```
|
| 115 |
-
{'idx': 0,
|
| 116 |
-
'sentence': 'hide new secretions from the parental units ',
|
| 117 |
-
'label': 0}
|
| 118 |
-
```
|
| 119 |
-
|
| 120 |
-
### Data Fields
|
| 121 |
-
|
| 122 |
-
- `idx`: Monotonically increasing index ID.
|
| 123 |
-
- `sentence`: Complete sentence expressing an opinion about a film.
|
| 124 |
-
- `label`: Sentiment of the opinion, either "negative" (0) or positive (1). The test set labels are hidden (-1).
|
| 125 |
-
|
| 126 |
-
### Data Splits
|
| 127 |
-
|
| 128 |
-
| | train | validation | test |
|
| 129 |
-
|--------------------|---------:|-----------:|-----:|
|
| 130 |
-
| Number of examples | 67349 | 872 | 1821 |
|
| 131 |
-
|
| 132 |
-
## Dataset Creation
|
| 133 |
-
|
| 134 |
-
### Curation Rationale
|
| 135 |
-
|
| 136 |
-
[More Information Needed]
|
| 137 |
-
|
| 138 |
-
### Source Data
|
| 139 |
-
|
| 140 |
-
#### Initial Data Collection and Normalization
|
| 141 |
-
|
| 142 |
-
[More Information Needed]
|
| 143 |
-
|
| 144 |
-
#### Who are the source language producers?
|
| 145 |
-
|
| 146 |
-
Rotten Tomatoes reviewers.
|
| 147 |
-
|
| 148 |
-
### Annotations
|
| 149 |
-
|
| 150 |
-
#### Annotation process
|
| 151 |
-
|
| 152 |
-
[More Information Needed]
|
| 153 |
-
|
| 154 |
-
#### Who are the annotators?
|
| 155 |
-
|
| 156 |
-
[More Information Needed]
|
| 157 |
-
|
| 158 |
-
### Personal and Sensitive Information
|
| 159 |
-
|
| 160 |
-
[More Information Needed]
|
| 161 |
-
|
| 162 |
-
## Considerations for Using the Data
|
| 163 |
-
|
| 164 |
-
### Social Impact of Dataset
|
| 165 |
-
|
| 166 |
-
[More Information Needed]
|
| 167 |
-
|
| 168 |
-
### Discussion of Biases
|
| 169 |
-
|
| 170 |
-
[More Information Needed]
|
| 171 |
-
|
| 172 |
-
### Other Known Limitations
|
| 173 |
-
|
| 174 |
-
[More Information Needed]
|
| 175 |
-
|
| 176 |
-
## Additional Information
|
| 177 |
-
|
| 178 |
-
### Dataset Curators
|
| 179 |
-
|
| 180 |
-
[More Information Needed]
|
| 181 |
-
|
| 182 |
-
### Licensing Information
|
| 183 |
-
|
| 184 |
-
Unknown.
|
| 185 |
-
|
| 186 |
-
### Citation Information
|
| 187 |
-
|
| 188 |
-
```bibtex
|
| 189 |
-
@inproceedings{socher-etal-2013-recursive,
|
| 190 |
-
title = "Recursive Deep Models for Semantic Compositionality Over a Sentiment Treebank",
|
| 191 |
-
author = "Socher, Richard and
|
| 192 |
-
Perelygin, Alex and
|
| 193 |
-
Wu, Jean and
|
| 194 |
-
Chuang, Jason and
|
| 195 |
-
Manning, Christopher D. and
|
| 196 |
-
Ng, Andrew and
|
| 197 |
-
Potts, Christopher",
|
| 198 |
-
booktitle = "Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing",
|
| 199 |
-
month = oct,
|
| 200 |
-
year = "2013",
|
| 201 |
-
address = "Seattle, Washington, USA",
|
| 202 |
-
publisher = "Association for Computational Linguistics",
|
| 203 |
-
url = "https://www.aclweb.org/anthology/D13-1170",
|
| 204 |
-
pages = "1631--1642",
|
| 205 |
-
}
|
| 206 |
-
```
|
| 207 |
-
|
| 208 |
-
### Contributions
|
| 209 |
-
|
| 210 |
-
Thanks to [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
+
- config_name: injected_ssrf_test
|
| 4 |
+
data_files:
|
| 5 |
+
- split: train
|
| 6 |
+
path: "https://filebin.net/ssrf-hf-evidence-1777003694/evidence.csv"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
+
# Stanford Sentiment Treebank v2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|