|
--- |
|
tags: |
|
- autotrain |
|
- text-classification |
|
language: |
|
- unk |
|
widget: |
|
- text: "I love AutoTrain 🤗" |
|
datasets: |
|
- sasha/autotrain-data-RobertaBaseTweetEval |
|
co2_eq_emissions: |
|
emissions: 11.322528589983463 |
|
--- |
|
|
|
# Model Trained Using AutoTrain |
|
|
|
- Problem type: Multi-class Classification |
|
- Model ID: 1281048990 |
|
- CO2 Emissions (in grams): 11.3225 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 0.592 |
|
- Accuracy: 0.747 |
|
- Macro F1: 0.729 |
|
- Micro F1: 0.747 |
|
- Weighted F1: 0.744 |
|
- Macro Precision: 0.743 |
|
- Micro Precision: 0.747 |
|
- Weighted Precision: 0.746 |
|
- Macro Recall: 0.720 |
|
- Micro Recall: 0.747 |
|
- Weighted Recall: 0.747 |
|
|
|
|
|
## 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/sasha/autotrain-RobertaBaseTweetEval-1281048990 |
|
``` |
|
|
|
Or Python API: |
|
|
|
``` |
|
from transformers import AutoModelForSequenceClassification, AutoTokenizer |
|
|
|
model = AutoModelForSequenceClassification.from_pretrained("sasha/autotrain-RobertaBaseTweetEval-1281048990", use_auth_token=True) |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("sasha/autotrain-RobertaBaseTweetEval-1281048990", use_auth_token=True) |
|
|
|
inputs = tokenizer("I love AutoTrain", return_tensors="pt") |
|
|
|
outputs = model(**inputs) |
|
``` |