Text Classification
Transformers
PyTorch
Safetensors
Enawené-Nawé
deberta-v2
Trained with AutoTrain
text-embeddings-inference
Instructions to use leofn3/autotrain-racismo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use leofn3/autotrain-racismo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="leofn3/autotrain-racismo")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("leofn3/autotrain-racismo") model = AutoModelForSequenceClassification.from_pretrained("leofn3/autotrain-racismo", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Model Trained Using AutoTrain
- Problem type: Binary Classification
- Model ID: 72132138873
- CO2 Emissions (in grams): 0.9389
Validation Metrics
- Loss: 0.562
- Accuracy: 0.833
- Precision: 1.000
- Recall: 0.667
- AUC: 0.901
- F1: 0.800
Usage
You can use cURL to access this model:
$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/leofn3/autotrain-racismo-sandbox-72132138873
Or Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("leofn3/autotrain-racismo-sandbox-72132138873", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("leofn3/autotrain-racismo-sandbox-72132138873", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)
- Downloads last month
- 4