You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 33-34 in util.py, function next batch if self.resize: im = np.stack([cv2.resize(im[:,:,i], (cfg.RESIZED_SIZE, cfg.RESIZED_SIZE)) for i in range(im.shape[2])], axis=2)
the image index I at line 30 is overwritten by this new looping variable i.
Please check.
Also, can you confirm if the generator is working for the PASCAL VOC dataset, I see non-realistic repeated patterns in the outputs when I ran the code?
The text was updated successfully, but these errors were encountered:
I tried restoring the model for generating images but it keeps showing me graph error related issue.
I am trying to generate mages from the model trained.
Line 33-34 in util.py, function next batch
if self.resize: im = np.stack([cv2.resize(im[:,:,i], (cfg.RESIZED_SIZE, cfg.RESIZED_SIZE)) for i in range(im.shape[2])], axis=2)
the image index I at line 30 is overwritten by this new looping variable i.
Please check.
Also, can you confirm if the generator is working for the PASCAL VOC dataset, I see non-realistic repeated patterns in the outputs when I ran the code?
The text was updated successfully, but these errors were encountered: