Update app.py
Browse files
app.py
CHANGED
@@ -365,6 +365,7 @@ def run_lora(prompt, cfg_scale, steps, selected_indices, lora_scale_1, lora_scal
|
|
365 |
with calculateDuration("Randomizing seed"):
|
366 |
if randomize_seed:
|
367 |
seed = random.randint(0, MAX_SEED)
|
|
|
368 |
|
369 |
image_generator = generate_image(prompt_mash, steps, seed, cfg_scale, width, height, progress)
|
370 |
|
|
|
365 |
with calculateDuration("Randomizing seed"):
|
366 |
if randomize_seed:
|
367 |
seed = random.randint(0, MAX_SEED)
|
368 |
+
print("Seed:", seed)
|
369 |
|
370 |
image_generator = generate_image(prompt_mash, steps, seed, cfg_scale, width, height, progress)
|
371 |
|