|
--- |
|
tags: |
|
- autotrain |
|
- text-regression |
|
language: |
|
- en |
|
widget: |
|
- text: "I love AutoTrain" |
|
datasets: |
|
- PavloR/autotrain-data-ooo |
|
co2_eq_emissions: |
|
emissions: 0.019125387827104743 |
|
--- |
|
|
|
# Model Trained Using AutoTrain |
|
|
|
- Problem type: Single Column Regression |
|
- Model ID: 81283141687 |
|
- CO2 Emissions (in grams): 0.0191 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 0.343 |
|
- MSE: 0.343 |
|
- MAE: 0.412 |
|
- R2: 0.668 |
|
- RMSE: 0.586 |
|
- Explained Variance: 0.671 |
|
|
|
## 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/PavloR/autotrain-ooo-81283141687 |
|
``` |
|
|
|
Or Python API: |
|
|
|
``` |
|
from transformers import AutoModelForSequenceClassification, AutoTokenizer |
|
|
|
model = AutoModelForSequenceClassification.from_pretrained("PavloR/autotrain-ooo-81283141687", use_auth_token=True) |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("PavloR/autotrain-ooo-81283141687", use_auth_token=True) |
|
|
|
inputs = tokenizer("I love AutoTrain", return_tensors="pt") |
|
|
|
outputs = model(**inputs) |
|
``` |