Package com.google.cloud.aiplatform.v1
Interface FractionSplitOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FractionSplit,FractionSplit.Builder
@Generated
public interface FractionSplitOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiondoubleThe fraction of the input data that is to be used to evaluate the Model.doubleThe fraction of the input data that is to be used to train the Model.doubleThe fraction of the input data that is to be used to validate the Model.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
-
getTrainingFraction
double getTrainingFraction()The fraction of the input data that is to be used to train the Model.
double training_fraction = 1;- Returns:
- The trainingFraction.
-
getValidationFraction
double getValidationFraction()The fraction of the input data that is to be used to validate the Model.
double validation_fraction = 2;- Returns:
- The validationFraction.
-
getTestFraction
double getTestFraction()The fraction of the input data that is to be used to evaluate the Model.
double test_fraction = 3;- Returns:
- The testFraction.
-