@@ -52,11 +52,11 @@ class FBeta(Metric):
5252 Threshold value for binary or multi-label logits. default: 0.5
5353
5454 average:
55- * ` 'micro'` computes metric globally
56- * ` 'macro'` computes metric for each class and uniformly averages them
57- * ` 'weighted'` computes metric for each class and does a weighted-average,
58- where each class is weighted by their support (accounts for class imbalance)
59- * `None ` computes and returns the metric per class
55+ - `` 'micro'` ` computes metric globally
56+ - `` 'macro'` ` computes metric for each class and uniformly averages them
57+ - `` 'weighted'` ` computes metric for each class and does a weighted-average,
58+ where each class is weighted by their support (accounts for class imbalance)
59+ - ``'none'` ` computes and returns the metric per class
6060
6161 multilabel: If predictions are from multilabel classification.
6262 compute_on_step:
@@ -185,11 +185,11 @@ class F1(FBeta):
185185 Threshold value for binary or multi-label logits. default: 0.5
186186
187187 average:
188- * ` 'micro'` computes metric globally
189- * ` 'macro'` computes metric for each class and uniformly averages them
190- * ` 'weighted'` computes metric for each class and does a weighted-average,
191- where each class is weighted by their support (accounts for class imbalance)
192- * `None ` computes and returns the metric per class
188+ - `` 'micro'` ` computes metric globally
189+ - `` 'macro'` ` computes metric for each class and uniformly averages them
190+ - `` 'weighted'` ` computes metric for each class and does a weighted-average,
191+ where each class is weighted by their support (accounts for class imbalance)
192+ - ``'none'` ` computes and returns the metric per class
193193
194194 multilabel: If predictions are from multilabel classification.
195195 compute_on_step:
0 commit comments