remove debugging message

This commit is contained in:
Lincoln Stein 2022-09-04 08:23:11 -04:00
parent 3a2be621f3
commit fd7a72e147

View File

@ -388,7 +388,6 @@ class T2I:
if self.device.type == 'mps': if self.device.type == 'mps':
x_T = self._get_noise(init_latent,width,height) x_T = self._get_noise(init_latent,width,height)
# make_image will do the equivalent of get_noise itself # make_image will do the equivalent of get_noise itself
print(f' DEBUG: seed at make_image() invocation time ={seed}')
image = make_image(x_T) image = make_image(x_T)
results.append([image, seed]) results.append([image, seed])
if image_callback is not None: if image_callback is not None: