Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
vkhylenko commited on
Commit
b2fb11c
·
1 Parent(s): 26344b5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -32,4 +32,10 @@ configs:
32
  Dataset formation:
33
  1. Filtering Ukrainian tweets so that only tweets containing toxic language remain. Source of Ukrainian data: https://github.com/saganoren/ukr-twi-corpus
34
  2. Non-toxic sentences were obtained from a previous dataset of tweets as well as sentences from news and fiction from UD Ukrainian IU: https://universaldependencies.org/treebanks/uk_iu/index.html
35
- 3. After that, the dataset was split into a train-test-val and all data were balanced both by the toxic/non-toxic criterion and by data source.
 
 
 
 
 
 
 
32
  Dataset formation:
33
  1. Filtering Ukrainian tweets so that only tweets containing toxic language remain. Source of Ukrainian data: https://github.com/saganoren/ukr-twi-corpus
34
  2. Non-toxic sentences were obtained from a previous dataset of tweets as well as sentences from news and fiction from UD Ukrainian IU: https://universaldependencies.org/treebanks/uk_iu/index.html
35
+ 3. After that, the dataset was split into a train-test-val and all data were balanced both by the toxic/non-toxic criterion and by data source.
36
+
37
+ Load dataset:
38
+ ```
39
+ from datasets import load_dataset
40
+ dataset = load_dataset("ukr-detect/ukr-toxicity-dataset")
41
+ ```