(self, X: Dict[str, np.ndarray])
| 344 | return self._output_normalizer |
| 345 | |
| 346 | def normalize(self, X: Dict[str, np.ndarray]) -> Dict[str, np.ndarray]: |
| 347 | for input_type, rawX in X.items(): |
| 348 | X[input_type] = self._input_normalizer[input_type](rawX) |
| 349 | |
| 350 | X = self._log_scaler_func(X) |
| 351 | return X |
| 352 | |
| 353 | def __call__(self, X: Dict[str, np.ndarray]) -> Dict[str, np.ndarray]: |
| 354 | return self.normalize(X) |
no outgoing calls
no test coverage detected