(self, input_shape)
| 26 | return sgx.e_sigmoid(sgx.e_matmul(inputs, self.w)) |
| 27 | |
| 28 | def compute_output_shape(self, input_shape): |
| 29 | return (input_shape[0], self.units) |
| 30 | |
| 31 | def get_config(self): |
| 32 | config = super(MyDense, self).get_config() |
nothing calls this directly
no outgoing calls
no test coverage detected