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

Method call

model_demo/DeepCrossing/model.py:16–24  ·  view source on GitHub ↗
(self, inputs, training=None, mask=None)

Source from the content-addressed store, hash-verified

14 self.output_layer = MyDense(1, activation="sigmoid")
15
16 def call(self, inputs, training=None, mask=None):
17 dense_inputs, sparse_inputs = inputs[:, :13], inputs[:, 13:]
18 emb = self.embed_layer(sparse_inputs)
19 x = tf.concat([dense_inputs, emb], axis=-1)
20 x = sgx.en_crypt(x)
21 for layer in self.res_layer:
22 x = layer(x)
23 output = sgx.de_crypt(self.output_layer(x))
24 return output

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected