From 3044aa18e60bb5d42d880d67b27a7bea0f937653 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 5 Apr 2021 14:45:42 +0200 Subject: [PATCH] Add warning for hyperopt-parameters --- docs/hyperopt.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/hyperopt.md b/docs/hyperopt.md index db7a23f02..07cc963cf 100644 --- a/docs/hyperopt.md +++ b/docs/hyperopt.md @@ -305,6 +305,9 @@ There are four parameter types each suited for different purposes. * `optimize` - when set to `False` parameter will not be included in optimization process. Use these parameters to quickly prototype various ideas. +!!! Warning + Hyperoptable parameters cannot be used in `populate_indicators` - as hyperopt does not recalculate indicators for each epoch, so the starting value would be used in this case. + ## Loss-functions Each hyperparameter tuning requires a target. This is usually defined as a loss function (sometimes also called objective function), which should decrease for more desirable results, and increase for bad results.