Class: Aws::SageMaker::Types::OptimizationConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure, Aws::Structure::Union
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

OptimizationConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Defined Under Namespace

Classes: ModelCompilationConfig, ModelQuantizationConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#model_compilation_configTypes::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_configTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



35420
35421
35422
# File 'lib/aws-sdk-sagemaker/types.rb', line 35420

def unknown
  @unknown
end