You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instancing a pre-trained model will download its weights to a cache directory.
73
90
This directory can be set using the `TORCH_MODEL_ZOO` environment variable. See
@@ -113,7 +130,10 @@ Unfortunately, the concrete `subset` that was used is lost. For more
113
130
information see `this discussion <https://github.com/pytorch/vision/issues/1439>`_
114
131
or `these experiments <https://github.com/pytorch/vision/pull/1965>`_.
115
132
116
-
ImageNet 1-crop error rates (224x224)
133
+
The sizes of the EfficientNet models depend on the variant. For the exact input sizes
134
+
`check here <https://github.com/pytorch/vision/blob/d2bfd639e46e1c5dc3c177f889dc7750c8d137c7/references/classification/train.py#L92-L93>`_
Copy file name to clipboardExpand all lines: references/classification/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,12 @@ Then we averaged the parameters of the last 3 checkpoints that improved the Acc@
68
68
and [#3354](https://github.com/pytorch/vision/pull/3354) for details.
69
69
70
70
71
+
### EfficientNet
72
+
73
+
The weights of the B0-B4 variants are ported from Ross Wightman's [timm repo](https://github.com/rwightman/pytorch-image-models/blob/01cb46a9a50e3ba4be167965b5764e9702f09b30/timm/models/efficientnet.py#L95-L108).
74
+
75
+
The weights of the B5-B7 variants are ported from Luke Melas' [EfficientNet-PyTorch repo](https://github.com/lukemelas/EfficientNet-PyTorch/blob/1039e009545d9329ea026c9f7541341439712b96/efficientnet_pytorch/utils.py#L562-L564).
76
+
71
77
## Mixed precision training
72
78
Automatic Mixed Precision (AMP) training on GPU for Pytorch can be enabled with the [NVIDIA Apex extension](https://github.com/NVIDIA/apex).
0 commit comments