File size: 176 Bytes
d1f08d3
 
22c0ce3
 
d1f08d3
02b1318
1
2
3
4
5
6
import gradio as gr

def sketch_recognition(img):
  return "hello"

iface = gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs="text").launch(cache_examples=False)