(input_shape, window, strides)
| 49 | return res |
| 50 | |
| 51 | def get_valid_padding(input_shape, window, strides): |
| 52 | return [int(math.ceil((x - y + 1) / z)) |
| 53 | for x, y, z in zip(input_shape, window, strides)] |
| 54 | |
| 55 | for op in graph.get_operations(): |
| 56 | if op.inputs: |