-
-
Save camenduru/9ec5f8141db9902e375967e93250860f to your computer and use it in GitHub Desktop.
import math | |
import os | |
import sys | |
import traceback | |
import modules.scripts as scripts | |
import gradio as gr | |
from modules.processing import Processed, process_images | |
class Script(scripts.Script): | |
def title(self): | |
return "Run n times" | |
def ui(self, is_img2img): | |
n = gr.Textbox(label="n") | |
return [n] | |
def run(self, p, n): | |
for x in range(int(n)): | |
p.seed = -1 | |
proc = process_images(p) | |
image = proc.images | |
return Processed(p, image, p.seed, proc.info) |
user entering the value n
from the run n times
n = gr.Textbox(label="Run N times") no make sense "Allowed categories for random artists selection when using the Roll button" n
has no meaning please change that n
If you don't want to make the suggested change to your script that is fine. I will leave it as is in the Italian localization file. Regards.
this badboy is a real time saver. nice work, OP!
Great script!
Having more control over seed behaviour in img2img batch (and all the other modes) is really important. Hope this gets integrated into vanilla auto1111.
What should I put in the "n" item? I entered "5" to make it 5 times, but the seed value continues to increase by +1.
It works fine! Thanks!
The scrip ignores the manual output directory, and uses the default output folder of the SD webui dou
A bug is created when using the saved styles dropdown with this script. Each iteration includes another copy of the style, meaning that it gets copied over and over into the prompt, generating very weird results.
Since yesterday, I have found that using the script for batch generation and using ReActor, it no longer works for the batch. ReActor swaps the first image, but after that, it says "source not found".
23:22:34 - ReActor - ERROR - Cannot detect any Source
23:22:34 - ReActor - ERROR - Please provide a source face
Any idea what this could be?
A1111 1.7.0
Where should I place this document? When I put it under the scripts folder, there is no place to input the value of n in the interface. Help!
No, it's no a bug, it's that I wished to give to the "n" label a more meaningful translation in Italian, therefore I initially translated it as "Run N times" ("Esegui N volte"), which makes easier to understand its function.
The problem is that the label "n" is already used in the Settings and associated to the type of image under "Allowed categories for random artists selection when using the Roll button", therefore also that label get visualized as "Run N times" which doesn't make sense in that context. The only way I can rename the label without messing up with that one in the Settings is to have your label given a different value/name. I changed it inside your Python script and it worked perfectly, so I am suggesting you to modify your script at row 16 as follows:
OLD
n = gr.Textbox(label="n")
NEW
n = gr.Textbox(label="Run N times")
Hope now it's clearer.