Model Trained Using AutoTrain
- Problem type: Single Column Regression
- Model ID: 50442120508
- CO2 Emissions (in grams): 0.1213
Validation Metrics
- Loss: 0.611
- R2: 1.000
- MSE: 0.374
- MAE: 0.466
- RMSLE: 0.000
Usage
import json
import joblib
import pandas as pd
model = joblib.load('model.joblib')
config = json.load(open('config.json'))
features = config['features']
# data = pd.read_csv("data.csv")
data = data[features]
data.columns = ["feat_" + str(col) for col in data.columns]
predictions = model.predict(data) # or model.predict_proba(data)
- Downloads last month
- 2
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the HF Inference API does not support transformers models with pipeline type tabular-regression