Text Classification
Transformers
ONNX
Safetensors
bert
toxicity
bert-mini
gravitee-io
ai-gateway
text-embeddings-inference
Instructions to use gravitee-io/bert-mini-toxicity with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gravitee-io/bert-mini-toxicity with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="gravitee-io/bert-mini-toxicity")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("gravitee-io/bert-mini-toxicity") model = AutoModelForSequenceClassification.from_pretrained("gravitee-io/bert-mini-toxicity") - Notebooks
- Google Colab
- Kaggle