Class: Google::Cloud::AIPlatform::V1::StratifiedSplit

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb

Overview

Assigns input data to the training, validation, and test sets so that the distribution of values found in the categorical column (as specified by the key field) is mirrored within each split. The fraction values determine the relative sizes of the splits.

For example, if the specified column has three values, with 50% of the rows having value "A", 25% value "B", and 25% value "C", and the split fractions are specified as 80/10/10, then the training set will constitute 80% of the training data, with about 50% of the training set rows having the value "A" for the specified column, about 25% having the value "B", and about 25% having the value "C".

Only the top 500 occurring values are used; any values not in the top 500 values are randomly assigned to a split. If less than three rows contain a specific value, those rows are randomly assigned.

Supported only for tabular Datasets.

Instance Attribute Summary collapse

Instance Attribute Details

#key::String

Returns Required. The key is a name of one of the Dataset's data columns. The key provided must be for a categorical column.

Returns:

  • (::String)

    Required. The key is a name of one of the Dataset's data columns. The key provided must be for a categorical column.



427
428
429
430
# File 'proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb', line 427

class StratifiedSplit
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#test_fraction::Float

Returns The fraction of the input data that is to be used to evaluate the Model.

Returns:

  • (::Float)

    The fraction of the input data that is to be used to evaluate the Model.



427
428
429
430
# File 'proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb', line 427

class StratifiedSplit
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#training_fraction::Float

Returns The fraction of the input data that is to be used to train the Model.

Returns:

  • (::Float)

    The fraction of the input data that is to be used to train the Model.



427
428
429
430
# File 'proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb', line 427

class StratifiedSplit
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#validation_fraction::Float

Returns The fraction of the input data that is to be used to validate the Model.

Returns:

  • (::Float)

    The fraction of the input data that is to be used to validate the Model.



427
428
429
430
# File 'proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb', line 427

class StratifiedSplit
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end