DL_EX-8
DL_EX-8
Introduction
The main content of this exercise will present how the AlexNet Convolutional Neural
Network(CNN) architecture is implemented using TensorFlow and Keras.
Here are some of the key learning objectives from this article:
AlexNet CNN is probably one of the simplest methods to approach understanding deep learning
concepts and techniques.
AlexNet is not a complicated architecture when it is compared with some state of the art CNN
architectures that have emerged in the more recent years.
AlexNet is simple enough for beginners and intermediate deep learning practitioners to pick up
some good practices on model implementation techniques.
Python Code :
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Conv2D, MaxPooling2D, Flatten, Dense,
Dropout
# Output Layer
Dense(num_classes, activation='softmax')
])
return model
=================================================================
Total params: 62378344 (237.95 MB)
Trainable params: 62378344 (237.95 MB)
Non-trainable params: 0 (0.00 Byte)