Keras-ResNet-tutorial icon indicating copy to clipboard operation
Keras-ResNet-tutorial copied to clipboard

Results 4 Keras-ResNet-tutorial issues
Sort by recently updated
recently updated
newest added

i want start algrotihm with different "Learning Rate" value. For example 0.0001 or 0.1 but it is start with 0.001 learning rate value

![Screenshot (33)](https://user-images.githubusercontent.com/96210300/169386526-37b9c373-4ab1-442d-9fdd-80829c60829b.png) model = Sequential() model.add(tf.keras.layers.experimental.preprocessing.Rescaling(1./255)) model.add(Conv2D(filters=16, kernel_size=(3,3), padding='same', input_shape=(224, 224, 3))) model.add(Activation('relu')) model.add(BatchNormalization()) model.add(MaxPooling2D(pool_size=(2,2), strides=2, padding='valid')) model.add(Conv2D(filters=32, kernel_size=(3,3), padding='same')) model.add(Activation('relu')) model.add(BatchNormalization()) model.add(MaxPooling2D(pool_size=(2,2), strides=2, padding='valid')) model.add(Conv2D(filters=64, kernel_size=(3,3), padding='same')) model.add(Activation('relu')) model.add(BatchNormalization())...

Hi while splitting the dataset. I got this error. Can you guide me on how to resolve this? error Traceback (most recent call last) in 5 test_images = [TEST_DIR+i for...

Great work! Could you please share your conda environment?