TL;DR
This paper introduces the Inception Recurrent Convolutional Neural Network (IRCNN), a novel deep learning architecture that combines inception modules with recurrent layers, demonstrating improved recognition accuracy on multiple benchmark datasets.
Contribution
The paper presents a new IRCNN model that integrates inception and recurrent layers, showing superior performance over existing DCNN architectures on standard datasets.
Findings
IRCNN achieves comparable or higher accuracy than existing DCNNs.
IRCNN outperforms RCNN, Inception, and Inception-Residual Networks on CIFAR-100.
IRCNN shows 2.54% to 3.5% improvement in classification accuracy.
Abstract
Deep convolutional neural networks (DCNNs) are an influential tool for solving various problems in the machine learning and computer vision fields. In this paper, we introduce a new deep learning model called an Inception- Recurrent Convolutional Neural Network (IRCNN), which utilizes the power of an inception network combined with recurrent layers in DCNN architecture. We have empirically evaluated the recognition performance of the proposed IRCNN model using different benchmark datasets such as MNIST, CIFAR-10, CIFAR- 100, and SVHN. Experimental results show similar or higher recognition accuracy when compared to most of the popular DCNNs including the RCNN. Furthermore, we have investigated IRCNN performance against equivalent Inception Networks and Inception-Residual Networks using the CIFAR-100 dataset. We report about 3.5%, 3.47% and 2.54% improvement in classification accuracy…
| Methods | MNIST | C10 | C10+ | C100 | C100+ | SVHN |
| Maxout(Goodfellow et al., 2013) | 0.45 | 11.6 | 9.38 | - | 38.57 | 2.47 |
| NiN(Lin et al., 2013) | 0.47 | 10.4 | 8.81 | 35.68 | - | 2.35 |
| DSN(Lee et al., 2015) | 0.39 | 9.69 | 7.97 | - | 34.57 | 1.93 |
| CNN+Probout(Springenberg & Riedmiller, 2013) | - | 9.39 | - | - | 38.14 | 2.39 |
| All-Conv.(Springenberg et al., 2014) | - | 9.08 | 7.25 | - | 33.71 | - |
| Highway Net. (Srivastava et al., 2015) | - | - | 7.72 | - | 32.24 | - |
| RCNN(Liang & Hu, 2015) | 0.31 | 8.69 | 7.09 | - | 31.75 | 1.77 |
| dasNet(Stollenga et al., 2014) | - | - | 9.22 | - | 33.78 | - |
| FitNet(Romero et al., 2014) | - | - | 8.39 | - | 35.04 | - |
| Drop-connect(Wan et al., 2013) | 1.12 | - | 9.41 | - | - | 1.94 |
| CNN+Tree(Srivastava & Salakhutdinov, 2013) | - | - | - | - | 36.85 | - |
| IRCNN+SGD | 0.32 | 8.41 | 7.37 | 34.13 | 31.22 | 1.89 |
| IRCNN+LSUV+EVE | 0.29 | 8.17 | 7.11 | 30.87 | 28.24 | 1.74 |
| Model | Dataset | Time (in Sec.) |
|---|---|---|
| IRCNN | MNIST | 112 |
| IRCNN | CIFAR-10 | 418 |
| IRCNN | CIFAR-100 | 422 |
| IRCNN | SVHN | 610 |
| EIN | CIFAR-100 | 425 |
| EIRN | CIFAR-100 | 426 |
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
MethodsDiffusion-Convolutional Neural Networks
Inception Recurrent Convolutional Neural Network for Object Recognition
Md Zahangir Alom
University of Dayton, Dayton, OH, USA
Mahmudul Hasan
Comcast Labs, Washington, DC, USA
Chris Yakopcic
University of Dayton, Dayton, OH, USA
Tarek M. Taha
University of Dayton, Dayton, OH, USA
Abstract
Deep convolutional neural networks (DCNNs) are an influential tool for solving various problems in the machine learning and computer vision fields. In this paper, we introduce a new deep learning model called an Inception-Recurrent Convolutional Neural Network (IRCNN), which utilizes the power of an inception network combined with recurrent layers in DCNN architecture. We have empirically evaluated the recognition performance of the proposed IRCNN model using different benchmark datasets such as MNIST, CIFAR-10, CIFAR-100, and SVHN. Experimental results show similar or higher recognition accuracy when compared to most of the popular DCNNs including the RCNN. Furthermore, we have investigated IRCNN performance against equivalent Inception Networks and Inception-Residual Networks using the CIFAR-100 dataset. We report about 3.5%, 3.47% and 2.54% improvement in classification accuracy when compared to the RCNN, equivalent Inception Networks, and Inception-Residual Networks on the augmented CIFAR-100 dataset respectively.
deep learning, inception network, object recognition
1 Introduction
In recent years, deep learning using Convolutional Neural Networks (CNNs) has shown enormous success in the field of machine learning and computer vision. CNNs provide state-of-the-art accuracy in various image recognition tasks including object recognition (Schmidhuber, 2015; Krizhevsky et al., 2012; Simonyan & Zisserman, 2014; Szegedy et al., 2015), object detection (Girshick et al., 2014), tracking (Wang et al., 2015), and image captioning (Xu et al., 2014). In addition, this technique has been applied massively in computer vision tasks such as video representation and classification of human activity (Ballas et al., 2015). Machine translation and natural language processing are applied deep learning techniques that show great success in this domain (Collobert & Weston, 2008; Manning et al., 2014). Furthermore, this technique has been used extensively in the field of speech recognition (Hinton et al., 2012). Moreover, deep learning is not limited to signal, natural language, image, and video processing tasks, it has been applying successfully for game development (Mnih et al., 2013; Lillicrap et al., 2015). There is a lot of ongoing research for developing even better performance and improving the training process of DCNNs (Lin et al., 2013; Springenberg et al., 2014; Goodfellow et al., 2013; Ioffe & Szegedy, 2015; Zeiler & Fergus, 2013).
In some cases, machine intelligence shows better performance compared to human intelligence including calculation, chess, memory, and pattern matching. On the other hand, human intelligence still provides better performance in other fields such as object recognition, scene understanding, and more. Deep learning techniques (DCNNs in particular) perform very well in the domains of detection, classification, and scene understanding. There is a still a gap that must be closed before human level intelligence is reached when performing visual recognition tasks. Machine intelligence may open an opportunity to build a system that can process visual information the way that a human brain does. According to the study on the visual processing system within a human brain by James DiCarlo et al. (Zoccolan & Rust, 2012) the brain consists of several visual processing units starting with the visual cortex (V1), continuing through the extrastriate areas v2, v4, the PIT (Posterior Inferotemporal Area) cortex, and finally the AIT (Anterior Inferotemporal Area) cortex which is shown in Figure 1. It can be clearly seen that the visual cortex of the human brain processes information recurrently in different visual units. The recurrent connectivity of synapses in the human brain plays a big role in context modeling for visual recognition tasks (Zoccolan & Rust, 2012; Liang & Hu, 2015).
If we observe the architecture of recently developed DCNN models, most of them incorporate many components similar to that of the human visual information processing system for recognition tasks (Krizhevsky et al., 2012; Szegedy et al., 2015).
However, the concept of recurrence in the visual cortex is only included in few DCNN models such as the Recurrent Convolutional Neural Network (RCNN) (Liang & Hu, 2015), and a CNN with LSTM for visual description (Donahue et al., 2015). Additionally, Inception-V4 (Szegedy et al., 2016a), and Residual (He et al., 2016b) architectures are popular among the computer vision community. The intension of most recently developed DCNNs is to use Inception and Residual networks to implement larger deep networks. As the model becomes larger and deeper, the computational parameters of the architecture are increased dramatically. As a result, training the model becomes increasingly complex and thus, more computationally expensive. It is very challenging to include a recurrent property within popular Inception architectures, but recurrence is essential for improving the overall training and testing accuracy with fewer computational parameters. Others are trying to implement bigger and deeper DCNN architectures like GoogleNet (Szegedy et al., 2015), or a residual network with 1001 layers (He et al., 2016a) that achieves high recognition accuracy on different benchmark datasets. However, we are presenting an improved version of the DCNN model inspired by the information processing mechanisms of the human visual cortex, and recently developed some promising DCNN architectures like Inception-v4 (Szegedy et al., 2016a), and RCNN (Liang & Hu, 2015). Therefore, we call this model the Inception Recurrent Convolutional Neural Network (IRCNN). This model not only ensures better recognition accuracy with fewer computational parameters against the state-of-the-art DCNN architectures, but also helps to improve the overall training process of the deep learning approach. This proposed architecture generalizes both Inception networks and RCNN models. The contributions of this work are as follows:
- •
A new deep learning model called IRCNN is proposed.
- •
Experimental evaluation of the proposed learning model’s performance against different DCNN architectures on different benchmark datasets such as MNIST, CIFAR-10, CIFAR-100 and SVHN.
- •
Empirical investigation of the impact of the recurrent layer in the Inception Network.
2 Related work
The deep learning revolution began in 1998 with (LeCun et al., 1998). From then on, several different architectures have been proposed that have shown massive success using many different benchmark datasets including MNIST, SVHN, CIFAR-10, CIFAR-100, ImageNet, and many more. Of the DCNN architectures, AlexNet (Krizhevsky et al., 2012), VGG (Simonyan & Zisserman, 2014), NiN (Lin et al., 2013), the All Convolutional Network (Springenberg et al., 2014), GoogleNet (Szegedy et al., 2015), Inception-v4 (He et al., 2016a; Szegedy et al., 2016a), and Residual Networks(He et al., 2016b) can be considered the most popular architectures due to their improved performance on different benchmarks for object classification. In 2012, Alex Krizhevesky et al. proposed an improved version of a CNN model compared to LeNet (LeCun et al., 1998), and won the ImageNet Large Scale Visual Recognition Challenge (ILSVRC) in 2012. This was a significant breakthrough in the field of machine learning and computer vision, as this was the first time a deep network outperformed the alternative approaches for visual recognition tasks. GoogleNet, or Inception-v1 (Szegedy et al., 2015), and the Residual Network (He et al., 2016b) won ILSVRC in 2014 and 2015 respectively. Inception architecture has become very popular in the deep learning and computer vision community, and has been refined in several ways. The improved versions of Inception networks with batch normalization (Ioffe & Szegedy, 2015) (Inception-v2) were proposed by Ioffe et al. Later, an Inception network (Inception-v3) was proposed with factorization ideas in (Szegedy et al., 2016b).
In most cases, the improvement of deep learning approaches has been due to the development of the following components: Initialization techniques of DCNNs (Mishkin & Matas, 2015), new deep network architectures (Chen et al., 2015a; Shankar et al., 2016), optimized network structures (depending upon computational parameters) (Szegedy et al., 2016b; Iandola et al., 2016), deeper and wider deep networks (Urban et al., 2016; Zagoruyko & Komodakis, 2016), activation functions (Clevert et al., 2015), and optimization methods for training DCNNs (Koushik & Hayashi, 2016; Ngiam et al., 2011). Some researchers have been focusing on design alternatives that produce the same level of recognition accuracy as state-of-the-art architectures (like Inception-V4 with Residual Net (Szegedy et al., 2016a)) with fewer computational parameters (Iandola et al., 2016).
Currently, most researches have been focused on improving the recognition accuracy of DCNN models. Very little research has been conducted on recurrent architectures within convolutional neural networks. The recurrent strategy is very important for context modeling from input samples. In 2015, Ming et al (Liang & Hu, 2015) proposed a RCNN structure for the first time that dealt with object recognition tasks. The architecture consists of several blocks of recurrent convolutional layers followed by a max-pooling layer. In the second to last layer of the structure global max-pooling is used, which is followed by a soft-max layer at the end. This architecture showed state-of-the-art accuracy for object classification at the time (Liang & Hu, 2015; Pinheiro & Collobert, 2014). The Long-term Recurrent Convolutional Network (LRCN) was proposed for visual recognition and description by Jeff et al. This architecture uses a combination of two popular techniques, CNN and LSTM. The features are extracted through the CNN, and LSTM is applied to identify how features vary with respect to time. This model shows outstanding performance for visual description (Donahue et al., 2015). From the above discussion, it can be concluded that DCNNs with improved architectures are showing enormous achievement when performing visual recognition tasks.
3 Inception-Recurrent Convolutional Neural Networks (IRCNN)
The proposed architecture (IRCNN) builds on several recent developments in deep learning architectures, including Inception Nets (Szegedy et al., 2016b) and RCNNs (Liang & Hu, 2015). It tries to reduce the number of computational parameters, while providing better recognition accuracy. As shown in Figure 2, the IRCNN architecture consists of general convolution layers, IRCNN blocks, transaction blocks, and a softmax logistic regression layer. One of the most novel features of this work is the introduction of recurrence into the Inception module, as shown in the IRCNN block in Figure 3. The key feature of Inception-v4 [Szeged al et. 2015] is that it concatenates the outputs of multiple differently sized convolutional kernels in the inception block (Szegedy et al., 2016a, b). Inception-v4 is a simplified version of Inception-v3 model, using lower rank filters for convolution. Inception-v4 however combines Residual concepts with Inception networks to improve the overall accuracy over Inception-v3. The outputs of the inception layers are added to the inputs of the Inception-Residual module. In this work, we utilize the inception concepts from Inception-v4.
The IRCNN block, performs recurrent convolution operations on different sized kernels (see Figure 3). In the recurrent structure, the inputs to the next time step are the sums of the convolutional outputs of the present time step and previous time steps. The same operations are repeated based on the time steps considered. As the input and output dimensions do not change, this is simply an accumulation of feature maps with respect to the time step considered. This helps to strengthen the extraction of the target features. As shown in Figure 3, an average pooling operation is applied before the recurrent convolution layer. In this particular pooling layer, average pooling with stride is applied by keeping the border size the same, resulting in output samples with the same dimensions as the inputs. The overlapping average pooling technique helps in the regularization of the network (Krizhevsky et al., 2012).
The operations of each Recurrent Convolution Layer (RCL) in the IRCNN block are similar to operations in (Liang & Hu, 2015). To describe these operations, consider a pixel collated at of a particular input sample on the feature map in the RCL. This is the output at time step . The output can be expressed as:
[TABLE]
Here and are the inputs for a standard convolutional layer and an RCL respectively. and are the weights for the standard convolutional layer and the RCL respectively, and is the bias. The final output for the layer at time step is:
[TABLE]
where is the standard Rectified Linear Unit (ReLU) activation function. The Local Response Normalization (LRN) function is applied to the outputs of the IRCNN-block(Krizhevsky et al., 2012).
[TABLE]
The outputs of the IRCNN block with respect to the different kernel sizes and average pooling operations are defined as ,, and . The final output of the IRCNN-block can be described as:
[TABLE]
Here represents the concatenation operation with respect to the channel axis of the output samples. The outputs of the IRCNN-block become the inputs that are fed into the transaction layer.
In the transaction block, three operations (convolution, pooling, and drop-out) are performed depending upon the placement of the block in the network. According to Figure 2, we have applied all of the operations in the very first transaction block; whereas in the second transaction block, we have only used convolution with dropout operations. The third transaction block consists of convolution, global-average pooling, and drop-out layers. The global-average pooling layer is used as an alternative to a fully connected layer. There are several advantages of a global-average pooling layer. Firstly, it is very close in operation to convolution, hence enforcing correspondence between feature maps and categories. The feature maps can be easily interpreted as class confidence. Secondly, it does not need computational parameters, thus helping to avoid overfitting of the network. The softmax layer is used at the end of the IRCNN architecture. Late use of the pooling layer is advantageous because it increases the number of non-linear hidden layers in the network. Therefore, we have applied only two special pooling layers in this architecture. The max-pooling layers perform operations with a patch and a stride over the input samples. Since the non-overlapping max-pooling operation has a negative impact on model regularization, we used overlapped max-pooling for regularizing the network. This is very important for training a deep network architecture (Krizhevsky et al., 2012). Special pooling is carried out with the max-pooling layer in the middle of the network (not all transaction blocks have pooling layer). Eventually, a global- average pooling layer is used at the very end before a softmax logistic regression layer. To keep the number of computational parameters low compared to other traditional DCNN approaches like AlexNet (Krizhevsky et al., 2012) and VGGNet(Simonyan & Zisserman, 2014), we have used only and convolutional filters in this implementation (inspired by the NiN (Lin et al., 2013) and Squeeze Net (Iandola et al., 2016) models). There are significant benefits to using smaller sized kernels, such the ability to incorporate more non-linearity in the network. For example: we can use a stack of two respective fields (without placing any pooling layer in between) as a replacement for one ; and a stack of three respective fields instead of a (Simonyan & Zisserman, 2014). The benefit of adding a filter is that it helps to increase the non-linearity of the decision function without having any impact on the convolution layer. Since the size of the input and output features do not change in the IRCNN blocks, it is just a linear projection on the same dimension with non-linearity added using a ReLU. We have used a dropout of 0.5 after each convolutional layer in the IRCNN-block. Finally, we have used a soft-max or a normalized exponential function (Bishop, 2006) layer at the end of the architecture. For an input sample and a weight vector , and distinct linear functions the softmax operation can be defined for class as follows:
[TABLE]
4 Experiments
We have evaluated the proposed IRCNN method (as well as several others for comparison) with a set of experiments on different benchmark datasets: MNIST (Kussul & Baidyk, 2004), Cifar-10 (Krizhevsky & Hinton, 2009), Cifar-100 (Krizhevsky & Hinton, 2009), and SVHN (Netzer et al., 2011). The entire experiment has been conducted on a Linux environment with Keras (Chollet, 2016) and Theano (Bastien et al., 2012) in the Backend running on a single GPU machine with an NVIDIA GTX-980.
4.1 Training Methodology
In the first experiment, we trained the proposed IRCNN using the stochastic gradient descent (SGD) Nesterov technique with default initialization for deep networks found in Keras (Chollet, 2016). We set the Nesterov momentum to 0.9 (Sutskever et al., 2013)] and decay to . Second, we experimented with our proposed approach using the Layer-sequential unit-variance (LSUV) technique, which is a simple method for the initialization of weights in a deep neural network (Mishkin & Matas, 2015). We have also used a very recently proposed an improved version of the optimization function based on “Adam” that is called EVE (Koushik & Hayashi, 2016). The following parameters are used for the EVE optimization function: the value of the learning rate is , decay is , , , , , , and . The values are exponential decay rates for moment estimation in Adam. The 〖 is an exponential decay rate for computing relative changes. The , and values are lower and upper thresholds for relative change and is a fuzzy factor. It should be noted that we used the with a value of 0.002 for weight regularization on each convolutional layer in the IRCNN block.
In both experiments, we used ReLU activation functions. We have generalized the network with dropout (0.5). Only the horizontal flipping technique was applied when performing data augmentation. We trained the models for 350 epochs with a 128 batch size for CIFAR-10 and 100. During the training of MNIST and SVHN, we use 200 epochs with a mini-batch size of 128. For the impartial comparison, we have trained and tested against equivalent Inception networks and Inception residual networks (meaning our network contained the same number of layers and computational parameters). We describe these as the Equivalent Inception Network (EIN) and the Equivalent Inception Residual Network (EIRN).
4.2 Results
4.2.1 MNIST
MNIST is one of the most popular datasets for handwritten digits from 0-9 [36], the dataset contains pixel grayscale images with 60,000 training examples and 10,000 testing examples. For this experiment, we trained the proposed model with two IRCNN convolution blocks (IRCNN-block 1 and IRCNN-block 2) and used the ReLU activation function. The model was trained with 60,000 samples and 10,000 samples were used for validation of the model. Eventually the trained network was tested with 10,000 testing examples. We obtained a test error of 0.32% with the IRCNN and the SGD, and achieved about 0.29% error for the IRCNN when initializing with LSUV (Mishkin & Matas, 2015) and the EVE (Koushik & Hayashi, 2016) optimization function. This provided the best accuracy compared to the RCNN, as well as the other state-of-the-art networks. The summary of the classification accuracies is given in Table I. No data augmentation techniques have been applied in this experiment on MNIST. On the contrary, global contract normalization and ZCA whitening were applied in the experiments using most of the mentioned models.
4.2.2 CIFAR-10
CIFAR-10 is an object classification benchmark (Krizhevsky & Hinton, 2009) consisting of color images representing 10 classes. It is split into 50,000 samples for training and 10,000 samples for testing. The experiment was conducted with and without data augmentation. The entire experiment was conducted on models similar to the one shown in Figure 2. Using the proposed approach, we achieved about 8.41% error without data augmentation and 7.37% error with data augmentation using the SGD technique. These results are better than those of most of the recognized DCNN models stated in Table 1. Even better performance is observed from the IRCNN with LSUV (Mishkin & Matas, 2015) as the initialization approach and EVE (Koushik & Hayashi, 2016) as the optimization technique. The results show around 8.17% and 7.11% error without and with data augmentation respectively. When comparing these results to those of the different models in Table 1, it can be observed that our proposed approach provides better accuracy compared to various advanced and hybrid models.The training and validation loss of the experiment on CIFAR-10 of this proposed model are shown in Figure 4. Figure 5 shows training and validation accuracy of IRCNN with SGD and LSUV+EVE.
4.2.3 CIFAR-100
This is another benchmarks for object classification from the same group (K and Hinton, 2009) (Krizhevsky & Hinton, 2009). The dataset contains 60,000 (50,000 for training and for 10,000 testing) color images, and it has 100 classes. We have used SGD and LSUV (Mishkin & Matas, 2015) as the initialization approach with the EVE optimization technique (Koushik & Hayashi, 2016) in this experiment. The experimental results are shown in Table 1. In both cases, the proposed technique shows state-of-the-art accuracy compared with different DCNN models.
IRCNN+SGD shows about 34.13% testing errors without data augmentation and 31.22% classification errors with data augmentation. In addition, this models achieved around 30.87% and only 28.24% errors with SGD and LSUV+EVE on augmented dataset. This is the highest accuracy achieved in any of the deep learning models summarized in Table 1. For augmented datasets, we have achieved 71.76 % recognition accuracy with LSUV+EVE, which is about a 3.51% improvement compared to RCNN(Liang & Hu, 2015). Figure 6 shows the training and validation loss of IRCNN for both experiments on CIFAR-100 with data augmentation(with initialization and optimization). It is clearly shown that the proposed model has lower error in the both experiments, showing the effectiveness of the proposed IRCNN learning model. The training and testing accuracy of the IRCNN with LSUV and EVE are shown in Figure 7.
4.2.4 Street View House Numbers (SVHN)
SVHN (Netzer et al. 2011) is one of the most challenging datasets for street view house number recognition (Netzer et al., 2011). This dataset contains color images representing house numbers from Google Street View. In this experiment, we have considered the second version, which consists with color examples. There are 73,257 samples are in the training set and 26,032 samples in testing set. In addition, this dataset has 531,131 extra samples that are used for training purposes. As single input samples of this dataset contain multiple digits, the main goal is to classify the central digit. Due to the huge variation of color and brightness, this dataset is much for difficult to classify compared to the MNIST dataset. In this case, we have experimented with the same model as is used in CIFAR-10 and CIFAR-100. We have used the same preprocessing steps applied in the experiments of RCNN (Liang & Hu, 2015). The experimental results show better recognition accuracy, as shown in Table 1. We have obtained around 1.89% testing errors with IRCNN+SGD and 1.74% errors with IRCNN+LSUV+EVE respectively. It is noted that Local Contract Normalization (LCN) is applied during experiments of MaxOut (Goodfellow et al., 2013), NiN (Lin et al., 2013), DSN (Lee et al., 2015), and Drop Connect (Wan et al., 2013). The drop connection results in (Wan et al., 2013) are based on the average performance of five networks.
4.3 Impact of recurrent layers
The proposed architecture also performs well when compared to traditional architectures. One LSUV with a traditional DCNN architecture is called FitNet4, and it only achieved 70.04% classification accuracy with data augmentation using mirroring and random shifts for CIFAR-100 (Mishkin & Matas, 2015). On the other hand, we have only applied random horizontal flipping for data augmentation in this implementation and achieved about 1.72% better recognition accuracy against FitNet4 (Mishkin & Matas, 2015).
For an impartial comparison with the EIN and EIRN models, we have implemented the Inception network with the same number of layers and parameters as in the transaction and Inception-block. Instead of using recurrent connectivity in the convolutional layers, we used sequential convolutional layers for the same time-step with the same kernels. During the implementation of EIRN, we only added residual connection in the Inception-Residual block, where the inputs of the Inception-Residual block are accumulated with the outputs of that particular block.
In this case, all of the experiment have been conducted on the augmented CIFAR-100 dataset (Krizhevsky & Hinton, 2009). The model loss and accuracy for both training and validation phases are shown in Figures 8 and 9 respectively. From both figures, it can be clearly observed that this proposed model shows lower loss and the highest recognition accuracy compared with EIN and EIRN, proving the effectiveness of the proposed model. It also demonstrates the advantage of recurrent layers in Inception networks. The testing accuracy of IRCNN, EIN, and EIRN are shown in Figure 10. It can be summarized that our proposed model of IRCNN shows around 3.47% and 2.54% better testing accuracy compared to EIN and EIRN respectively.
4.4 Evaluation
From the above empirical evaluations, it can be concluded that this proposed technique provides better recognition accuracy compared to different deep learning models in most of the cases, demonstrating the precision of the proposed deep learning model. This model also shows better recognition performance with the same number of computational parameters against the EIN and EIRN models. Furthermore, if we observed the figures for model loss and accuracy, it can be clearly seen that this proposed model demonstrates less loss with better recognition accuracy. We have also empirically evaluated the rate of convergence of our proposed IRCNN algorithm compared with traditional EIN and EIRN models. The proposed model converged earlier with much lower model loss compared to EIN and EIRN. The computational cost (in seconds) per epoch of this IRCNN,EIN, and EIRN models for different benchmark datasets are shown in Table 2.
4.5 Introspection
In this implementation, we have augmented data applying only random horizontal flipping techniques whereas other models published results with more data augmentation with transaction, central crop, and ZCA. This proposed model will provide better recognition accuracy when using datasets with additional augmentation.Due to hardware constrains, we were not able to experiment on massive scale implementations of IRCNN. This architecture will probably provide even better classification accuracy with large networks on the same datasets. The large scale implementation of proposed IRCNN model with advanced components such as LSUV, EVE, and Exponential Linear Unit (ELU) (Clevert et al., 2015) will likely provide further improved recognition on CIFAR-10 and CIFAR-100 datasets.
5 Conclusion and Future works
In this paper, we have proposed a new architecture: Inception Recurrent Convolutional Neural Network (IRCNN) for object recognition where we have utilized the power of recurrent techniques for context modulation with the architecture of Inception networks. The experimental results show the promising recognition accuracy compared with different state-of-the-art Deep Convolutional Neural Networks (DCNN) models on different benchmark datasets such as MNIST, CIFAR-10, CIFAR-100, and SVHN. However, when the proposed IRCNN architecture is initialized with LSUV initialization technique, and optimization function of EVE, it achieved an object recognition accuracy of 71.76% on the CIFAR-100 dataset. This is about a 3.5% improvement with respect to RCNN (Liang & Hu, 2015). In addition, this architecture accelerates the training procedure, which is a concerning issue right now for training large scale deep learning approaches. Furthermore, we empirically investigated our model and determined that it outperforms against both the equivalent model of the Inception Networks and the Inception-Residual Networks. In the future, we would like to improve this model and experiment with large scale implementation using the teacher-student paradigm (Net2Net) on the ImageNet dataset (Chen et al., 2015b). In addition, the propose IRCNN will be tested with advanced activation functions such as ELU (Clevert et al., 2015).Furthermore, from our observation, this new architecture would be able to model context in input videos, which is another future direction for this work.
The reference list from the paper itself. Each links out to its DOI / PubMed record.
- 1Ballas et al. (2015) Ballas, N., Yao, L., Pal, C., and Courville, A. Delving deeper into convolutional networks for learning video representations. In ar Xiv preprint ar Xiv:1511.06432 , 2015.
- 2Bastien et al. (2012) Bastien, F., Lamblin, P., Pascanu, R., Bergstra, J., Goodfellow, I., Bergeron, A., and Bengio, Y. Theano: new features and speed improvements. In ar Xiv preprint ar Xiv:1211.5590 , 2012.
- 3Bishop (2006) Bishop, C.M. Pattern recognition. machine learning, 2006.
- 4Chen et al. (2015 a) Chen, T., Goodfellow, I., and Shlens, J. Net 2net: Accelerating learning via knowledge transfer. In ar Xiv preprint ar Xiv:1511.05641. , 2015 a.
- 5Chen et al. (2015 b) Chen, T., Goodfellow, I., and Shlens, J. Net 2net: Accelerating learning via knowledge transfer. In ar Xiv preprint ar Xiv:1511.05641 , 2015 b.
- 6Chollet (2016) Chollet, F. Keras. https://github.com/fchollet/keras, 2016.
- 7Clevert et al. (2015) Clevert, D.A, Unterthiner, T., and Hochreiter, S. Fast and accurate deep network learning by exponential linear units (elus). In ar Xiv preprint ar Xiv:1511.07289 , 2015.
- 8Collobert & Weston (2008) Collobert, R. and Weston, J. A unified architecture for natural language processing: Deep neural networks with multitask learning. In Proceedings of the 25th International Conference on Machine Learning (ICML 2008) , pp. 160–167, 2008.
