(self, inputs, training=None, mask=None)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected