MCPcopy Create free account
hub / github.com/OpenImagingLab/4DSloMo / AlexNet

Class AlexNet

lpipsPyTorch/modules/networks.py:77–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75
76
77class AlexNet(BaseNet):
78 def __init__(self):
79 super(AlexNet, self).__init__()
80
81 self.layers = models.alexnet(True).features
82 self.target_layers = [2, 5, 8, 10, 12]
83 self.n_channels_list = [64, 192, 384, 256, 256]
84
85 self.set_requires_grad(False)
86
87
88class VGG16(BaseNet):

Callers 1

get_networkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected