Very Deep Convolutional Networks For Large-Scale Image Recognition
Very Deep Convolutional Networks For Large-Scale Image Recognition
Convolutional
Networks for
Large-Scale Image
Recognition
Sergio Alejandro Camacho Cano
Juan Diego Olaya Olivera
Daniel Alejandro Aguilar Meneses
Identificación de imágenes que se pueden hacer
Imágenes a gran escala, usando datasets como:
Arguments
● include_top: whether to include the 3 fully-connected layers at the top of the network.
● weights: one of None (random initialization), 'imagenet' (pre-training on ImageNet), or the path to the weights file to be loaded.
● input_tensor: optional Keras tensor (i.e. output of layers.Input()) to use as image input for the model.
● input_shape: optional shape tuple, only to be specified if include_top is False (otherwise the input shape has to be (224, 224, 3)
(with channels_last data format) or (3, 224, 224) (with channels_first data format). It should have exactly 3 input channels, and
width and height should be no smaller than 32. E.g. (200, 200, 3) would be one valid value.
● pooling: Optional pooling mode for feature extraction when include_top is False. - None means that the output of the model will
be the 4D tensor output of the last convolutional block. - avg means that global average pooling will be applied to the output of
the last convolutional block, and thus the output of the model will be a 2D tensor. - max means that global max pooling will be
applied.
● classes: optional number of classes to classify images into, only to be specified if include_top is True, and if no weights
argument is specified.
● classifier_activation: A str or callable. The activation function to use on the "top" layer. Ignored unless include_top=True. Set
classifier_activation=None to return the logits of the "top" layer. When loading pretrained weights, classifier_activation can only
be None or "softmax".
Ventajas
In spite of these, the following advantages outweigh the drawbacks.
VGG16 can be used for transfer learning. The detailed implementation of VGG16 using Python
2. The weights of the network architecture are quite large themselves (a concern for disk
and bandwidth)
Notebook
https://colab.research.google.com/drive/1g_qc4h8sFlR__duAcw-W06aGP2ZTcjlv?usp=sharing
Bibliografía
● Team, K. (s. f.). Keras documentation: VGG16 and VGG19. Keras.Io. https://keras.io/api/applications/vgg/
● Great Learning. (2022, 5 enero). What is VGG16? — Introduction to VGG16 - Great Learning. Medium. https://medium.com/@mygreatlearning/what-
is-vgg16-introduction-to-vgg16-f2d63849f615
● Simonyan, K. (2014, 4 septiembre). Very Deep Convolutional Networks for Large-Scale Image Recognition. arXiv.Org. https://arxiv.org/abs/1409.1556
https://nnabla.readthedocs.io/en/latest/_modules/nnabla/models/imagenet/vgg.html