YAML Metadata Error: "tags" must be an array

Model Trained Using AutoTrain

  • Problem type: Binary Classification
  • Model ID: 1013533786
  • CO2 Emissions (in grams): 57.79463560530838

Validation Metrics

  • Loss: 0.18257243931293488
  • Accuracy: 0.9261538461538461
  • Precision: 0.9244319632371713
  • Recall: 0.9282235324275827
  • AUC: 0.9800523984255356
  • F1: 0.92632386799693

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/deepesh0x/autotrain-GlueFineTunedModel-1013533786

Or Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("deepesh0x/autotrain-GlueFineTunedModel-1013533786", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("deepesh0x/autotrain-GlueFineTunedModel-1013533786", use_auth_token=True)

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

outputs = model(**inputs)
Downloads last month
2
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.