Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Portuguese
Libraries:
Datasets
pandas
License:
nicholasKluge commited on
Commit
98020d7
·
verified ·
1 Parent(s): 9c71958

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -33
README.md CHANGED
@@ -19,46 +19,22 @@ configs:
19
  path: data/train-*
20
  language:
21
  - pt
22
- pretty_name: sentiment-analysis-pt
23
  size_categories:
24
  - 10K<n<100K
 
 
 
 
25
  ---
 
26
 
27
- # Sentiment Analysis (Portuguese) dataset
28
 
29
- This dataset is a concatenation of the [`IMDB 50K`](https://www.kaggle.com/datasets/lakshmi25npathi/imdb-dataset-of-50k-movie-reviews?select=IMDB+Dataset.csv), the [`Twitter US Airline Sentiment`](https://www.kaggle.com/datasets/crowdflower/twitter-airline-sentiment), App Reviews scraped from [Google Play](https://github.com/Nkluge-correa/teeny-tiny_castle/blob/master/ML%20Explainability/NLP%20Interpreter/text_scraping.ipynb), and the [`EcoPreprocessed`](https://www.kaggle.com/datasets/pradeeshprabhakar/preprocessed-dataset-sentiment-analysis).
30
-
31
- - **Note:** Samples were translated via the Google Translate API.
32
-
33
-
34
- ## Overview
35
-
36
-
37
- ## Dataset Details
38
-
39
-
40
- **Citation:**
41
- ```latex
42
-
43
- ```
44
- ## Contents
45
-
46
- The dataset consists of a data frame with the following columns:
47
-
48
- -**text:**
49
-
50
- -**label:**
51
-
52
-
53
- ## How to use
54
 
55
  ```python
56
  from datasets import load_dataset
57
 
58
- dataset = load_dataset("AiresPucrs/sentiment-analysis-pt", split='train')
59
-
60
  ```
61
-
62
- ## License
63
-
64
- This dataset is licensed under the Apache License 2.0.
 
19
  path: data/train-*
20
  language:
21
  - pt
22
+ pretty_name: Sentiment Analysis PT
23
  size_categories:
24
  - 10K<n<100K
25
+ task_categories:
26
+ - text-classification
27
+ tags:
28
+ - sentiment
29
  ---
30
+ # Sentiment Analysis PT (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/sentiment-analysis-pt", split = 'train')
 
40
  ```