-
Notifications
You must be signed in to change notification settings - Fork 0
Preprocessing 0.2.0 normalizer
github-actions[bot] edited this page Sep 24, 2026
·
1 revision
Lodestar.Preprocessing 0.2.0. This page is frozen at that release. Read the current documentation for what
mainsays now. A link to a decision or a migration page followsmain, and leaves the archive.
Scales each row to unit norm, at sklearn.preprocessing.Normalizer parity.
The one member of this package that fits nothing: every row is scaled by its own norm, so there
is no statistic to learn from a training set and no state for an instance to carry. The reference
is a transformer all the same, with a fit that only validates — so this is static.
Rows, not features. Every other member here scales a column; this one scales a row, which is what a distance or a dot product between two rows reads afterwards.
| Member | What it does |
|---|---|
Normalizer.Transform |
Scales each row of a matrix to unit norm. |