data-science-ipython-notebooks
data-science-ipython-notebooks copied to clipboard
Enhancement: Complete AlexNet Architecture with Additional Convolutional Layers (Issue 64)
This pull request enhances the alexnet.ipynb notebook by aligning its architecture with the standard AlexNet model. The following changes have been made:
- Added
conv4andconv5layers to extend the convolutional section, including pooling, normalization, and dropout for each. - Updated the
weightsandbiasesdictionaries to include parameters for the new layers. - Adjusted the input to the fully connected layers to match the output of the added
conv5layer.