Views
No views yet
1from huggingface_hub import hf_hub_download 2import joblib 3model = joblib.load( 4 hf_hub_download("2gether330/diabetes-rf-regressor", "sklearn_model.joblib") 5) 6preds = model.predict(X) # X: (n_samples, 10)