minerva.analysis.metrics.pixel_accuracy
Classes
Base class for all metrics present in the Metrics API. |
Module Contents
- class minerva.analysis.metrics.pixel_accuracy.PixelAccuracy(dist_sync_on_step=False)[source]
Bases:
torchmetrics.Metric
Base class for all metrics present in the Metrics API.
This class is inherited by all metrics and implements the following functionality:
Handles the transfer of metric states to the correct device.
Handles the synchronization of metric states across processes.
Provides properties and methods to control the overall behavior of the metric and its states.
The three core methods of the base class are:
add_state()
,forward()
andreset()
which should almost never be overwritten by child classes. Instead, the following methods should be overwrittenupdate()
andcompute()
.- Args:
kwargs: additional keyword arguments, see Metric kwargs for more info.
- compute_on_cpu:
If metric state should be stored on CPU during computations. Only works for list states.
- dist_sync_on_step:
If metric state should synchronize on
forward()
. Default isFalse
.
- process_group:
The process group on which the synchronization is called. Default is the world.
- dist_sync_fn:
Function that performs the allgather option on the metric state. Default is a custom implementation that calls
torch.distributed.all_gather
internally.
- distributed_available_fn:
Function that checks if the distributed backend is available. Defaults to a check of
torch.distributed.is_available()
andtorch.distributed.is_initialized()
.
- sync_on_compute:
If metric state should synchronize when
compute
is called. Default isTrue
.
- compute_with_cache:
If results from
compute
should be cached. Default isTrue
.
Initializes a PixelAccuracy metric object.
Parameters
- dist_sync_on_step: bool, optional
Whether to synchronize metric state across processes at each step. Defaults to False.
- Parameters:
dist_sync_on_step (bool)