preload
Browse files
README.md
CHANGED
@@ -7,6 +7,9 @@ sdk: gradio
|
|
7 |
sdk_version: 4.19.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
7 |
sdk_version: 4.19.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
+
preload_from_hub:
|
11 |
+
- stabilityai/stable-diffusion-xl-base-1.0
|
12 |
+
- ByteDance/SDXL-Lightning sdxl_lightning_1step_unet_x0.safetensors
|
13 |
---
|
14 |
|
15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -108,10 +108,10 @@ css = """
|
|
108 |
with gr.Blocks(css=css) as demo:
|
109 |
with gr.Column(elem_id="container"):
|
110 |
gr.Markdown(
|
111 |
-
"""
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
""",
|
116 |
elem_id="intro",
|
117 |
)
|
|
|
108 |
with gr.Blocks(css=css) as demo:
|
109 |
with gr.Column(elem_id="container"):
|
110 |
gr.Markdown(
|
111 |
+
"""
|
112 |
+
# SDXL-Lightning- Text To Image 1-Step
|
113 |
+
## Unofficial Demo
|
114 |
+
**Model**: https://huggingface.co/ByteDance/SDXL-Lightning
|
115 |
""",
|
116 |
elem_id="intro",
|
117 |
)
|