Model Trained Using AutoTrain
- Problem type: Single Column Regression
- Model ID: 40913105966
- CO2 Emissions (in grams): 5.6425
Validation Metrics
- Loss: 1.510
- R2: 0.940
- MSE: 2.280
- MAE: 0.194
- RMSLE: 0.061
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
- 1
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