Nitish Harsoor
Results
2
comments of
Nitish Harsoor
Hi Suraj, Let me know if this issue is fixed?
You need to load model weights after adding one Dense layer. Try this - densenet = tf.keras.applications.DenseNet121( include_top=False, weights=None, pooling='max',input_shape=(128,128,3) ) input_shape = (128,128,3) x = densenet.output predictions = Dense(16,...