Edit model card

Model Trained Using AutoTrain

  • Problem type: Multi-class Classification
  • Model ID: 74266139562
  • CO2 Emissions (in grams): 0.3508

Validation Metrics

  • Loss: 0.005
  • Accuracy: 1.000
  • Macro F1: 1.000
  • Micro F1: 1.000
  • Weighted F1: 1.000
  • Macro Precision: 1.000
  • Micro Precision: 1.000
  • Weighted Precision: 1.000
  • Macro Recall: 1.000
  • Micro Recall: 1.000
  • Weighted Recall: 1.000

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/madroid/autotrain-text-chat-74266139562

Or Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("madroid/autotrain-text-chat-74266139562", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("madroid/autotrain-text-chat-74266139562", use_auth_token=True)

inputs = tokenizer("I love AutoTrain", return_tensors="pt")

outputs = model(**inputs)
Downloads last month
23
Safetensors
Model size
139M params
Tensor type
I64
·
F32
·
Inference API
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.