umair894 commited on
Commit
9eac8db
·
verified ·
1 Parent(s): 682f4a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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('/content/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
 
 
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