M

Min-Max-Normalisierung

Min-Max-Normalisierung skaliert Daten auf einen festen Bereich, typischerweise [0, 1], um die Modellleistung im maschinellen Lernen zu verbessern.

Min-Max-Normalisierung ist eine Technik der Datenvorverarbeitung used to scale numerical features to a specific range, usually between 0 and 1. This method transforms the original data points into a normalized scale, making it easier for maschinellem Lernen algorithms to process the data effectively. The formula used for min-max normalization is:

Xnorm = (X – Xmin) / (Xmax – Xmin)

Wo:

  • Xnorm is the normalisierter Wert.
  • X ist der ursprüngliche Wert.
  • Xmin is the minimum value in the dataset.
  • Xmax ist der maximale Wert im Datensatz.

By applying this transformation, the data is reshaped so that it fits within the desired range, which helps in reducing the effects of outliers and improving convergence during model training. Min-Max normalization is particularly useful for algorithms that are sensitive to the scale of data, such as neural networks and k-nächste Nachbarn.

However, it’s important to be aware that min-max normalization can be sensitive to outliers since they can significantly affect the minimum and maximum values. Therefore, it may be advisable to use other Normalisierungstechniken wenn der Datensatz extreme Werte enthält.

Strg + /