guru001 commited on
Commit
d7579e3
1 Parent(s): 362b630

input_img updated

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from model import api
5
  sign_api = api()
6
 
7
  def sign(input_img):
8
- prediction = sign_api.predict(image)
9
  return prediction
10
 
11
  demo = gr.Interface(sign,inputs=gr.Image(shape=(200, 200)), outputs=gr.Label())
 
5
  sign_api = api()
6
 
7
  def sign(input_img):
8
+ prediction = sign_api.predict(input_img)
9
  return prediction
10
 
11
  demo = gr.Interface(sign,inputs=gr.Image(shape=(200, 200)), outputs=gr.Label())