Views
No views yet
1from huggingface_hub import hf_hub_download
2import joblib
3
4model = joblib.load(hf_hub_download("joaogabriel101735/puc-sp-aula", "model.pkl"))
5# Ordem: [custo_prato, dia_da_semana, hora_pedido, tempo_mesa, popularidade]
6features = [[35.0, 5, 20, 60, 4.5]]
7prediction = model.predict(features)