AutoGluon Tabular Regression Model

This model was trained using AutoGluon on the dataset DeltaSatellite1/entrepreneurial_readiness_1.
It predicts ratings on a scale of 1โ€“10 (with decimals allowed).

Usage

from autogluon.tabular import TabularPredictor
from huggingface_hub import hf_hub_download
import os

model_path = hf_hub_download(repo_id="DeltaSatellite1/entrepreneurial_readiness_2", filename="predictor.pkl")
predictor = TabularPredictor.load(os.path.dirname(model_path))

# Example prediction
import pandas as pd
example = pd.DataFrame([{"feature1": 3.2, "feature2": 7.5, "feature3": 1.0}])
print(predictor.predict(example))
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support