broken_gradio / app.py
osanseviero's picture
osanseviero HF staff
Update app.py
02b1318
raw
history blame contribute delete
No virus
176 Bytes
import gradio as gr
def sketch_recognition(img):
return "hello"
iface = gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs="text").launch(cache_examples=False)