step 2:
split dataset training 80% & validation 20%
lenet model CNN I use 6 layers first layer
Conv2D(filters=6, kernel_size=5, strides=1, padding=‘same’, activation=‘relu’),
BatchNormalization(),
MaxPool2D(pool_size=2, strides=2), last layer
It is a clear indication that the model has overfitted to the training data.Try to check for class imabalance ((from ROC curve, we could see the difference in the classes) , increasing the training data, use few more augmentation techniques increase the traing data, use K-fold cross validation technique to avoid the overfitting, use regularization suchs as drop out,try to find out the best parameters suits for your data set by using hyper parameter tuning.
After 25 epochs, the traing loss/accuracy and validation loss/accuracy was constant, it’s clear that model is overfitting with limited training data.
@Palak_Talreja it looks like you have been working on this for some time already.
The model you shared above has more layers / is more more complex than the one you showed some weeks ago, if I remember well.
Aside the technical tricks suggested by @Laxma_Reddy_Patlolla you can try out (trial-and-error), maybe you can also take a more “theoretical” approach, that is studying again the research papers describing the models you use and see what is different in your actual setup e.g. purpose, number of classes, implementation tools (TF?), dataset size, etc… (I don’t know at all that litterature, I have to say…).