Class: Aws::SageMaker::Types::HyperParameterSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::HyperParameterSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Defines a hyperparameter to be used by an algorithm.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #default_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default value for this hyperparameter.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A brief description of the hyperparameter.
 - 
  
    
      #is_required  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether this hyperparameter is required.
 - 
  
    
      #is_tunable  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of this hyperparameter.
 - 
  
    
      #range  ⇒ Types::ParameterRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The allowed range for this hyperparameter.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of this hyperparameter.
 
Instance Attribute Details
#default_value ⇒ String
The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
A brief description of the hyperparameter.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#is_required ⇒ Boolean
Indicates whether this hyperparameter is required.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#is_tunable ⇒ Boolean
Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of this hyperparameter. The name must be unique.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#range ⇒ Types::ParameterRange
The allowed range for this hyperparameter.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of this hyperparameter. The valid types are ‘Integer`, `Continuous`, `Categorical`, and `FreeText`.
      23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 23986 class HyperParameterSpecification < Struct.new( :name, :description, :type, :range, :is_tunable, :is_required, :default_value) SENSITIVE = [] include Aws::Structure end  |