(self, data, axis=None, *args, **kwargs)
| 99 | self.max_minus_min = max_minus_min or max - min |
| 100 | |
| 101 | def normalize(self, data, axis=None, *args, **kwargs): |
| 102 | # self.min = np.min(data, axis=axis) |
| 103 | # self.max_minus_min = (np.max(data, axis=axis) - self.min) |
| 104 | return self(data) |
| 105 | |
| 106 | def inverse_normalize(self, normalized_data): |
| 107 | shapes = normalized_data.shape |
nothing calls this directly
no outgoing calls
no test coverage detected