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

Class SqueezeNet

lpipsPyTorch/modules/networks.py:66–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65
66class SqueezeNet(BaseNet):
67 def __init__(self):
68 super(SqueezeNet, self).__init__()
69
70 self.layers = models.squeezenet1_1(True).features
71 self.target_layers = [2, 5, 8, 10, 11, 12, 13]
72 self.n_channels_list = [64, 128, 256, 384, 384, 512, 512]
73
74 self.set_requires_grad(False)
75
76
77class AlexNet(BaseNet):

Callers 1

get_networkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected