You are in the process of constructing a deep convolutional neural network (CNN). The CNN will be used for image classification.You notice that the CNN model you constructed displays hints of overfitting.You want to make sure that overfitting is minimized, and that the model is converged to an optimal fit.Which of the following is TRUE with regards to achieving your goal?
A. You have to add an additional dense layer with 512 input units, and reduce the amount of training data
B. You have to add L1/L2 regularization, and reduce the amount of training data
C. You have to reduce the amount of training data and make use of training data augmentation
D. You have to add L1/L2 regularization, and make use of training data augmentation
E. You have to add an additional dense layer with 512 input units, and add L1/L2 regularization