英文

使用 AutoTrain 训练的模型

  • 问题类型:二分类
  • 模型 ID:61102134664
  • CO2 排放量(以克为单位):0.1979

验证指标

  • 损失:0.266
  • 准确率:0.939
  • 精确率:0.955
  • 召回率:0.913
  • AUC:0.952
  • F1:0.933

使用方法

您可以使用 cURL 访问此模型:

$ 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/futuredatascience/autotrain-strat_call_follow_up-61102134664

或使用 Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("futuredatascience/autotrain-strat_call_follow_up-61102134664", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("futuredatascience/autotrain-strat_call_follow_up-61102134664", use_auth_token=True)

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

outputs = model(**inputs)