Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import pickle
|
|
2 |
import gradio as gr
|
3 |
|
4 |
# Load the pickled model
|
5 |
-
with open('./xgb_waze.pickle
|
6 |
model = pickle.load(file)
|
7 |
|
8 |
# Define the function for making predictions
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
# Load the pickled model
|
5 |
+
with open('./xgb_waze.pickle , 'rb') as file:
|
6 |
model = pickle.load(file)
|
7 |
|
8 |
# Define the function for making predictions
|