MCPcopy Index your code
hub / github.com/tensorlayer/TensorLayer / __init__

Method __init__

tensorlayer/models/vgg.py:93–98  ·  view source on GitHub ↗
(self, layer_type, batch_norm=False, end_with='outputs', name=None)

Source from the content-addressed store, hash-verified

91class VGG(Model):
92
93 def __init__(self, layer_type, batch_norm=False, end_with='outputs', name=None):
94 super(VGG, self).__init__(name=name)
95 self.end_with = end_with
96
97 config = cfg[mapped_cfg[layer_type]]
98 self.layers = make_layers(config, batch_norm, end_with)
99
100 def forward(self, inputs):
101 """

Callers

nothing calls this directly

Calls 1

make_layersFunction · 0.85

Tested by

no test coverage detected