v1

latestOpenAPI 3.0.12026-07-14644253.6 KB
Hyperparameter Management

Set hyperparameters

Set entity global hyperparameters. Hyperparameters can be overwritten by user and planning level (add to JSON body).

post/hyperparameter

Headers

Tokenstring

User Authentication Token

Request body

abcClassificationThresholdAnumber double nullable
abcClassificationThresholdBnumber double nullable
abcClassificationThresholdCnumber double nullable
discardDataboolean nullable
errorType'MeanAbsolutePercentageError' | 'MeanSquaredError' | 'MeanAbsoluteError' | 'MedianAbsoluteDeviation' | 'None'
holdOutPeriodinteger nullable
noFcstinteger nullable
outlierDetectionboolean nullable
periodicityinteger nullable
xyzClassificationThresholdXnumber double nullable
xyzClassificationThresholdYnumber double nullable
xyzClassificationThresholdZnumber double nullable

Example request

{
  "abcClassificationThresholdA": 0.8,
  "abcClassificationThresholdB": 0.95,
  "abcClassificationThresholdC": 0.95,
  "errorType": "MeanAbsolutePercentageError",
  "holdOutPeriod": 4,
  "noFcst": 18,
  "outlierDetection": true,
  "periodicity": 12,
  "xyzClassificationThresholdX": 0.3,
  "xyzClassificationThresholdY": 0.6,
  "xyzClassificationThresholdZ": 0.6
}

Response

Success