Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bbfizp
/
LBRM
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Beltran Fiz
commited on
Feb 10
Commit
529bf77
·
1 Parent(s):
865374c
initial app test
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import os
2
+
import gradio as gr
3
+
4
+
read_key = os.environ.get('HF_TOKEN', None)
5
+
with gr.Blocks() as demo:
6
+
gr.load("<bbfizp/LBRCS", hf_token=read_key, src="spaces")
7
+
demo.launch(share=True)