Open omoindrot opened 8 years ago
hi, In Inception v2 the input size is 229*229. Is it the same in V3?
Thank you!
Yes Inception v3 uses an input size of 299*299 (not 229).
You can refer to the TensorFlow implementation of the inception v3 model.
Thank you! 229 was a typo, sorry!
so, you may correct the first insight which says the input size is 224x224x3.
3rd paper on the Inception architecture from Google
Objective
Understand the principles which guided the creation of the Inception architecture and allowed to scale the model. Currently, it is very difficult to change the model because it is difficult to understand what is important and it, and what can be changed.
Insights
Model Regularization via Label Smoothing
Idea for training the network: instead of using the cross entropy with the true distribution (1 for the true label, 0 elsewhere), use a combination of the true distribution and a uniform distribution:
K is the number of examples, epsilon is 0.1
Inception v2