Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
nicholasKluge commited on
Commit
c4cc7c3
1 Parent(s): 3264118

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -37
README.md CHANGED
@@ -27,47 +27,14 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
30
- # Tweets
31
 
32
- ## Overview
33
 
34
- This dataset contains texts from customers posted on Twitter regarding their air travel experiences,
35
- whether they were upset, neutral, or satisfied with the trip and the airline's service.
36
-
37
- ## Dataset Details
38
-
39
- The dataset is a smaller version of the original dataset. This data originally came from [Crowdflower's Data for Everyone library](https://data.world/crowdflower)
40
- The original Twitter data was scraped from February 2015, and contributors were asked first to classify positive, negative, and neutral tweets,
41
- followed by categorizing negative reasons (such as "late flight" or "rude service").
42
- This version contains whether the sentiment of the tweets in this set was positive (16%), neutral (21%), or negative (63%) for six US airlines.
43
-
44
- - Dataset Name: [Twitter US Airline Sentiment](https://www.kaggle.com/datasets/crowdflower/twitter-airline-sentiment)
45
- - Language: English
46
- - Total Size: 14,640 demonstrations
47
-
48
- ## Contents
49
-
50
- The dataset consists of a data frame with the following columns:
51
-
52
- - label
53
- - text
54
-
55
- ```bash
56
- {
57
- "label": 0,
58
- "text": "virginamerica why are your first fares in may over three times more than other carriers when all seats are available to select.",
59
- }
60
- ```
61
-
62
- ## How to use
63
 
64
  ```python
65
  from datasets import load_dataset
66
 
67
- dataset = load_dataset("AiresPucrs/tweets", split='train')
68
-
69
  ```
70
-
71
- ## License
72
-
73
- The Twitter US Airline Sentiment is licensed under the [Creative Commons(CC)](https://creativecommons.org/licenses/by-nc-sa/4.0/) License CC BY-NC-SA 4.0.
 
27
  - split: train
28
  path: data/train-*
29
  ---
30
+ # Tweets (Teeny-Tiny Castle)
31
 
32
+ 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.
33
 
34
+ ## How to Use
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  ```python
37
  from datasets import load_dataset
38
 
39
+ dataset = load_dataset("AiresPucrs/tweets", split = 'train')
 
40
  ```