bbaros

Results 1 comments of bbaros

For tensorflow_2 branch, added following code to cycleGAN.py before CycleGAN class definition: ``` import tensorflow as tf from tensorflow.keras.layers import Layer class ReflectionPadding2D(Layer): def __init__(self, padding=(1, 1), **kwargs): self.padding =...