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

Method build

model_demo/DeepCrossing/layer.py:63–64  ·  view source on GitHub ↗
(self, input_shape)

Source from the content-addressed store, hash-verified

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)
65
66 def call(self, inputs, **kwargs):
67 if K.ndim(inputs) != 2:

Callers

nothing calls this directly

Calls 1

MyDenseClass · 0.85

Tested by

no test coverage detected