Personal / app.py
Antonio49's picture
Create app.py
5d39faf
raw
history blame
190 Bytes
import gradio as gr
def sketch_recognition(img):
pass # Implement your sketch recognition model here...
gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs="label").launch()