Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -37,6 +37,7 @@ max_images = 6
|
|
37 |
inference_timeout = 300
|
38 |
default_models = models[:num_models]
|
39 |
MAX_SEED = 2**32-1
|
|
|
40 |
|
41 |
|
42 |
def extend_choices(choices):
|
@@ -83,9 +84,8 @@ async def infer(model_str, prompt, nprompt="", height=0, width=0, steps=0, cfg=0
|
|
83 |
if task.done() and result is not None and not isinstance(result, tuple):
|
84 |
with lock:
|
85 |
# png_path = "img.png"
|
86 |
-
png_path = get_current_time() + ".png"
|
87 |
-
|
88 |
-
get_current_time()
|
89 |
image = save_image(result, png_path, model_str, prompt, nprompt, height, width, steps, cfg, seed)
|
90 |
return image
|
91 |
return None
|
|
|
37 |
inference_timeout = 300
|
38 |
default_models = models[:num_models]
|
39 |
MAX_SEED = 2**32-1
|
40 |
+
loopcounter = 1
|
41 |
|
42 |
|
43 |
def extend_choices(choices):
|
|
|
84 |
if task.done() and result is not None and not isinstance(result, tuple):
|
85 |
with lock:
|
86 |
# png_path = "img.png"
|
87 |
+
png_path = get_current_time() + "_" + loopcounter + ".png"
|
88 |
+
loopcounter += 1
|
|
|
89 |
image = save_image(result, png_path, model_str, prompt, nprompt, height, width, steps, cfg, seed)
|
90 |
return image
|
91 |
return None
|