We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7419e98 commit e8cf619Copy full SHA for e8cf619
models/gluon_resnet.py
@@ -1,8 +1,7 @@
1
-"""Pytorch ResNet implementation w/ tweaks
2
-This file is a copy of https://github.com/pytorch/vision 'resnet.py' (BSD-3-Clause) with
3
-additional dropout and dynamic global avg/max pool.
4
-
5
-ResNext additions added by Ross Wightman
+"""Pytorch impl of MxNet Gluon ResNet/(SE)ResNeXt variants
+This file evolved from https://github.com/pytorch/vision 'resnet.py' with (SE)-ResNeXt additions
+and ports of Gluon variations (https://github.com/dmlc/gluon-cv/blob/master/gluoncv/model_zoo/resnet.py)
+by Ross Wightman
6
"""
7
import torch
8
import torch.nn as nn
0 commit comments