Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import gradio as gr
|
|
5 |
|
6 |
def greet(one,two, three, four, five, six, seven, eight):
|
7 |
# load the model from disk
|
8 |
-
loaded_model = joblib.load('
|
9 |
result = loaded_model.predict([[float(one),float(two), float(three), float(four), float(five), float(six), float(seven), float(eight)]])
|
10 |
return str(result)
|
11 |
|
|
|
5 |
|
6 |
def greet(one,two, three, four, five, six, seven, eight):
|
7 |
# load the model from disk
|
8 |
+
loaded_model = joblib.load('finalized_model.sav')
|
9 |
result = loaded_model.predict([[float(one),float(two), float(three), float(four), float(five), float(six), float(seven), float(eight)]])
|
10 |
return str(result)
|
11 |
|