(self, input_shape)
| 12 | self.activation = activation |
| 13 | |
| 14 | def build(self, input_shape): |
| 15 | self.w = self.add_weight( |
| 16 | name="weight", shape=(input_shape[1], self.units), trainable=True |
| 17 | ) |
| 18 | super(MyDense, self).build(input_shape) |
| 19 | |
| 20 | def call(self, inputs): |
| 21 | if self.activation == None: |
nothing calls this directly
no outgoing calls
no test coverage detected