Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sujr
/
sujr-pix2struct-base
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sujr
commited on
Jul 3, 2023
Commit
4984038
·
1 Parent(s):
0219b02
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-1
app.py
CHANGED
Viewed
@@ -1,3 +1,6 @@
1
import gradio as gr
2
3
-
gr.Interface.load
(
"models/sujr/pix2struct-base"
)
.launch()
1
import gradio as gr
2
3
+
def run
(
image
)
:
4
+
pass
5
+
6
+
gr.Interface(fn=run, inputs="image", outputs="text").launch()