Spaces:
Runtime error
Runtime error
Commit
·
560b8c7
1
Parent(s):
06beb0a
Update app.py
Browse files
app.py
CHANGED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def sketch_to_shoes(img):
|
4 |
+
# Implement sketch recognition model here...
|
5 |
+
# Return labels and confidences as dictionary
|
6 |
+
|
7 |
+
iface = gr.Interface(fn=sketch_to_shoes, inputs="sketchpad", outputs="label").launch()
|