mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 11:04:58 -05:00
* Fallback in case we don't have get_noise() (using the base class for some reason...)
This commit is contained in:
@@ -66,7 +66,10 @@ class Generator():
|
||||
x_T = initial_noise
|
||||
else:
|
||||
seed_everything(seed)
|
||||
x_T = self.get_noise(width,height)
|
||||
try:
|
||||
x_T = self.get_noise(width,height)
|
||||
except:
|
||||
pass
|
||||
|
||||
image = make_image(x_T)
|
||||
results.append([image, seed])
|
||||
|
||||
Reference in New Issue
Block a user