You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Practiced basic Deeplearning skills, especially in field of Computer Vision, mainly using Keras
Conv_Practice_01
Basic practice of using Conv2D layer, Pooling
Creating basic CNN Model
Preprocessing Fashion MNIST data and model training
O = (I - F + 2P)/2 + 1 Formula
CIFAR10_Custom
Visualisation of CIFAR10 dataset
Data preprocessing
Recognised the difference of 'sparse_categorical_crossentropy' and 'categorical_crossentropy'
Tried He Normal instead of the basic weight initialisation of Keras, glorot_uniform
Tried Batch Normalisation and shuffle
CIFAR10_Custom_CB_GAP_WR
Tried to use some Callbacks; ReduceLROnPlateau for the dynamic change in Learning rate and EarlyStopping to avoid overfitting
Tried Global Average Pooling, instead of Flatten. (A stage of Flatten layer -> Classification Dense Layer requires a lot of parameters, and it increases a chance of overfitting and increase of training time)
Tried l1, l2, l1_l2 weight regularisations per each layer by using tensorflow.keras.regularizers
ImageDataGenerator_Aug
Practiced some augmentations with ImageDataGenerator