Skip to content

[source]

L2 Normalizer#

Transform each sample (row) vector in the sample matrix such that each feature is divided by the L2 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\L2Normalizer;

$transformer = new L2Normalizer();

Additional Methods#

This transformer does not have any additional methods.