Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion source/_static/js/predictorSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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: {
Expand Down
Loading