(self, x_shape)
| 120 | ) |
| 121 | |
| 122 | def shape(self, x_shape): |
| 123 | h, w = convoltuion_shape( |
| 124 | x_shape[2], x_shape[3], self.pool_shape, self.stride, self.padding |
| 125 | ) |
| 126 | return x_shape[0], x_shape[1], h, w |
| 127 | |
| 128 | |
| 129 | class Flatten(Layer): |
nothing calls this directly
no test coverage detected