Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chansung
/
tf-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
chansung
commited on
Sep 4, 2023
Commit
2d12939
·
1 Parent(s):
8b01d48
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.Markdown("hello world")
5
+
6
+
7
+
demo.launch()