From 8556462a18b12f45122dbd3e2db6fe133326dd2a Mon Sep 17 00:00:00 2001 From: pUmpKin-Co <1059005704@qq.vom> Date: Sun, 24 Sep 2023 21:36:29 +0800 Subject: [PATCH] fix doc typo in resnetv2 --- timm/models/resnetv2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timm/models/resnetv2.py b/timm/models/resnetv2.py index 43d2704e..63fb2033 100644 --- a/timm/models/resnetv2.py +++ b/timm/models/resnetv2.py @@ -1,6 +1,6 @@ """Pre-Activation ResNet v2 with GroupNorm and Weight Standardization. -A PyTorch implementation of ResNetV2 adapted from the Google Big-Transfoer (BiT) source code +A PyTorch implementation of ResNetV2 adapted from the Google Big-Transfer (BiT) source code at https://github.com/google-research/big_transfer to match timm interfaces. The BiT weights have been included here as pretrained models from their original .NPZ checkpoints.