Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
nicholasKluge commited on
Commit
e1f6195
·
verified ·
1 Parent(s): 3ad7d74

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -44
README.md CHANGED
@@ -23,55 +23,16 @@ language:
23
  - en
24
  size_categories:
25
  - 1K<n<10K
 
26
  ---
27
- # Compare Models
28
 
29
- ## Overview
30
- This dataset is a reduced version of [Tweets Dataset](https://huggingface.co/datasets/AiresPucrs/tweets).
31
- Which in turn is a reduced version of the original dataset:[Crowdflower's Data for Everyone library](https://data.world/crowdflower).
32
- This dataset contains texts from customers posted on Twitter regarding their air travel experiences,
33
- whether they were upset, neutral, or satisfied with the trip and the airline's service.
34
 
35
- ## Dataset Details
36
-
37
- This version contains whether the sentiment of the tweets in this set was positive, neutral, or negative.
38
- The dataset was used in
39
- this notebook [model_extraction_nlp](https://github.com/Nkluge-correa/TeenyTinyCastle/blob/master/ML-Adversarial/model_extraction_nlp.ipynb).
40
- - Dataset Name: compare-models
41
- - Language: English
42
- - Total Size: 1,464
43
-
44
- ## Contents
45
-
46
- The dataset consists of a data frame with the following column:
47
-
48
- - text
49
- - sentiment
50
-
51
- ```bash
52
- {
53
- "text": "usairways how is it that my flt to ewr was cancelled flightled yet flts to nyc from usairways are still flying",
54
- "sentiment:" 0,
55
-
56
- "text: " "jetblue do they have to depart from washington dc",
57
- "sentiment:" 1,
58
-
59
- "text: " "southwestair youre my early frontrunner for best airline oscars2016",
60
- "sentiment:" 2,
61
-
62
-
63
- }
64
- ```
65
-
66
- ## How to use
67
 
68
  ```python
69
  from datasets import load_dataset
70
 
71
- dataset = load_dataset('AiresPucrs/compare-models', split='train')
72
-
73
  ```
74
-
75
- ## License
76
-
77
- This dataset is licensed under the Apache License, version 2.0.
 
23
  - en
24
  size_categories:
25
  - 1K<n<10K
26
+ pretty_name: Compare Models
27
  ---
28
+ # Compare Models (Teeny-Tiny Castle)
29
 
30
+ This dataset is part of the tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research.
 
 
 
 
31
 
32
+ ## How to Use
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  ```python
35
  from datasets import load_dataset
36
 
37
+ dataset = load_dataset("AiresPucrs/compare-models", split = 'train')
 
38
  ```