Package com.google.cloud.aiplatform.v1
Interface Model.DataStatsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Model.DataStats,Model.DataStats.Builder
- Enclosing class:
- Model
public static interface Model.DataStatsOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlongNumber of Annotations that are used for evaluating this Model.longNumber of DataItems that were used for evaluating this Model.longNumber of Annotations that are used for training this Model.longNumber of DataItems that were used for training this Model.longNumber of Annotations that are used for validating this Model during training.longNumber of DataItems that were used for validating this Model during training.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getTrainingDataItemsCount
long getTrainingDataItemsCount()Number of DataItems that were used for training this Model.
int64 training_data_items_count = 1;- Returns:
- The trainingDataItemsCount.
-
getValidationDataItemsCount
long getValidationDataItemsCount()Number of DataItems that were used for validating this Model during training.
int64 validation_data_items_count = 2;- Returns:
- The validationDataItemsCount.
-
getTestDataItemsCount
long getTestDataItemsCount()Number of DataItems that were used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test DataItems used by the first evaluation. If the Model is not evaluated, the number is 0.
int64 test_data_items_count = 3;- Returns:
- The testDataItemsCount.
-
getTrainingAnnotationsCount
long getTrainingAnnotationsCount()Number of Annotations that are used for training this Model.
int64 training_annotations_count = 4;- Returns:
- The trainingAnnotationsCount.
-
getValidationAnnotationsCount
long getValidationAnnotationsCount()Number of Annotations that are used for validating this Model during training.
int64 validation_annotations_count = 5;- Returns:
- The validationAnnotationsCount.
-
getTestAnnotationsCount
long getTestAnnotationsCount()Number of Annotations that are used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test Annotations used by the first evaluation. If the Model is not evaluated, the number is 0.
int64 test_annotations_count = 6;- Returns:
- The testAnnotationsCount.
-