action i_cue_get_hyperparameter { label: "Get hyperparameters" description: "Get entity global hyperparameters." provider: i_cue method: GET path: "/hyperparameter" encoding: json input: { type: "object" properties: { Token: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { abcClassificationThresholdA: { type: "number" format: "double" } abcClassificationThresholdB: { type: "number" format: "double" } abcClassificationThresholdC: { type: "number" format: "double" } discardData: { type: "boolean" } errorType: { type: "string" enum: ["MeanAbsolutePercentageError", "MeanSquaredError", "MeanAbsoluteError", "MedianAbsoluteDeviation", "None"] } holdOutPeriod: { type: "integer" format: "int32" } noFcst: { type: "integer" format: "int32" } outlierDetection: { type: "boolean" } periodicity: { type: "integer" format: "int32" } xyzClassificationThresholdX: { type: "number" format: "double" } xyzClassificationThresholdY: { type: "number" format: "double" } xyzClassificationThresholdZ: { type: "number" format: "double" } } additionalProperties: false } }