Predicted Negative
MLMetrics.predicted_negative
— Function.predicted_negative(targets, outputs, [encoding]) -> Union{Int, Dict}
Count the number of negative predicted outcomes in outputs
. Which values denote "negative" depends on the given (or inferred) encoding
. Typically both parameters are arrays of some form, (e.g. vectors or row-vectors), but its also possible to provide a single obseration as "scalar" value.
The return value of the function depends on the number of labels in the given encoding
. In case the encoding
is binary (i.e. it has exactly 2 labels), a single integer value is returned. Otherwise, the function will compute a separate result for each individual label, where that label is treated as "positive" and the other labels are treated as "negative". These results are then returned as a single dictionary with an entry for each label.
If encoding
is omitted, the appropriate MLLabelUtils.LabelEncoding
will be inferred from the types and/or values of targets
and outputs
. Note that omitting the encoding
can cause performance penalties, which may include a lack of return-type inference.
Arguments
targets
: Either an array of multiple ground truths $\mathbf{y}$, or a single ground truth $y$.outputs
: Either an array of multiple predicted outputs $\mathbf{\hat{y}}$, or a single prediction $\hat{y}$.encoding
: Optional. Specifies the possible values intargets
andoutputs
and their interpretation (e.g. what constitutes as a positive or negative label, how many labels exist, etc). It can either be an object from the namespaceLabelEnc
, or a vector of labels.
See also
predicted_positive
, condition_negative
Examples
julia> predicted_negative(1, 0, LabelEnc.ZeroOne()) # single observation
1
julia> predicted_negative([1,0,1,1,0], [1,1,1,0,0]) # multiple observations
2
julia> predicted_negative([:a,:a,:b,:b,:c,:c], [:a,:b,:b,:b,:a,:a]) # multi-class
Dict{Symbol,Int64} with 3 entries:
:a => 3
:b => 3
:c => 6