Package com.google.cloud.aiplatform.v1
Interface ErrorAnalysisAnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ErrorAnalysisAnnotation
,ErrorAnalysisAnnotation.Builder
public interface ErrorAnalysisAnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorAnalysisAnnotation.AttributedItem
getAttributedItems(int index)
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.int
getAttributedItemsCount()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.List<ErrorAnalysisAnnotation.AttributedItem>
getAttributedItemsList()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.ErrorAnalysisAnnotation.AttributedItemOrBuilder
getAttributedItemsOrBuilder(int index)
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.List<? extends ErrorAnalysisAnnotation.AttributedItemOrBuilder>
getAttributedItemsOrBuilderList()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.double
getOutlierScore()
The outlier score of this annotated item.double
getOutlierThreshold()
The threshold used to determine if this annotation is an outlier or not.ErrorAnalysisAnnotation.QueryType
getQueryType()
The query type used for finding the attributed items.int
getQueryTypeValue()
The query type used for finding the attributed items.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAttributedItemsList
List<ErrorAnalysisAnnotation.AttributedItem> getAttributedItemsList()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.
repeated .google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.AttributedItem attributed_items = 1;
-
getAttributedItems
ErrorAnalysisAnnotation.AttributedItem getAttributedItems(int index)
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.
repeated .google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.AttributedItem attributed_items = 1;
-
getAttributedItemsCount
int getAttributedItemsCount()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.
repeated .google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.AttributedItem attributed_items = 1;
-
getAttributedItemsOrBuilderList
List<? extends ErrorAnalysisAnnotation.AttributedItemOrBuilder> getAttributedItemsOrBuilderList()
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.
repeated .google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.AttributedItem attributed_items = 1;
-
getAttributedItemsOrBuilder
ErrorAnalysisAnnotation.AttributedItemOrBuilder getAttributedItemsOrBuilder(int index)
Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.
repeated .google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.AttributedItem attributed_items = 1;
-
getQueryTypeValue
int getQueryTypeValue()
The query type used for finding the attributed items.
.google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.QueryType query_type = 2;
- Returns:
- The enum numeric value on the wire for queryType.
-
getQueryType
ErrorAnalysisAnnotation.QueryType getQueryType()
The query type used for finding the attributed items.
.google.cloud.aiplatform.v1.ErrorAnalysisAnnotation.QueryType query_type = 2;
- Returns:
- The queryType.
-
getOutlierScore
double getOutlierScore()
The outlier score of this annotated item. Usually defined as the min of all distances from attributed items.
double outlier_score = 3;
- Returns:
- The outlierScore.
-
getOutlierThreshold
double getOutlierThreshold()
The threshold used to determine if this annotation is an outlier or not.
double outlier_threshold = 4;
- Returns:
- The outlierThreshold.
-
-