Class: Aws::SageMaker::Types::OptimizationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::OptimizationConfig
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
OptimizationConfig is a union - when making an API calls you must set exactly one of the members.
OptimizationConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OptimizationConfig corresponding to the set member.
Settings for an optimization technique that you apply with a model optimization job.
Direct Known Subclasses
Defined Under Namespace
Classes: ModelCompilationConfig, ModelQuantizationConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_compilation_config ⇒ Types::ModelCompilationConfig
Settings for the model compilation technique that’s applied by a model optimization job.
-
#model_quantization_config ⇒ Types::ModelQuantizationConfig
Settings for the model quantization technique that’s applied by a model optimization job.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#model_compilation_config ⇒ Types::ModelCompilationConfig
Settings for the model compilation technique that’s applied by a model optimization job.
35420 35421 35422 35423 35424 35425 35426 35427 35428 35429 35430 35431 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35420 class OptimizationConfig < Struct.new( :model_quantization_config, :model_compilation_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ModelQuantizationConfig < OptimizationConfig; end class ModelCompilationConfig < OptimizationConfig; end class Unknown < OptimizationConfig; end end |
#model_quantization_config ⇒ Types::ModelQuantizationConfig
Settings for the model quantization technique that’s applied by a model optimization job.
35420 35421 35422 35423 35424 35425 35426 35427 35428 35429 35430 35431 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35420 class OptimizationConfig < Struct.new( :model_quantization_config, :model_compilation_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ModelQuantizationConfig < OptimizationConfig; end class ModelCompilationConfig < OptimizationConfig; end class Unknown < OptimizationConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
35420 35421 35422 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35420 def unknown @unknown end |