|
--- |
|
tags: |
|
- autotrain |
|
- token-classification |
|
language: |
|
- en |
|
widget: |
|
- text: "I love AutoTrain 🤗" |
|
datasets: |
|
- WilliamWen/autotrain-data-activity_parameters |
|
co2_eq_emissions: |
|
emissions: 0.8044039338743204 |
|
--- |
|
|
|
# Model Trained Using AutoTrain |
|
|
|
- Problem type: Entity Extraction |
|
- Model ID: 46735115465 |
|
- CO2 Emissions (in grams): 0.8044 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 0.034 |
|
- Accuracy: 0.990 |
|
- Precision: 0.739 |
|
- Recall: 0.829 |
|
- F1: 0.782 |
|
|
|
## 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/WilliamWen/autotrain-activity_parameters-46735115465 |
|
``` |
|
|
|
Or Python API: |
|
|
|
``` |
|
from transformers import AutoModelForTokenClassification, AutoTokenizer |
|
|
|
model = AutoModelForTokenClassification.from_pretrained("WilliamWen/autotrain-activity_parameters-46735115465", use_auth_token=True) |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("WilliamWen/autotrain-activity_parameters-46735115465", use_auth_token=True) |
|
|
|
inputs = tokenizer("I love AutoTrain", return_tensors="pt") |
|
|
|
outputs = model(**inputs) |
|
``` |