Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
masdar
/
Segmentasi_MRI_UBNet
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b29d3e5
Segmentasi_MRI_UBNet
/
app.py
masdar
create app.py
b29d3e5
almost 3 years ago
raw
Copy download link
history
blame
Safe
168 Bytes
import
gradio
as
gr
def
segment
(
image
):
pass
# Implement your image segmentation model here...
gr.Interface(fn=segment, inputs=
"image"
, outputs=
"image"
).launch()