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

Method __init__

lpipsPyTorch/modules/networks.py:78–85  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

nothing calls this directly

Calls 2

set_requires_gradMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected