pix2pix
pix2pix copied to clipboard
This project uses a conditional generative adversarial network (cGAN) named Pix2Pix for the Image to image translation task.
Results
1
pix2pix issues
Sort by
recently updated
recently updated
newest added
this code in the notebook: `# loading the data into numpy arrays source_image_path = "../data/preprocessed_data/source.npy" target_image_path = "../data/preprocessed_data/target.npy" source = np.load(source_image_path) target = np.load(target_image_path)` yields this: `FileNotFoundError: [Errno 2] No...