Skip to main content
. 2022 Nov 21;8:e1161. doi: 10.7717/peerj-cs.1161

Table 1. VGG configuration for CIFAR10/100 (Simonyan & Zisserman, 2015).

Layer Output size Network configuration
conv-1 32×32 [3×3,64]×2
16×16 maxpool
conv-2 16×16 [3×3,64]×2
8×8 maxpool
conv-3 8×8 [3×3,128]×2
4×4 maxpool
2 × 2 AdaptiveAvgPool
1 × 1 FC-10/100

Notes:

[m×m,n]×k, m×m: convolution kernel size, n: output channels; k: the repeat number of the layer.

Each convolutional layer is followed by a BN and ReLU layer.

maxpool: [ 2×2] kernel with stride 2.

Output size: width×height.