Class: Google::Cloud::AIPlatform::V1::ModelSourceInfo

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

Overview

Detail description of the source information of the model.

Defined Under Namespace

Modules: ModelSourceType

Instance Attribute Summary collapse

Instance Attribute Details

#copy::Boolean

Returns If this Model is copy of another Model. If true then source_type pertains to the original.

Returns:

  • (::Boolean)

    If this Model is copy of another Model. If true then source_type pertains to the original.



689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
# File 'proto_docs/google/cloud/aiplatform/v1/model.rb', line 689

class ModelSourceInfo
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Source of the model.
  module ModelSourceType
    # Should not be used.
    MODEL_SOURCE_TYPE_UNSPECIFIED = 0

    # The Model is uploaded by automl training pipeline.
    AUTOML = 1

    # The Model is uploaded by user or custom training pipeline.
    CUSTOM = 2

    # The Model is registered and sync'ed from BigQuery ML.
    BQML = 3

    # The Model is saved or tuned from Model Garden.
    MODEL_GARDEN = 4

    # The Model is saved or tuned from Genie.
    GENIE = 5
  end
end

#source_type::Google::Cloud::AIPlatform::V1::ModelSourceInfo::ModelSourceType

Returns Type of the model source.



689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
# File 'proto_docs/google/cloud/aiplatform/v1/model.rb', line 689

class ModelSourceInfo
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Source of the model.
  module ModelSourceType
    # Should not be used.
    MODEL_SOURCE_TYPE_UNSPECIFIED = 0

    # The Model is uploaded by automl training pipeline.
    AUTOML = 1

    # The Model is uploaded by user or custom training pipeline.
    CUSTOM = 2

    # The Model is registered and sync'ed from BigQuery ML.
    BQML = 3

    # The Model is saved or tuned from Model Garden.
    MODEL_GARDEN = 4

    # The Model is saved or tuned from Genie.
    GENIE = 5
  end
end