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!

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南