Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AlexDataMedWork
/
CarDamageUI
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
AlexDataMedWork
commited on
Feb 19
Commit
71820d4
·
verified
·
1 Parent(s):
5869edb
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+12
-0
app.py
ADDED
Viewed
@@ -0,0 +1,12 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
token = os.environ["HF_TOKEN"]
5
+
6
+
iface = gr.load(
7
+
name="alex18022003/CarDamageDemo",
8
+
src="spaces",
9
+
hf_token=token
10
+
)
11
+
12
+
iface.launch()