|
--- |
|
tags: |
|
- autotrain |
|
- text-classification |
|
language: |
|
- en |
|
widget: |
|
- text: "I love AutoTrain 🤗" |
|
datasets: |
|
- gjbooth2/autotrain-data-glenn_epa_second_pooled_25 |
|
co2_eq_emissions: |
|
emissions: 0.02021601897058404 |
|
--- |
|
|
|
# Model Trained Using AutoTrain |
|
|
|
- Problem type: Multi-class Classification |
|
- Model ID: 3519195196 |
|
- CO2 Emissions (in grams): 0.0202 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 1.733 |
|
- Accuracy: 0.534 |
|
- Macro F1: 0.343 |
|
- Micro F1: 0.534 |
|
- Weighted F1: 0.473 |
|
- Macro Precision: 0.371 |
|
- Micro Precision: 0.534 |
|
- Weighted Precision: 0.477 |
|
- Macro Recall: 0.375 |
|
- Micro Recall: 0.534 |
|
- Weighted Recall: 0.534 |
|
|
|
|
|
## 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/gjbooth2/autotrain-glenn_epa_second_pooled_25-3519195196 |
|
``` |
|
|
|
Or Python API: |
|
|
|
``` |
|
from transformers import AutoModelForSequenceClassification, AutoTokenizer |
|
|
|
model = AutoModelForSequenceClassification.from_pretrained("gjbooth2/autotrain-glenn_epa_second_pooled_25-3519195196", use_auth_token=True) |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("gjbooth2/autotrain-glenn_epa_second_pooled_25-3519195196", use_auth_token=True) |
|
|
|
inputs = tokenizer("I love AutoTrain", return_tensors="pt") |
|
|
|
outputs = model(**inputs) |
|
``` |