Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ proc1=gr.Interface.load("models/Yntec/DreamAnything")
|
|
19 |
|
20 |
def restart_script_periodically():
|
21 |
while True:
|
22 |
-
random_time = random.randint(
|
23 |
time.sleep(random_time)
|
24 |
os.execl(sys.executable, sys.executable, *sys.argv)
|
25 |
|
@@ -128,6 +128,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
128 |
</body>
|
129 |
</div>
|
130 |
<p style="margin-bottom: 10px; color: #ffffff;">
|
|
|
131 |
Noise Level: Controls how much randomness is added to the input of the boxes after the first one before it is sent to the model, so you can get 6 unique 768x768 images. Higher noise level produces more diverse outputs, while lower noise level produces similar outputs,
|
132 |
<a href="https://twitter.com/DavidJohnstonxx/">original space created by Phenomenon1981</a>.
|
133 |
</p>
|
|
|
19 |
|
20 |
def restart_script_periodically():
|
21 |
while True:
|
22 |
+
random_time = random.randint(5400, 6000)
|
23 |
time.sleep(random_time)
|
24 |
os.execl(sys.executable, sys.executable, *sys.argv)
|
25 |
|
|
|
128 |
</body>
|
129 |
</div>
|
130 |
<p style="margin-bottom: 10px; color: #ffffff;">
|
131 |
+
If you have an idea, put it on the first box to expand it, if you have a full prompt, you can leave the first box empty and just put it on the second one and click generate images!
|
132 |
Noise Level: Controls how much randomness is added to the input of the boxes after the first one before it is sent to the model, so you can get 6 unique 768x768 images. Higher noise level produces more diverse outputs, while lower noise level produces similar outputs,
|
133 |
<a href="https://twitter.com/DavidJohnstonxx/">original space created by Phenomenon1981</a>.
|
134 |
</p>
|