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

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

Returns Type of the model source.



603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
# File 'proto_docs/google/cloud/aiplatform/v1/model.rb', line 603

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
  end
end