Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
nicholasKluge commited on
Commit
ca720f0
·
verified ·
1 Parent(s): 6429ad6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -16,4 +16,25 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ license: apache-2.0
20
+ task_categories:
21
+ - text-classification
22
+ language:
23
+ - en
24
+ tags:
25
+ - sentiment
26
+ pretty_name: Adversarial Sentiment Analysis
27
+ size_categories:
28
+ - 10K<n<100K
29
  ---
30
+ # Adversarial 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/adversarial-sentiment-analysis", split = 'train')
40
+ ```