TargetType
- The type of the target (ground-truth).EstimateType
- The type of the estimate (prediction). Typically this is the same as
TargetType, but it does not have to be.public interface TargetEstimatePair<TargetType,EstimateType> extends Pair<TargetType,EstimateType>
Modifier and Type | Method and Description |
---|---|
EstimateType |
getEstimate()
Gets the estimate, which is the prediction or guess.
|
TargetType |
getTarget()
Gets the target, which is the ground-truth or actual value.
|
TargetType getTarget()
EstimateType getEstimate()