Spaces:
Sleeping
Sleeping
input_img updated
Browse files
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(
|
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())
|