Class: Google::Cloud::DataCatalog::V1::VertexModelSourceInfo
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::VertexModelSourceInfo
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Detail description of the source information of a Vertex model.
Defined Under Namespace
Modules: ModelSourceType
Instance Attribute Summary collapse
-
#copy ⇒ ::Boolean
If this Model is copy of another Model.
-
#source_type ⇒ ::Google::Cloud::DataCatalog::V1::VertexModelSourceInfo::ModelSourceType
Type of the model source.
Instance Attribute Details
#copy ⇒ ::Boolean
Returns If this Model is copy of another Model. If true then source_type pertains to the original.
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 893 class VertexModelSourceInfo 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 # The Model is uploaded by text embedding finetuning pipeline. CUSTOM_TEXT_EMBEDDING = 6 # The Model is saved or tuned from Marketplace. MARKETPLACE = 7 end end |
#source_type ⇒ ::Google::Cloud::DataCatalog::V1::VertexModelSourceInfo::ModelSourceType
Returns Type of the model source.
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 893 class VertexModelSourceInfo 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 # The Model is uploaded by text embedding finetuning pipeline. CUSTOM_TEXT_EMBEDDING = 6 # The Model is saved or tuned from Marketplace. MARKETPLACE = 7 end end |