File tree 1 file changed +6
-4
lines changed 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1274,10 +1274,12 @@ def fbeta_score(
1274
1274
The F-beta score is the weighted harmonic mean of precision and recall,
1275
1275
reaching its optimal value at 1 and its worst value at 0.
1276
1276
1277
- The `beta` parameter determines the weight of recall in the combined
1278
- score. ``beta < 1`` lends more weight to precision, while ``beta > 1``
1279
- favors recall (``beta -> 0`` considers only precision, ``beta -> +inf``
1280
- only recall).
1277
+ The `beta` parameter represents the ratio of recall importance to
1278
+ precision importance. `beta > 1` gives more weight to recall, while
1279
+ `beta < 1` favors precision. For example, `beta = 2` makes recall twice
1280
+ as important as precision, while `beta = 0.5` does the opposite.
1281
+ Asymptotically, `beta -> +inf` considers only recall, and `beta -> 0`
1282
+ only precision.
1281
1283
1282
1284
Read more in the :ref:`User Guide <precision_recall_f_measure_metrics>`.
1283
1285
You can’t perform that action at this time.
0 commit comments