File size: 1,889 Bytes
812bd0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8f4f28f
 
 
 
 
 
 
812bd0b
8f4f28f
 
 
3ad7d74
6a43d75
 
 
8f4f28f
 
 
3ad7d74
6528b5c
 
8f4f28f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
dataset_info:
  features:
  - name: text
    dtype: string
  - name: sentiment
    dtype: float64
  splits:
  - name: train
    num_bytes: 163565
    num_examples: 1464
  download_size: 96001
  dataset_size: 163565
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: apache-2.0
task_categories:
- text-classification
language:
- en
size_categories:
- 1K<n<10K
---
# Compare Models

## Overview 
This dataset is a reduced version of [Tweets Dataset](https://huggingface.co/datasets/AiresPucrs/tweets).
Which in turn is a reduced version of the original dataset:[Crowdflower's Data for Everyone library](https://data.world/crowdflower).
This dataset contains texts from customers posted on Twitter regarding their air travel experiences,
whether they were upset, neutral, or satisfied with the trip and the airline's service.

## Dataset Details

This version contains whether the sentiment of the tweets in this set was positive, neutral, or negative.
The dataset was used in
this notebook [model_extraction_nlp](https://github.com/Nkluge-correa/TeenyTinyCastle/blob/master/ML-Adversarial/model_extraction_nlp.ipynb).
- Dataset Name: compare-models
- Language:  English
- Total Size: 1,464 

## Contents

The dataset consists of a data frame with the following column:

- text
- sentiment

```bash
{
  "text": "usairways how is it that my flt to ewr was cancelled flightled yet flts to nyc from usairways are still flying",
  "sentiment:" 0,

  "text: " "jetblue do they have to depart from washington dc",
  "sentiment:" 1,

  "text: " "southwestair youre my early frontrunner for best airline oscars2016",
  "sentiment:" 2,


}
```

## How to use

```python
from datasets import load_dataset

dataset = load_dataset('AiresPucrs/compare-models', split='train')

```

## License

This dataset is licensed under the Apache License, version 2.0.