hypertools.
normalize
(*args, **kwargs)[source]¶Z-transform the columns or rows of an array, or list of arrays
This function normalizes the rows or columns of the input array(s). This can be useful because data reduction and machine learning techniques are sensitive to scaling differences between features. By default, the function is set to normalize ‘across’ the columns of all lists, but it can also normalize the columns ‘within’ each individual list, or alternatively, for each row in the array.
Parameters: | x : Numpy array or list of arrays
normalize : str or False or None
|
---|---|
Returns: | normalized_x : Numpy array or list of arrays
|