Skip to main content

Envisioning is an emerging technology research institute and advisory.

LinkedInInstagramGitHub

Since 2010

research
  • Observatory
  • Adaptive capacity
  • Newsletter
  • Methodology
  • Origins
  • Vocab
  • RSS feeds
services
  • Signals Session
  • Bespoke Projects
  • Build Sessions
  • Pricing
  • Use cases
  • Signals
  • Signal Scan↗free
impact
  • ANBIMAFuture of Brazilian Capital Markets
  • IEEECharting the Energy Transition
  • Horizon 2045Future of Human and Planetary Security
  • WKOTechnology Scanning for Austria
solutions
  • Innovation
  • Strategy
  • Consultants
  • Foresight
  • Associations
  • Governments
  • L&D
resources
  • Partners
  • Coding for Non-Coders
  • How we work
  • Data visualization
  • Multi-Model Convergence
  • FAQ
  • Security and privacy
  • Public sector
about
  • Manifesto
  • Community
  • Events
  • Support
  • Contact
ResearchCapabilityServicesSignalsAbout
ResearchCapabilityServicesSignalsAbout
  1. Home
  2. Vocab
  3. VGG (Visual Geometry Group)

VGG (Visual Geometry Group)

Oxford's 2014 deep CNN architecture using small filters that became a foundational vision backbone.

Year: 2014Generality: 550
Back to Vocab

Title: VGG (Visual Geometry Group) Slug: vgg-visual-geometry-group

VGG refers both to the Visual Geometry Group at the University of Oxford and, more commonly in machine learning contexts, to the family of deep convolutional neural network architectures they introduced in their 2014 paper "Very Deep Convolutional Networks for Large-Scale Image Recognition" by Karen Simonyan and Andrew Zisserman. The central insight was to replace large convolutional filters with stacks of small 3×3 kernels and systematically increase network depth, which improved representational power while keeping the architectural design consistent. The resulting models, most notably VGG-16 and VGG-19, named for their 16 and 19 weight layers respectively, achieved top results in the 2014 ImageNet Large Scale Visual Recognition Challenge (ILSVRC), finishing second overall while demonstrating that depth was a critical factor in visual recognition performance.

The architecture follows a straightforward pattern: repeated blocks of 3×3 convolutional layers with ReLU activations, followed by max-pooling to progressively reduce spatial resolution, and culminating in fully connected layers for classification. This uniformity made VGGNet easy to understand, implement, and modify. Two stacked 3×3 convolutions cover the same receptive field as a single 5×5 filter but with fewer parameters and an additional nonlinearity, which made the design efficient in concept and expressive in practice. The small number of architectural hyperparameters also made VGGNet a controlled experiment for studying the effect of depth on performance.

Later architectures like ResNet, Inception, and EfficientNet surpassed VGGNet in accuracy and efficiency. Even so, VGGNet had an outsized influence on the field. Pretrained VGG weights became some of the most widely downloaded and reused models in computer vision history, used as feature extractors and transfer learning backbones for tasks ranging from object detection to style transfer to medical imaging. The architecture's simplicity made it a teaching staple and a reliable baseline.

VGGNet's legacy is in crystallizing the principle that depth, achieved through disciplined, repeatable design, is a primary driver of representational capacity in convolutional networks. It helped shift the community's focus toward deeper architectures and established the practice of releasing pretrained weights for broad reuse, norms that continue to define how large vision models are developed and shared.

Research this in Signals

Scan VGG (Visual Geometry Group) for yourself.

Signals turns a topic into a sourced research record you can inspect and rerun. Your first scan is free, and this one starts with VGG (Visual Geometry Group) already loaded, so edit it or scan as is.

Related

Related

AlexNet
AlexNet

Landmark deep convolutional network that ignited the modern deep learning revolution in 2012.

2012Generality: 703
CNN (Convolutional Neural Network)
CNN (Convolutional Neural Network)

A deep learning architecture that learns spatial hierarchies of features from visual data.

1998Generality: 875
ResNet (Residual Network)
ResNet (Residual Network)

A CNN architecture using skip connections to enable training of very deep networks.

2015Generality: 795
Geometry-Informed Neural Networks
Geometry-Informed Neural Networks

Neural networks that embed geometric structure as inductive bias for spatial data.

2020Generality: 337
Local Weight Sharing
Local Weight Sharing

Reusing the same weights across spatial positions to detect patterns regardless of location.

1989Generality: 694
Vision Transformers (ViTs)
Vision Transformers (ViTs)

Transformer-based models that process images as sequences of patches for visual tasks.

2020Generality: 720