wellness-model / inference.py
Vilas97Gupta's picture
Upload inference.py with huggingface_hub
2ca1605 verified
raw
history blame contribute delete
111 Bytes
import joblib, pandas as pd
model = joblib.load('best_model.joblib')
def predict(df): return model.predict(df)