Sketch2Shoes / app.py
bhadresh-savani's picture
Update app.py
560b8c7
raw
history blame
229 Bytes
import gradio as gr
def sketch_to_shoes(img):
# Implement sketch recognition model here...
# Return labels and confidences as dictionary
iface = gr.Interface(fn=sketch_to_shoes, inputs="sketchpad", outputs="label").launch()