Main Content

inceptionresnetv2

(Not recommended) Pretrained Inception-ResNet-v2 convolutional neural network

  • Inception-ResNet-v2 network architecture

inceptionresnetv2 is not recommended. Use the imagePretrainedNetwork function instead and specify the "inceptionresnetv2" model. For more information, see Version History.

Description

Inception-ResNet-v2 is a convolutional neural network that is trained on more than a million images from the ImageNet database [1]. The network is 164 layers deep and can classify images into 1000 object categories, such as keyboard, mouse, pencil, and many animals. As a result, the network has learned rich feature representations for a wide range of images. The network has an image input size of 299-by-299. For more pretrained networks in MATLAB®, see Pretrained Deep Neural Networks.

net = inceptionresnetv2 returns a pretrained Inception-ResNet-v2 network.

This function requires the Deep Learning Toolbox™ Model for Inception-ResNet-v2 Network support package. If this support package is not installed, then the function provides a download link.

example

Examples

collapse all

Download and install the Deep Learning Toolbox Model for Inception-ResNet-v2 Network support package.

Type inceptionresnetv2 at the command line.

inceptionresnetv2

If the Deep Learning Toolbox Model for Inception-ResNet-v2 Network support package is not installed, then the function provides a link to the required support package in the Add-On Explorer. To install the support package, click the link, and then click Install. Check that the installation is successful by typing inceptionresnetv2 at the command line. If the required support package is installed, then the function returns a DAGNetwork object.

net = inceptionresnetv2
net = 

  DAGNetwork with properties:

         Layers: [824×1 nnet.cnn.layer.Layer]
    Connections: [921×2 table]
     InputNames: {'input_1'}
    OutputNames: {'ClassificationLayer_predictions'}

Visualize the network using Deep Network Designer.

deepNetworkDesigner(inceptionresnetv2)

Explore other pretrained neural networks in Deep Network Designer by clicking New.

Deep Network Designer start page showing available pretrained neural networks

If you need to download a neural network, pause on the desired neural network and click Install to open the Add-On Explorer.

Output Arguments

collapse all

Pretrained Inception-ResNet-v2 convolutional neural network, returned as a DAGNetwork object.

References

[1] ImageNet. http://www.image-net.org.

[2] Szegedy, Christian, Sergey Ioffe, Vincent Vanhoucke, and Alexander Alemi. “Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning.” Proceedings of the AAAI Conference on Artificial Intelligence 31, no. 1 (February 12, 2017). https://doi.org/10.1609/aaai.v31i1.11231.

Extended Capabilities

expand all

Version History

Introduced in R2017b

collapse all