andersoncda77 commited on
Commit
9e8ded7
·
verified ·
1 Parent(s): 0acc29a

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: pt
3
+ tags:
4
+ - sklearn
5
+ - classification
6
+ - restaurant
7
+ - mlops
8
+ - fastapi
9
+ ---
10
+
11
+ # bella-tavola-sobremesa-v1
12
+
13
+ Modelo de classificação binária treinado para prever **se o cliente vai pedir sobremesa** no restaurante Bella Tavola.
14
+
15
+ Desenvolvido como parte do curso de MLOps (Bloco 4).
16
+
17
+ ## Como usar
18
+
19
+ ```python
20
+ from huggingface_hub import hf_hub_download
21
+ import joblib
22
+
23
+ model = joblib.load(
24
+ hf_hub_download("andersoncda77/bella-tavola-sobremesa-v1", "model.pkl")
25
+ )