torcheval.metrics.BinaryF1Score¶
-
class
torcheval.metrics.
BinaryF1Score
(*, threshold: float = 0.5, device: Optional[device] = None)[source]¶ Compute binary f1 score, which is defined as the harmonic mean of precision and recall. We convert NaN to zero when f1 score is NaN. This happens when either precision or recall is NaN or when both precision and recall are zero. Its functional version is :func:
torcheval.metrics.functional.binary_f1_score
. See alsoMulticlassF1Score
Parameters: threshold (float, optional) – Threshold for converting input into predicted labels for each sample. torch.where(input < threshold, 0, 1)
will be applied to theinput
.Example:
>>> import torch >>> from torcheval.metrics import BinaryF1Score >>> metric = BinaryF1Score() >>> input = torch.tensor([0, 1, 1, 0]) >>> target = torch.tensor([0, 1, 0, 1]) >>> metric.update(input, target) >>> metric.compute() tensor(0.5000) >>> metric = BinaryF1Score(threshold=0.7) >>> input = torch.tensor([.2, .8, .7, .6]) >>> target = torch.tensor([0, 1, 0, 1]) >>> metric.update(input, target) >>> metric.compute() tensor(0.5000) >>> input2 = torch.tensor([.9, .5, .1, .7]) >>> target2 = torch.tensor([0, 1, 1, 1]) >>> metric.update(input2, target2) >>> metric.compute() tensor(0.4444)
-
__init__
(*, threshold: float = 0.5, device: Optional[device] = None) None [source]¶ Initialize a metric object and its internal states.
Use
self._add_state()
to initialize state variables of your metric class. The state variables should be eithertorch.Tensor
, a list oftorch.Tensor
, or a dictionary withtorch.Tensor
as values
Methods
__init__
(*[, threshold, device])Initialize a metric object and its internal states. compute
()Return the f1 score. load_state_dict
(state_dict[, strict])Loads metric state variables from state_dict. merge_state
(metrics)Implement this method to update the current metric's state variables to be the merged states of the current metric and input metrics. reset
()Reset the metric state variables to their default value. state_dict
()Save metric state variables in state_dict. to
(device, *args, **kwargs)Move tensors in metric state variables to device. update
(input, target)Update states with the ground truth labels and predictions. Attributes
device
The last input device of Metric.to()
.-