SanskarModi commited on
Commit
bb38244
·
1 Parent(s): 8f9a2a6

updated demo img url

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. src/sdgen/ui/layout.py +5 -1
README.md CHANGED
@@ -7,7 +7,7 @@ sdk_version: 6.0.2
7
 
8
  # Stable Diffusion Image Generator Toolkit
9
 
10
- ![appdemo](https://huggingface.co/spaces/SanskarModi/sd-image-gen-toolkit/blob/main/demo.png)
11
 
12
  A modular image generation system built on **HuggingFace Diffusers**, with support for multiple Stable Diffusion pipelines, configurable inference parameters, a clean **Gradio UI**, and a lightweight local **history/metadata store**.
13
 
 
7
 
8
  # Stable Diffusion Image Generator Toolkit
9
 
10
+ ![appdemo](https://drive.google.com/uc?export=view&id=1B2AJT_MB-3U9Uw9f-fzhJmVHZYgPBuCm)
11
 
12
  A modular image generation system built on **HuggingFace Diffusers**, with support for multiple Stable Diffusion pipelines, configurable inference parameters, a clean **Gradio UI**, and a lightweight local **history/metadata store**.
13
 
src/sdgen/ui/layout.py CHANGED
@@ -213,7 +213,11 @@ on the Model selceted and applied settings."
213
  value="SD1.5",
214
  label="Model",
215
  )
216
- gr.Markdown("Use Turbo model if you prefer speed over quality.")
 
 
 
 
217
 
218
  txt_controls = build_txt2img_tab(
219
  make_txt2img_handler(model_choice.value, txt2img_pipes),
 
213
  value="SD1.5",
214
  label="Model",
215
  )
216
+ gr.Markdown(
217
+ "Use Turbo model if you prefer speed over quality. \
218
+ SD1.5 produces much better results but takes 10 minutes on average \
219
+ for generation on HF Spaces."
220
+ )
221
 
222
  txt_controls = build_txt2img_tab(
223
  make_txt2img_handler(model_choice.value, txt2img_pipes),