MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / __init__

Method __init__

model_demo/DeepCrossing/layer.py:59–61  ·  view source on GitHub ↗
(self, hidden_units)

Source from the content-addressed store, hash-verified

57
58class Res_layer(Layer):
59 def __init__(self, hidden_units):
60 super(Res_layer, self).__init__()
61 self.dense_layer = [MyDense(i, activation="relu") for i in hidden_units]
62
63 def build(self, input_shape):
64 self.output_layer = MyDense(input_shape[-1], activation=None)

Callers

nothing calls this directly

Calls 2

MyDenseClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected