diff --git a/source/_static/js/predictorSpec.js b/source/_static/js/predictorSpec.js index f4955fd..6e06180 100644 --- a/source/_static/js/predictorSpec.js +++ b/source/_static/js/predictorSpec.js @@ -1450,7 +1450,15 @@ const predictorSpec = { type: { type: "string", description: "Type of kernel to use with GP.", - enum: ["linear", "rbf", "matern21", "matern32"], + enum: [ + "linear", + "rbf", + "matern12", + "matern32", + "matern52", + "periodic", + "rational_quadratic", + ], example: "rbf", }, multitask: { @@ -1459,6 +1467,20 @@ const predictorSpec = { example: true, default: false, }, + period: { + type: "number", + format: "double", + description: + "Period length for the periodic kernel. Only valid when type is periodic.", + example: 1, + }, + alpha: { + type: "number", + format: "double", + description: + "Scale-mixture parameter for the rational_quadratic kernel; must be > 0. Only valid when type is rational_quadratic.", + example: 1, + }, }, }, TrainRequestGP: {