TypeError: 'int' object is not iterable
model.add(self.conv_2d(64, input_shape=self.input_shape, name='block1_conv1'))
I was passing an integer where I had to pass it as a tuple to input_shape
model.add(self.conv_2d(64, input_shape=(self.image_size, self.image_size, self.channel), name='block1_conv1'))
Let's see the reference properly.
Recommended Posts