Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ pipe.unload_lora_weights()
|
|
42 |
|
43 |
# Memory optimizations
|
44 |
pipe.transformer.to(memory_format=torch.channels_last)
|
45 |
-
pipe.
|
46 |
|
47 |
# CUDA Graph setup
|
48 |
static_inputs = None
|
@@ -159,7 +159,7 @@ with gr.Blocks() as demo:
|
|
159 |
gr.Markdown("<span style='color: red;'>Note: Sometimes it stucks or stops generating images (I don't know why). In that situation just refresh the site.</span>")
|
160 |
|
161 |
with gr.Row():
|
162 |
-
with gr.Column(scale=2
|
163 |
result = gr.Image(label="Generated Image", show_label=False, interactive=False)
|
164 |
with gr.Column(scale=1):
|
165 |
prompt = gr.Text(
|
@@ -192,7 +192,8 @@ with gr.Blocks() as demo:
|
|
192 |
fn=generate_image,
|
193 |
inputs=[prompt],
|
194 |
outputs=[result, seed, latency],
|
195 |
-
cache_examples=
|
|
|
196 |
)
|
197 |
|
198 |
enhanceBtn.click(
|
@@ -252,4 +253,4 @@ with gr.Blocks() as demo:
|
|
252 |
)
|
253 |
|
254 |
# Launch the app
|
255 |
-
demo.queue(max_size=5
|
|
|
42 |
|
43 |
# Memory optimizations
|
44 |
pipe.transformer.to(memory_format=torch.channels_last)
|
45 |
+
pipe.enable_xformers_memory_efficient_attention()
|
46 |
|
47 |
# CUDA Graph setup
|
48 |
static_inputs = None
|
|
|
159 |
gr.Markdown("<span style='color: red;'>Note: Sometimes it stucks or stops generating images (I don't know why). In that situation just refresh the site.</span>")
|
160 |
|
161 |
with gr.Row():
|
162 |
+
with gr.Column(scale=2): # Changed scale to 2
|
163 |
result = gr.Image(label="Generated Image", show_label=False, interactive=False)
|
164 |
with gr.Column(scale=1):
|
165 |
prompt = gr.Text(
|
|
|
192 |
fn=generate_image,
|
193 |
inputs=[prompt],
|
194 |
outputs=[result, seed, latency],
|
195 |
+
cache_examples=True, # Changed cache_examples
|
196 |
+
cache_mode="lazy" # Added cache_mode
|
197 |
)
|
198 |
|
199 |
enhanceBtn.click(
|
|
|
253 |
)
|
254 |
|
255 |
# Launch the app
|
256 |
+
demo.queue(max_size=5).launch() # Removed concurrency_count
|