Spaces:
Sleeping
Sleeping
update func
Browse files
app.py
CHANGED
@@ -12,8 +12,5 @@ def classify_image(img):
|
|
12 |
image = gr.inputs.Image(shape=(200,200))
|
13 |
label = gr.outputs.Label()
|
14 |
|
15 |
-
|
16 |
-
return "Hello " + name + "!!"
|
17 |
-
|
18 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
19 |
iface.launch(inline=False)
|
|
|
12 |
image = gr.inputs.Image(shape=(200,200))
|
13 |
label = gr.outputs.Label()
|
14 |
|
15 |
+
iface = gr.Interface(fn=classify_image, inputs="text", outputs="text")
|
|
|
|
|
|
|
16 |
iface.launch(inline=False)
|