F1Wert
The F1-Wert (German for “F1‑value”) is a statistical measure that evaluates the accuracy of binary classification models in machine learning and information retrieval. It is defined as the harmonic mean of precision and recall, two key performance metrics. Precision is the ratio of correctly predicted positive instances to all instances predicted as positive, while recall is the ratio of correctly predicted positive instances to all actual positive instances.
The F1‑Wert is calculated by the formula:
\[F1 = \frac{2 \times \text{precision} \times \text{recall}}{\text{precision} + \text{recall}}\]
This value ranges from 0 to 1, where 0 indicates the worst possible performance and 1 denotes
The metric is especially useful for imbalanced datasets because it does not consider true negatives, focusing
The F1‑Wert is related to the Dice coefficient and the Jaccard index; the Dice coefficient is twice