bhadresh-savani commited on
Commit
560b8c7
1 Parent(s): 06beb0a

Update app.py

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