Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JoPmt
/
Grad_ver_tst_app_not_rq
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
859c236
Grad_ver_tst_app_not_rq
/
app.py
JoPmt
Create app.py
859c236
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
gradio
as
gr
def
plex
(
image
):
image=image
return
"hello"
, image
iface=gr.Interface(fn=plex,inputs=
"image"
,outputs=[
"text"
,
"image"
])
iface.launch()