type property

String? type
getter/setter pair

Type of the EvaluatedAnnotation.

Output only. Possible string values are:

  • "EVALUATED_ANNOTATION_TYPE_UNSPECIFIED" : Invalid value.
  • "TRUE_POSITIVE" : The EvaluatedAnnotation is a true positive. It has a prediction created by the Model and a ground truth Annotation which the prediction matches.
  • "FALSE_POSITIVE" : The EvaluatedAnnotation is false positive. It has a prediction created by the Model which does not match any ground truth annotation.
  • "FALSE_NEGATIVE" : The EvaluatedAnnotation is false negative. It has a ground truth annotation which is not matched by any of the model created predictions.

Implementation

core.String? type;