Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
Tags:
sentiment
License:
nicholasKluge
commited on
Commit
•
5320bb1
1
Parent(s):
282c136
Update README.md
Browse files
README.md
CHANGED
@@ -19,39 +19,22 @@ configs:
|
|
19 |
path: data/train-*
|
20 |
language:
|
21 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
---
|
23 |
-
# Sentiment Analysis
|
24 |
|
25 |
-
This dataset is
|
26 |
|
27 |
-
##
|
28 |
-
|
29 |
-
|
30 |
-
## Dataset Details
|
31 |
-
|
32 |
-
|
33 |
-
**Citation:**
|
34 |
-
```latex
|
35 |
-
|
36 |
-
```
|
37 |
-
## Contents
|
38 |
-
|
39 |
-
The dataset consists of a data frame with the following columns:
|
40 |
-
|
41 |
-
-**text:**
|
42 |
-
|
43 |
-
-**label:**
|
44 |
-
|
45 |
-
|
46 |
-
## How to use
|
47 |
|
48 |
```python
|
49 |
from datasets import load_dataset
|
50 |
|
51 |
-
dataset = load_dataset("AiresPucrs/sentiment-analysis", split='train')
|
52 |
-
|
53 |
```
|
54 |
-
|
55 |
-
## License
|
56 |
-
|
57 |
-
This dataset is licensed under the Apache License 2.0.
|
|
|
19 |
path: data/train-*
|
20 |
language:
|
21 |
- en
|
22 |
+
task_categories:
|
23 |
+
- text-classification
|
24 |
+
tags:
|
25 |
+
- sentiment
|
26 |
+
pretty_name: Sentiment Analysis
|
27 |
+
size_categories:
|
28 |
+
- 10K<n<100K
|
29 |
---
|
30 |
+
# Sentiment Analysis (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", split = 'train')
|
|
|
40 |
```
|
|
|
|
|
|
|
|