File size: 682 Bytes
f6104c8 7cd3bca 579344a fa79eeb |
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 |
---
license: apache-2.0
datasets:
- UngLong/ViSIR
language:
- vi
metrics:
- f1
- recall
- precision
base_model:
- uitnlp/CafeBERT
pipeline_tag: text-classification
tags:
- socialmedia
- toxiccomment
- classification_toxic_comment
- transformer
library_name: transformers
---
# CafeBERT Fine-tuned for Toxic Classification
This model is a fine-tuned version of CafeBERT on a toxic comment classification task.
## Usage
```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("UngLong/cafebert-classification-ft")
model = AutoModelForSequenceClassification.from_pretrained("UngLong/cafebert-classification-ft")
|