@@ -623,7 +623,7 @@ class Precision(StatScores):
623623
624624 The reduction method (how the precision scores are aggregated) is controlled by the
625625 ``average`` parameter, and additionally by the ``mdmc_average`` parameter in the
626- multi-dimensional multi-class case. Accepts all inputs listed in :ref:`pages/classification:input types`.
626+ multi-dimensional multi-class case.
627627
628628 Args:
629629 num_classes:
@@ -657,11 +657,11 @@ class Precision(StatScores):
657657 - ``'samplewise'``: In this case, the statistics are computed separately for each
658658 sample on the ``N`` axis, and then averaged over samples.
659659 The computation for each sample is done by treating the flattened extra axes ``...``
660- (see :ref:`pages/classification:input types`) as the ``N`` dimension within the sample,
660+ as the ``N`` dimension within the sample,
661661 and computing the metric for the sample based on that.
662662
663663 - ``'global'``: In this case the ``N`` and ``...`` dimensions of the inputs
664- (see :ref:`pages/classification:input types`) are flattened into a new ``N_X`` sample axis, i.e.
664+ are flattened into a new ``N_X`` sample axis, i.e.
665665 the inputs are treated as if they were ``(N_X, C)``.
666666 From here on the ``average`` parameter applies as usual.
667667
@@ -678,9 +678,7 @@ class Precision(StatScores):
678678
679679 multiclass:
680680 Used only in certain special cases, where you want to treat inputs as a different type
681- than what they appear to be. See the parameter's
682- :ref:`documentation section <pages/classification:using the multiclass parameter>`
683- for a more detailed explanation and examples.
681+ than what they appear to be.
684682
685683 kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.
686684
@@ -813,7 +811,7 @@ class Recall(StatScores):
813811
814812 The reduction method (how the recall scores are aggregated) is controlled by the
815813 ``average`` parameter, and additionally by the ``mdmc_average`` parameter in the
816- multi-dimensional multi-class case. Accepts all inputs listed in :ref:`pages/classification:input types`.
814+ multi-dimensional multi-class case.
817815
818816 Args:
819817 num_classes:
@@ -846,11 +844,10 @@ class Recall(StatScores):
846844 - ``'samplewise'``: In this case, the statistics are computed separately for each
847845 sample on the ``N`` axis, and then averaged over samples.
848846 The computation for each sample is done by treating the flattened extra axes ``...``
849- (see :ref:`pages/classification:input types`) as the ``N`` dimension within the sample,
847+ as the ``N`` dimension within the sample,
850848 and computing the metric for the sample based on that.
851849
852850 - ``'global'``: In this case the ``N`` and ``...`` dimensions of the inputs
853- (see :ref:`pages/classification:input types`)
854851 are flattened into a new ``N_X`` sample axis, i.e. the inputs are treated as if they
855852 were ``(N_X, C)``. From here on the ``average`` parameter applies as usual.
856853
@@ -868,9 +865,7 @@ class Recall(StatScores):
868865
869866 multiclass:
870867 Used only in certain special cases, where you want to treat inputs as a different type
871- than what they appear to be. See the parameter's
872- :ref:`documentation section <pages/classification:using the multiclass parameter>`
873- for a more detailed explanation and examples.
868+ than what they appear to be.
874869
875870 kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.
876871
0 commit comments