Model Trained Using AutoTrain
- Problem type: Binary Classification
- Model ID: 3693198466
- CO2 Emissions (in grams): 0.0033
Validation Metrics
- Loss: 0.439
- Accuracy: 0.824
- Precision: 0.833
- Recall: 0.909
- AUC: 0.879
- F1: 0.870
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/lucieackley/autotrain-woc_coach-3693198466
Or Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("lucieackley/autotrain-woc_coach-3693198466", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("lucieackley/autotrain-woc_coach-3693198466", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)
- Downloads last month
- 2
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.