Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Albert-NHWang
/
Depth-Anywhere-App
like
23
Running
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
Albert-NHWang
commited on
Jun 13, 2024
Commit
d1ed867
·
verified
·
1 Parent(s):
ed724e1
create app.py
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
+
5
+
read_key = os.environ.get('HUGGINGFACE_TOKEN', None)
6
+
demo = gr.load("Albert-NHWang/Depth-Anywhere", hf_token=read_key, src="spaces")
7
+
demo.launch()