(self, encoding_dim, input_shape)
| 8 | |
| 9 | class AutoEncoder: |
| 10 | def __init__(self, encoding_dim, input_shape): |
| 11 | self.encoding_dim = encoding_dim |
| 12 | self.input_shape = input_shape |
| 13 | |
| 14 | def build_model(self, encoded1_shape, encoded2_shape, decoded1_shape, decoded2_shape): |
| 15 | input_data = Input(shape=(1, self.input_shape)) |
nothing calls this directly
no outgoing calls
no test coverage detected