Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chris999
/
Ghost_in_the_machine
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
chris999
commited on
Sep 10, 2022
Commit
26e1d80
·
1 Parent(s):
2cb8253
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-1
app.py
CHANGED
Viewed
@@ -1 +1,5 @@
1
-
hello
world
1
+
import
gradio as gr
2
+
def segment(image):
3
+
pass # Implement your image segmentation model here...
4
+
5
+
gr.Interface(fn=segment, inputs="image", outputs="image").launch()