We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f20f0eb + a60f5e2 commit 485f509Copy full SHA for 485f509
deep_daze/deep_daze.py
@@ -400,7 +400,7 @@ def __init__(
400
self.start_image_lr = start_image_lr
401
if exists(start_image_path):
402
file = Path(start_image_path)
403
- assert file.exists(), f'file does not exist at given starting image path {self.start_image_path}'
+ assert file.exists(), f'file does not exist at given starting image path {start_image_path}'
404
image = Image.open(str(file))
405
start_img_transform = T.Compose([T.Resize(image_width),
406
T.CenterCrop((image_width, image_width)),
0 commit comments