Merge branch 'AUTOMATIC1111:master' into #1484_fix_empty_styles_pattern

This commit is contained in:
RnDMonkey 2022-10-02 22:22:14 -07:00 committed by GitHub
commit 80c418c0d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,7 @@ class VanillaStableDiffusionSampler:
return res
def initialize(self, p):
self.eta = p.eta or opts.eta_ddim
self.eta = p.eta if p.eta is not None else opts.eta_ddim
for fieldname in ['p_sample_ddim', 'p_sample_plms']:
if hasattr(self.sampler, fieldname):