Show / Hide Table of Contents

Class GoogleCloudAiplatformV1EvaluatedAnnotation

True positive, false positive, or false negative. EvaluatedAnnotation is only available under ModelEvaluationSlice with slice of annotationSpec dimension.

Inheritance
object
GoogleCloudAiplatformV1EvaluatedAnnotation
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1EvaluatedAnnotation : IDirectResponseSchema

Properties

DataItemPayload

Output only. The data item payload that the Model predicted this EvaluatedAnnotation on.

Declaration
[JsonProperty("dataItemPayload")]
public virtual object DataItemPayload { get; set; }
Property Value
Type Description
object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ErrorAnalysisAnnotations

Annotations of model error analysis results.

Declaration
[JsonProperty("errorAnalysisAnnotations")]
public virtual IList<GoogleCloudAiplatformV1ErrorAnalysisAnnotation> ErrorAnalysisAnnotations { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1ErrorAnalysisAnnotation>

EvaluatedDataItemViewId

Output only. ID of the EvaluatedDataItemView under the same ancestor ModelEvaluation. The EvaluatedDataItemView consists of all ground truths and predictions on data_item_payload.

Declaration
[JsonProperty("evaluatedDataItemViewId")]
public virtual string EvaluatedDataItemViewId { get; set; }
Property Value
Type Description
string

Explanations

Explanations of predictions. Each element of the explanations indicates the explanation for one explanation Method. The attributions list in the EvaluatedAnnotationExplanation.explanation object corresponds to the predictions list. For example, the second element in the attributions list explains the second element in the predictions list.

Declaration
[JsonProperty("explanations")]
public virtual IList<GoogleCloudAiplatformV1EvaluatedAnnotationExplanation> Explanations { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1EvaluatedAnnotationExplanation>

GroundTruths

Output only. The ground truth Annotations, i.e. the Annotations that exist in the test data the Model is evaluated on. For true positive, there is one and only one ground truth annotation, which matches the only prediction in predictions. For false positive, there are zero or more ground truth annotations that are similar to the only prediction in predictions, but not enough for a match. For false negative, there is one and only one ground truth annotation, which doesn't match any predictions created by the model. The schema of the ground truth is stored in ModelEvaluation.annotation_schema_uri

Declaration
[JsonProperty("groundTruths")]
public virtual IList<object> GroundTruths { get; set; }
Property Value
Type Description
IList<object>

Predictions

Output only. The model predicted annotations. For true positive, there is one and only one prediction, which matches the only one ground truth annotation in ground_truths. For false positive, there is one and only one prediction, which doesn't match any ground truth annotation of the corresponding data_item_view_id. For false negative, there are zero or more predictions which are similar to the only ground truth annotation in ground_truths but not enough for a match. The schema of the prediction is stored in ModelEvaluation.annotation_schema_uri

Declaration
[JsonProperty("predictions")]
public virtual IList<object> Predictions { get; set; }
Property Value
Type Description
IList<object>

Type

Output only. Type of the EvaluatedAnnotation.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX