sst2-albanian / README.md
Kushtrim's picture
Update README.md
2321e77 verified
---
dataset_info:
features:
- name: idx
dtype: int64
- name: sentence
dtype: string
- name: label
dtype: int64
- name: sentence_alb
dtype: string
splits:
- name: train
num_bytes: 9445185
num_examples: 67349
download_size: 5969256
dataset_size: 9445185
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
task_categories:
- text-classification
language:
- sq
- en
size_categories:
- 10K<n<100K
---
# Albanian Translated SST-2 Dataset
## Dataset
### Overview
The dataset is a Albanian machine-translation of the [Stanford Sentiment Treebank](https://huggingface.co/datasets/sst2) (SST-2). The original dataset comprises sentences extracted from movie reviews, accompanied by human annotations indicating their sentiment.
### Dataset Structure
The dataset has the following structure:
```json
{
"idx": int,
"sentence": str,
"label": int,
"sentence_alb": str
}
```
### Data Fields
- `idx`: Monotonically increasing index ID.
- `sentence`: Complete sentence expressing an opinion about a film.
- `label`: Sentiment of the opinion, either "negative" (0) or positive (1). The test set labels are hidden (-1).
- `sentence_alb`: Albanian translation of the sentence.