- Source: Inception (deep learning architecture)
Inception is a family of convolutional neural network (CNN) for computer vision, introduced by researchers at Google in 2014 as GoogLeNet (later renamed Inception v1). The series was historically important as an early CNN that separates the stem (data ingest), body (data processing), and head (prediction), an architectural design that persists in all modern CNN.
Version history
= Inception v1
=In 2014, a team at Google developed the GoogLeNet architecture, an instance of which won the ImageNet Large-Scale Visual Recognition Challenge 2014 (ILSVRC14).
The name came from the LeNet of 1998, since both LeNet and GoogLeNet are CNNs. They also called it "Inception" after a "we need to go deeper" internet meme, a phrase from Inception (2010) the film. Because later, more versions were released, the original Inception architecture was renamed again as "Inception v1".
The models and the code were released under Apache 2.0 license on GitHub.
The Inception v1 architecture is a deep CNN composed of 22 layers. Most of these layers were "Inception modules". The original paper stated that Inception modules are a "logical culmination" of Network in Network and (Arora et al, 2014).
Since Inception v1 is deep, it suffered from the vanishing gradient problem. The team solved it by using two "auxiliary classifiers", which are linear-softmax classifiers inserted at 1/3-deep and 2/3-deep within the network, and the loss function is a weighted sum of all three:
L
=
0.3
L
a
u
x
,
1
+
0.3
L
a
u
x
,
2
+
L
r
e
a
l
{\displaystyle L=0.3L_{aux,1}+0.3L_{aux,2}+L_{real}}
These were removed after training was complete. This was later solved by the ResNet architecture.
The architecture consists of three parts stacked on top of one another:
The stem (data ingestion): The first few convolutional layers perform data preprocessing to downscale images to a smaller size.
The body (data processing): The next many Inception modules perform the bulk of data processing.
The head (prediction): The final fully-connected layer and softmax produces a probability distribution for image classification.
This structure is used in most modern CNN architectures.
= Inception v2
=Inception v2 was released in 2015, in a paper that is more famous for proposing batch normalization. It had 13.6 million parameters.
It improves on Inception v1 by adding batch normalization, and removing dropout and local response normalization which they found became unnecessary when batch normalization is used.
= Inception v3
=Inception v3 was released in 2016. It improves on Inception v2 by using factorized convolutions.
As an example, a single 5×5 convolution can be factored into 3×3 stacked on top of another 3×3. Both has a receptive field of size 5×5. The 5×5 convolution kernel has 25 parameters, compared to just 18 in the factorized version. Thus, the 5×5 convolution is strictly more powerful than the factorized version. However, this power is not necessarily needed. Empirically, the research team found that factorized convolutions help.
It also uses a form of dimension-reduction by concatenating the output from a convolutional layer and a pooling layer. As an example, a tensor of size
35
×
35
×
320
{\displaystyle 35\times 35\times 320}
can be downscaled by a convolution with stride 2 to
17
×
17
×
320
{\displaystyle 17\times 17\times 320}
, and by maxpooling with pool size
2
×
2
{\displaystyle 2\times 2}
to
17
×
17
×
320
{\displaystyle 17\times 17\times 320}
. These are then concatenated to
17
×
17
×
640
{\displaystyle 17\times 17\times 640}
.
Other than this, it also removed the lowest auxiliary classifier during training. They found that the auxiliary head worked as a form of regularization.
They also proposed label-smoothing regularization in classification. For an image with label
c
{\displaystyle c}
, instead of making the model to predict the probability distribution
δ
c
=
(
0
,
0
,
…
,
0
,
1
⏟
c
-th entry
,
0
,
…
,
0
)
{\displaystyle \delta _{c}=(0,0,\dots ,0,\underbrace {1} _{c{\text{-th entry}}},0,\dots ,0)}
, they made the model predict the smoothed distribution
(
1
−
ϵ
)
δ
c
+
ϵ
/
K
{\displaystyle (1-\epsilon )\delta _{c}+\epsilon /K}
where
K
{\displaystyle K}
is the total number of classes.
= Inception v4
=In 2017, the team released Inception v4, Inception ResNet v1, and Inception ResNet v2.
Inception v4 is an incremental update with even more factorized convolutions, and other complications that were empirically found to improve benchmarks.
Inception ResNet v1 and v2 are both modifications of Inception v4, where residual connections are added to each Inception module, inspired by the ResNet architecture.
= Xception
=Xception ("Extreme Inception") was published in 2017. It is a linear stack of depthwise separable convolution layers with residual connections. The design was proposed on the hypothesis that in a CNN, the cross-channels correlations and spatial correlations in the feature maps can be entirely decoupled.
References
External links
A list of all Inception models released by Google: "models/research/slim/README.md at master · tensorflow/models". GitHub. Retrieved 2024-10-19.
Kata Kunci Pencarian:
- Inception (deep learning architecture)
- Deep learning
- Inception
- Residual neural network
- Domain-specific architecture
- VGGNet
- Generative artificial intelligence
- Nvidia
- Vision transformer
- Artificial intelligence
In Love and Deep Water (2023)
Deep Sea Python (2023)
Inception (2010)
No More Posts Available.
No more pages to load.