Text Classification
Transformers
PyTorch
Safetensors
Portuguese
bert
toxicity
portuguese
hate speech
offensive language
Generated from Trainer
text-embeddings-inference
Instructions to use dougtrajano/toxic-comment-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dougtrajano/toxic-comment-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dougtrajano/toxic-comment-classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("dougtrajano/toxic-comment-classification") model = AutoModelForSequenceClassification.from_pretrained("dougtrajano/toxic-comment-classification") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -13,6 +13,7 @@ metrics:
|
|
| 13 |
- f1
|
| 14 |
- precision
|
| 15 |
- recall
|
|
|
|
| 16 |
model-index:
|
| 17 |
- name: dougtrajano/toxic-comment-classification
|
| 18 |
results: []
|
|
|
|
| 13 |
- f1
|
| 14 |
- precision
|
| 15 |
- recall
|
| 16 |
+
base_model: neuralmind/bert-large-portuguese-cased
|
| 17 |
model-index:
|
| 18 |
- name: dougtrajano/toxic-comment-classification
|
| 19 |
results: []
|