def normalize_points(self, x): return np.divide(x - np.amin(self.X, 0) , np.amax(self.X, 0) - np.amin(self.X, 0), np.empty_like(x))