> ## Documentation Index
> Fetch the complete documentation index at: https://shapely.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Feature Scaler

>  Feature Scaler normalizes feature values to a common scale so that no single feature dominates the model due to its larger numerical range. It transforms all features to have comparable magnitudes.

This is a critical preprocessing step for distance-based algorithms like KNN, SVC, and SVR. 

<Note>
  Always apply Feature Scaler **before** using distance-based models (KNN, SVC, SVR, K-Means). Without scaling, features with larger ranges (e.g., area in m²) will dominate over features with smaller ranges (e.g., compactness ratio 0–1). Tree-based models (Random Forest, Gradient Boosting) do **not** require scaling.
</Note>

<a href="/images/ML/Feature Scaler.png" target="_blank">
  <img src="https://mintcdn.com/shapely/asBiXHBRV0o--5dI/images/ML/Feature%20Scaler.png?fit=max&auto=format&n=asBiXHBRV0o--5dI&q=85&s=339949aa49107c2d0e19a1e966932caa" className="pointer-events-none" style={{ borderRadius: '0.5rem', border: '1px solid rgba(0,0,0,0.1)' }} width="1620" height="903" data-path="images/ML/Feature Scaler.png" />
</a>
