I'm newbie with Tensorflow and Keras, and I'm migrating the following code:
Convolution2D(64, 5, 5, activation='relu', border_mode='same', dim_ordering='tf', name='conv1_1')(inputs)
The interpreter suggest me this code:
Conv2D(64, (5, 5), activation="relu", name="conv1_1", padding="same", data_format="channels_last")
My question is:
Is dim_ordering='tf'
the same as data_format="channels_last"
?