英文

使用 AutoTrain 训练的模型

  • 问题类型:实体提取
  • 模型ID:903429548
  • CO2排放量(以克为单位):0.848790823793881

验证指标

  • 损失值:0.006148040760308504
  • 准确率:0.9979930566588805
  • 精确度:0.9814944904963571
  • 召回率:0.9817210885036588
  • F1值:0.9816077764228254

使用方法

您可以使用 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/ismail-lucifer011/autotrain-company_all-903429548

或者 Python API:

from transformers import AutoModelForTokenClassification, AutoTokenizer

model = AutoModelForTokenClassification.from_pretrained("ismail-lucifer011/autotrain-company_all-903429548", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("ismail-lucifer011/autotrain-company_all-903429548", use_auth_token=True)

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

outputs = model(**inputs)