CreateSolution : algorithmHyperParameters vs algorithmHyperParameterRanges

0

When we use CreateSolution, what is the difference between algorithmHyperParameters and algorithmHyperParameterRanges?

In the documentation, it says that in algorithmHyperParameterRanges we should specify the hyperparameters and their allowable ranges and for algorithmHyperParameters we should list the hyperparameter names and ranges. How are they different and when do we use what? Can you please provide an example?

Thank you!

已提问 2 年前205 查看次数
1 回答
1

algorithmHyperparameters allows you to specify exact values for the hyperparameters, whereas algorithmHyperParameterRanges is used during hyperparameter optimization to set the range for the hyperparameters you want to optimize. The example below (taken from this page of the documentation) shows the difference. The hidden_dimension variable is set to an exact value of 55 using algorithmHyperParameters. The bptt variable is set to be an integer value between 20 and 40 using algorithmHyperParameterRanges under hpoConfig - the exact value will be determined during hyperparameter optimization. Note that performHPO must be set to true to activate the optimization process. The example also shows how to handle a boolean variable for optimization through the recency_mask variable, and continuous variables are also supported.

{
  "performAutoML": false,
  "recipeArn": "arn:aws:personalize:::recipe/aws-hrnn",
  "performHPO": true,
  "solutionConfig": {
      "algorithmHyperParameters": {
          "hidden_dimension": "55"
      },
      "hpoConfig": {
          "algorithmHyperParameterRanges": {
              "categoricalHyperParameterRanges": [
                  {
                      "name": "recency_mask",
                      "values": [ "true", "false" ]
                  }
              ],
              "integerHyperParameterRanges": [
                  {
                      "name": "bptt",
                      "minValue": 20,
                      "maxValue": 40
                  }
              ]
          },
          "hpoResourceConfig": {
              "maxNumberOfTrainingJobs": "4",
              "maxParallelTrainingJobs": "2"
          }
      }
  }
}
AWS
S_Moose
已回答 2 年前
  • Okay, got it. Thank you for the clarification!

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则