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
Creating a new axis for rgb is fine, but you could automatically implement this with a 2D Convolution. This is the example in keras:
input_tensor = Input(shape=(128,128,1) )
x = Conv2D(3,(3,3),padding='same',activation='relu')(input_tensor)
The text was updated successfully, but these errors were encountered:
Creating a new axis for rgb is fine, but you could automatically implement this with a 2D Convolution. This is the example in keras:
input_tensor = Input(shape=(128,128,1) )
x = Conv2D(3,(3,3),padding='same',activation='relu')(input_tensor)
The text was updated successfully, but these errors were encountered: