Class: Aws::Personalize::Types::SolutionConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass SolutionConfig data as a hash:

{
  event_value_threshold: "EventValueThreshold",
  hpo_config: {
    hpo_objective: {
      type: "HPOObjectiveType",
      metric_name: "MetricName",
      metric_regex: "MetricRegex",
    },
    hpo_resource_config: {
      max_number_of_training_jobs: "HPOResource",
      max_parallel_training_jobs: "HPOResource",
    },
    algorithm_hyper_parameter_ranges: {
      integer_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          min_value: 1,
          max_value: 1,
        },
      ],
      continuous_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          min_value: 1.0,
          max_value: 1.0,
        },
      ],
      categorical_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          values: ["CategoricalValue"],
        },
      ],
    },
  },
  algorithm_hyper_parameters: {
    "ParameterName" => "ParameterValue",
  },
  feature_transformation_parameters: {
    "ParameterName" => "ParameterValue",
  },
  auto_ml_config: {
    metric_name: "MetricName",
    recipe_list: ["Arn"],
  },
}

Describes the configuration properties for the solution.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#algorithm_hyper_parametersHash<String,String>

Lists the hyperparameter names and ranges.

Returns:

  • (Hash<String,String>)


3767
3768
3769
3770
3771
3772
3773
3774
3775
# File 'lib/aws-sdk-personalize/types.rb', line 3767

class SolutionConfig < Struct.new(
  :event_value_threshold,
  :hpo_config,
  :algorithm_hyper_parameters,
  :feature_transformation_parameters,
  :auto_ml_config)
  SENSITIVE = []
  include Aws::Structure
end

#auto_ml_configTypes::AutoMLConfig

The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

Returns:



3767
3768
3769
3770
3771
3772
3773
3774
3775
# File 'lib/aws-sdk-personalize/types.rb', line 3767

class SolutionConfig < Struct.new(
  :event_value_threshold,
  :hpo_config,
  :algorithm_hyper_parameters,
  :feature_transformation_parameters,
  :auto_ml_config)
  SENSITIVE = []
  include Aws::Structure
end

#event_value_thresholdString

Only events with a value greater than or equal to this threshold are used for training a model.

Returns:

  • (String)


3767
3768
3769
3770
3771
3772
3773
3774
3775
# File 'lib/aws-sdk-personalize/types.rb', line 3767

class SolutionConfig < Struct.new(
  :event_value_threshold,
  :hpo_config,
  :algorithm_hyper_parameters,
  :feature_transformation_parameters,
  :auto_ml_config)
  SENSITIVE = []
  include Aws::Structure
end

#feature_transformation_parametersHash<String,String>

Lists the feature transformation parameters.

Returns:

  • (Hash<String,String>)


3767
3768
3769
3770
3771
3772
3773
3774
3775
# File 'lib/aws-sdk-personalize/types.rb', line 3767

class SolutionConfig < Struct.new(
  :event_value_threshold,
  :hpo_config,
  :algorithm_hyper_parameters,
  :feature_transformation_parameters,
  :auto_ml_config)
  SENSITIVE = []
  include Aws::Structure
end

#hpo_configTypes::HPOConfig

Describes the properties for hyperparameter optimization (HPO).

Returns:



3767
3768
3769
3770
3771
3772
3773
3774
3775
# File 'lib/aws-sdk-personalize/types.rb', line 3767

class SolutionConfig < Struct.new(
  :event_value_threshold,
  :hpo_config,
  :algorithm_hyper_parameters,
  :feature_transformation_parameters,
  :auto_ml_config)
  SENSITIVE = []
  include Aws::Structure
end