Class: Google::Cloud::AIPlatform::V1::ModelSourceInfo
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::ModelSourceInfo
- 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
-
#copy ⇒ ::Boolean
If this Model is copy of another Model.
-
#source_type ⇒ ::Google::Cloud::AIPlatform::V1::ModelSourceInfo::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.
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 |
# File 'proto_docs/google/cloud/aiplatform/v1/model.rb', line 799 class ModelSourceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Source of the model. # Different from `objective` field, this `ModelSourceType` enum # indicates the source from which the model was accessed or obtained, # whereas the `objective` indicates the overall aim or function of this # 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::AIPlatform::V1::ModelSourceInfo::ModelSourceType
Returns Type of the model source.
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 |
# File 'proto_docs/google/cloud/aiplatform/v1/model.rb', line 799 class ModelSourceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Source of the model. # Different from `objective` field, this `ModelSourceType` enum # indicates the source from which the model was accessed or obtained, # whereas the `objective` indicates the overall aim or function of this # 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 |