Class: Google::Cloud::AIPlatform::V1::Schema::TrainingJob::Definition::AutoMlVideoClassificationInputs
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::Schema::TrainingJob::Definition::AutoMlVideoClassificationInputs
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/schema/trainingjob/definition/automl_video_classification.rb
Defined Under Namespace
Modules: ModelType
Instance Attribute Summary collapse
Instance Attribute Details
#model_type ⇒ ::Google::Cloud::AIPlatform::V1::Schema::TrainingJob::Definition::AutoMlVideoClassificationInputs::ModelType
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/cloud/aiplatform/v1/schema/trainingjob/definition/automl_video_classification.rb', line 38 class AutoMlVideoClassificationInputs include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods module ModelType # Should not be set. MODEL_TYPE_UNSPECIFIED = 0 # A model best tailored to be used within Google Cloud, and which cannot # be exported. Default. CLOUD = 1 # A model that, in addition to being available within Google Cloud, can # also be exported (see ModelService.ExportModel) as a TensorFlow or # TensorFlow Lite model and used on a mobile or edge device afterwards. MOBILE_VERSATILE_1 = 2 # A model that, in addition to being available within Google Cloud, can # also be exported (see ModelService.ExportModel) to a Jetson device # afterwards. MOBILE_JETSON_VERSATILE_1 = 3 end end |