LabelingJobLabelCounter constructor
const
LabelingJobLabelCounter({})
Creates a new LabelingJobLabelCounter.
failedNonRetryableError Total number of objects that could not be labeled due to an error.
humanLabeled Total number of objects labeled by a human worker.
machineLabeled Total number of objects labeled by automated data labeling.
totalLabeled Total number of objects labeled.
unlabeled Total number of objects not yet labeled.
Implementation
const LabelingJobLabelCounter({
required this.failedNonRetryableError,
required this.humanLabeled,
required this.machineLabeled,
required this.totalLabeled,
required this.unlabeled,
});