Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lunarflu
/
nfaa-space-test
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
lunarflu
HF staff
commited on
Oct 11, 2023
Commit
a929dbd
·
1 Parent(s):
c3c12dc
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-1
app.py
CHANGED
Viewed
@@ -1 +1,11 @@
1
-
#
test
1
+
import
os
2
+
import random
3
+
import threading
4
+
5
+
import gradio as gr
6
+
7
+
with gr.Blocks() as demo:
8
+
gr.Markdown("""
9
+
# NFAA test
10
+
""")
11
+
demo.launch()