From: Jérôme Benoit Date: Fri, 19 Jun 2026 14:04:46 +0000 (+0200) Subject: style(weights): normalize fill bandwidth comment spacing X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=f225edbca0c903868c1dd79ef86da5e98591e161;p=freqai-strategies.git style(weights): normalize fill bandwidth comment spacing --- diff --git a/quickadapter/user_data/strategies/LabelTransformer.py b/quickadapter/user_data/strategies/LabelTransformer.py index 73481d1..8ec3a72 100644 --- a/quickadapter/user_data/strategies/LabelTransformer.py +++ b/quickadapter/user_data/strategies/LabelTransformer.py @@ -80,7 +80,7 @@ FILL_EPSILON_BASELINES: Final[tuple[FillEpsilonBaseline, ...]] = ( FillBandwidth = Literal["fixed", "knn"] FILL_BANDWIDTHS: Final[tuple[FillBandwidth, ...]] = ( "fixed", # 0 - constant sigma = fill_sigma_candles - "knn", # 1 - per-pivot sigma from k-nearest-neighbor index distance + "knn", # 1 - per-pivot sigma from k-nearest-neighbor index distance ) StandardizationType = Literal["none", "zscore", "robust", "mmad", "power_yj"]