aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-16 10:04:07 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-09-16 10:04:07 +0300
commitb8cf2ea8ea50da7084061895e5af7b22c37633c0 (patch)
tree22b9010fce8ce04a6a176c5c828dea031344213b
parent83bce1a604f40356583d31c8c0b2f8b590dda071 (diff)
add a bit of a comment about what's being done with tensor noise
-rw-r--r--modules/processing.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 798313ee..81c83f06 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -122,6 +122,10 @@ def slerp(val, low, high):
def create_random_tensors(shape, seeds, subseeds=None, subseed_strength=0.0, seed_resize_from_h=0, seed_resize_from_w=0, p=None):
xs = []
+ # if we have multiple seeds, this means we are working with batch size>1; this then
+ # enables the generation of additional tensors with noise that the sampler will use during its processing.
+ # Using those pre-genrated tensors instead of siimple torch.randn allows a batch with seeds [100, 101] to
+ # produce the same images as with two batches [100], [101].
if p is not None and p.sampler is not None and len(seeds) > 1 and opts.enable_batch_seeds:
sampler_noises = [[] for _ in range(p.sampler.number_of_needed_noises(p))]
else: