Antonio49 commited on
Commit
5d39faf
1 Parent(s): a7bc7e9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ def sketch_recognition(img):
3
+ pass # Implement your sketch recognition model here...
4
+
5
+ gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs="label").launch()