Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
callum-canavan
/
Multi-View-Illusion-Diffusion
like
1
Paused
App
Files
Files
Community
callum-canavan
commited on
Dec 1, 2023
Commit
9d178f2
·
1 Parent(s):
5df65f9
Add app
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()