L1 Normalizer#
Transform each sample (row) vector in the sample matrix such that each feature is divided by the L1 norm (or magnitude) of that vector.
Interfaces: Transformer
Data Type Compatibility: Continuous only
Parameters#
This transformer does not have any parameters.
Example#
use Rubix\ML\Transformers\L1Normalizer;
$transformer = new L1Normalizer();
Additional Methods#
This transformer does not have any additional methods.
Last update:
2021-01-09