(self, input_shape)
| 7 | |
| 8 | class NNModel: |
| 9 | def __init__(self, input_shape): |
| 10 | self.input_shape = input_shape |
| 11 | |
| 12 | def make_model(self): |
| 13 | input_data = kl.Input(shape=(1, self.input_shape)) |
nothing calls this directly
no outgoing calls
no test coverage detected