VGG Tutorial

Introduction

Very Deep Convolutional Networks for Large-Scale Image Recognition (ICLR 2015)

Read about VGG: click here

VGG-16

VGG-19

Keras

Pretrained model

Using Keras application of VGG 16, 19 with ImageNet pretrained

  • Check the index of imagenet 1000 classes labels: click here

My example colab code: click here

Building from scratch

VGG-16: My Keras code, VGG-16 weight file

Read this blog for step by step tutorial

PyTorch

Pretrained model:

Building from scratch:

Implementation by PyTorch: Vgg.py

Last updated

Was this helpful?