File size: 775 Bytes
de8ae90 9c7652e e2278b5 de8ae90 97aaa8b 9c7652e 97aaa8b 9c7652e 97aaa8b 9c7652e 97aaa8b 1f568dd 9c7652e 97aaa8b 9c7652e 97aaa8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
license: openrail++
datasets:
- ukr-detect/ukr-toxicity-dataset
language:
- uk
widget:
- text: "Ти неймовірна!"
---
## Binary toxicity classifier for Ukrainian
This is the fine-tuned on the [Ukrainian toxicity classification dataset](https://huggingface.co/datasets/ukr-detect/ukr-toxicity-dataset) ["xlm-roberta-base"](https://huggingface.co/xlm-roberta-base) instance.
The evaluation metrics for binary toxicity classification on a test set are:
| Metric | Value |
|-----------|-------|
| F1-score | 0.99 |
| Precision | 0.99 |
| Recall | 0.99 |
| Accuracy | 0.99 |
## How to use:
```
from transformers import pipeline
classifier = pipeline("text-classification",
model="ukr-detect/ukr-toxicity-classifier")
``` |