|
--- |
|
tags: autonlp |
|
language: en |
|
widget: |
|
- text: "I love AutoNLP 🤗" |
|
datasets: |
|
- severo/autonlp-data-sentiment_detection-3c8bcd36 |
|
--- |
|
|
|
# Model Trained Using AutoNLP |
|
|
|
_debug - I want to update this model_ |
|
|
|
- Problem type: Binary Classification |
|
- Model ID: 1781580 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 0.16026505827903748 |
|
- Accuracy: 0.9426 |
|
- Precision: 0.9305057745917961 |
|
- Recall: 0.95406288280931 |
|
- AUC: 0.9861051024994563 |
|
- F1: 0.9421370967741935 |
|
|
|
## 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 AutoNLP"}' /static-proxy?url=https%3A%2F%2Fapi-inference.huggingface.co%2Fmodels%2Fsevero%2Fautonlp-sentiment_detection-1781580%3C%2Fspan%3E%3C!-- HTML_TAG_END --> |
|
``` |
|
|
|
Or Python API: |
|
|
|
``` |
|
from transformers import AutoModelForSequenceClassification, AutoTokenizer |
|
|
|
model = AutoModelForSequenceClassification.from_pretrained("severo/autonlp-sentiment_detection-1781580", use_auth_token=True) |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("severo/autonlp-sentiment_detection-1781580", use_auth_token=True) |
|
|
|
inputs = tokenizer("I love AutoNLP", return_tensors="pt") |
|
|
|
outputs = model(**inputs) |
|
``` |