(self, inputs, **kwargs)
| 64 | self.output_layer = MyDense(input_shape[-1], activation=None) |
| 65 | |
| 66 | def call(self, inputs, **kwargs): |
| 67 | if K.ndim(inputs) != 2: |
| 68 | raise ValueError("The dim of inputs should be 2, not %d" % (K.ndim(inputs))) |
| 69 | x = inputs |
| 70 | for layer in self.dense_layer: |
| 71 | x = layer(x) |
| 72 | x = self.output_layer(x) |
| 73 | output = inputs + x |
| 74 | return sgx.e_relu(output) |
nothing calls this directly
no outgoing calls
no test coverage detected