This repository contains an implementations of the Inception models developed by Google team
-
Inception V1 (GoogLeNet)
The GoogLeNet Inception V1 model is composed of several inception modules. Each inception module applies convolutional operations with different kernel sizes (1x1, 3x3, 5x5) and a 3x3 max pooling operation in parallel, concatenating their results. This allows the model to capture patterns at different scales. The
model also includes two auxiliary classifiers (output_1 and output_2) used during training to inject additional gradient at lower layers.
This project requires the following libraries:
- Keras
- TensorFlow
- OpenCV
- NumPy
-
Inception V1 (GoogLeNet)
The model is trained and tested on the CIFAR10 dataset, which is directly loaded from Keras datasets. The images in the dataset are resized to 224x224 pixels to match the input shape of the GoogLeNet Inception V1 model.
-
Inception V1 (GoogLeNet)
The model is compiled with the SGD optimizer and the categorical cross-entropy loss function. The learning rate is initially set to 0.01 and decays every 8 epochs. The model is trained for 1 epoch with a batch size of 256.
-
Inception V1 (GoogLeNet)
- Clone this repository.
- Run the Python script googLeNet_inceptionV1.py
- Szegedy, C., Liu, W., Jia, Y., Sermanet, P., Reed, S., Anguelov, D., ... & Rabinovich, A. (2015). Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 1-9).