Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Antonio49
/
Personal
like
1
Question Answering
Transformers
Safetensors
Spanish
bert
Inference Endpoints
arxiv:
1910.09700
License:
mit
Model card
Files
Files and versions
Community
Train
Deploy
Use this model
Antonio49
commited on
Oct 7, 2023
Commit
5d39faf
•
1 Parent(s):
a7bc7e9
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -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()