Text Classification
Transformers
Safetensors
Vietnamese
xlm-roberta
socialmedia
toxiccomment
classification_toxic_comment
transformer
text-embeddings-inference
Instructions to use UngLong/cafebert-classification-ft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UngLong/cafebert-classification-ft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="UngLong/cafebert-classification-ft")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("UngLong/cafebert-classification-ft") model = AutoModelForSequenceClassification.from_pretrained("UngLong/cafebert-classification-ft") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- UngLong/ViSIR
|
| 5 |
+
language:
|
| 6 |
+
- vi
|
| 7 |
+
metrics:
|
| 8 |
+
- f1
|
| 9 |
+
- recall
|
| 10 |
+
- precision
|
| 11 |
+
base_model:
|
| 12 |
+
- uitnlp/CafeBERT
|
| 13 |
+
pipeline_tag: text-classification
|
| 14 |
+
tags:
|
| 15 |
+
- socialmedia
|
| 16 |
+
- toxiccomment
|
| 17 |
+
- classification_toxic_comment
|
| 18 |
+
---
|