resnet
ResNet architecture implementations
Derived from https://github.com/pytorch/vision/blob/v0.14.1/torchvision/models/resnet.py
TODO ResNeXt and wide ResNet variants
Attributes
- Source
- resnet.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
resnet.type
Members list
Type members
Classlikes
Attributes
- Companion
- object
- Source
- resnet.scala
- Supertypes
Attributes
- Companion
- class
- Source
- resnet.scala
- Supertypes
- Self type
-
BasicBlock.type
Attributes
- Source
- resnet.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
object BasicBlock.typeobject Bottleneck.type
Bottleneck in torchvision places the stride for downsampling at 3x3 convolution(self.conv2) while original implementation places the stride at the first 1x1 convolution(self.conv1) according to "Deep residual learning for image recognition"https://arxiv.org/abs/1512.03385. This variant is also known as ResNet V1.5 and improves accuracy according to https://ngc.nvidia.com/catalog/model-scripts/nvidia:resnet_50_v1_5_for_pytorch.
Bottleneck in torchvision places the stride for downsampling at 3x3 convolution(self.conv2) while original implementation places the stride at the first 1x1 convolution(self.conv1) according to "Deep residual learning for image recognition"https://arxiv.org/abs/1512.03385. This variant is also known as ResNet V1.5 and improves accuracy according to https://ngc.nvidia.com/catalog/model-scripts/nvidia:resnet_50_v1_5_for_pytorch.
Attributes
- Companion
- object
- Source
- resnet.scala
- Supertypes
Attributes
- Companion
- class
- Source
- resnet.scala
- Supertypes
- Self type
-
Bottleneck.type
Attributes
- Source
- resnet.scala
- Supertypes
ResNet-101 from Deep Residual Learning for Image Recognition
ResNet-101 from Deep Residual Learning for Image Recognition
Attributes
- Source
- resnet.scala
- Supertypes
- Self type
-
ResNet101.type
ResNet-152 from Deep Residual Learning for Image Recognition
ResNet-152 from Deep Residual Learning for Image Recognition
Attributes
- Source
- resnet.scala
- Supertypes
- Self type
-
ResNet152.type
ResNet-18 from Deep Residual Learning for Image Recognition.
ResNet-18 from Deep Residual Learning for Image Recognition.
Attributes
- Source
- resnet.scala
- Supertypes
- Self type
-
ResNet18.type
ResNet-34 from Deep Residual Learning for Image Recognition.
ResNet-34 from Deep Residual Learning for Image Recognition.
Attributes
- Source
- resnet.scala
- Supertypes
- Self type
-
ResNet34.type
ResNet-50 from Deep Residual Learning for Image Recognition
ResNet-50 from Deep Residual Learning for Image Recognition
Attributes
- Source
- resnet.scala
- Supertypes
- Self type
-
ResNet50.type
Attributes
- Source
- resnet.scala
- Supertypes
Attributes
- Source
- resnet.scala
- Supertypes
Value members
Concrete methods
1x1 convolution