From f9df6ab6892ce1249bb21123346fa49424bb18ca Mon Sep 17 00:00:00 2001 From: nps1ngh Date: Mon, 9 Jan 2023 12:58:11 +0100 Subject: [PATCH] update vgg error rates updates according to numbers from: https://pytorch.org/vision/main/models.html#table-of-all-available-classification-weights `torchvision` documentation version: `main (0.15.0a0+23c2e5f )` --- pytorch_vision_vgg.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pytorch_vision_vgg.md b/pytorch_vision_vgg.md index 4e59ab22..813110cb 100644 --- a/pytorch_vision_vgg.md +++ b/pytorch_vision_vgg.md @@ -101,14 +101,14 @@ Their 1-crop error rates on imagenet dataset with pretrained models are listed b | Model structure | Top-1 error | Top-5 error | | --------------- | ----------- | ----------- | -| vgg11 | 30.98 | 11.37 | -| vgg11_bn | 26.70 | 8.58 | -| vgg13 | 30.07 | 10.75 | -| vgg13_bn | 28.45 | 9.63 | -| vgg16 | 28.41 | 9.62 | -| vgg16_bn | 26.63 | 8.50 | -| vgg19 | 27.62 | 9.12 | -| vgg19_bn | 25.76 | 8.15 | +| vgg11 | 30.98 | 11.372 | +| vgg11_bn | 29.63 | 90.374 | +| vgg13 | 30.072 | 10.754 | +| vgg13_bn | 28.414 | 9.626 | +| vgg16 | 28.408 | 9.618 | +| vgg16_bn | 26.64 | 8.484 | +| vgg19 | 27.624 | 9.124 | +| vgg19_bn | 25.782 | 8.158 | ### References