From fabb035cadbdec26811a1715645c04c56d79712d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 19 Jun 2026 16:35:44 +0200 Subject: [PATCH] fix(weights): adjust label weighting defaults --- quickadapter/user_data/strategies/LabelTransformer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickadapter/user_data/strategies/LabelTransformer.py b/quickadapter/user_data/strategies/LabelTransformer.py index d1dd049..1ce4cb1 100644 --- a/quickadapter/user_data/strategies/LabelTransformer.py +++ b/quickadapter/user_data/strategies/LabelTransformer.py @@ -106,13 +106,13 @@ DEFAULTS_LABEL_WEIGHTING: Final[dict[str, Any]] = { "aggregation": COMBINED_AGGREGATIONS[0], # "arithmetic_mean" "softmax_temperature": 1.0, "fill_method": FILL_METHODS[0], # "zero" - "fill_epsilon": 1e-3, + "fill_epsilon": 1e-6, "fill_epsilon_baseline": FILL_EPSILON_BASELINES[0], # "mean" - "fill_sigma_candles": 3.0, + "fill_sigma_candles": 10.0, "fill_sigma_min_candles": 0.5, "fill_bandwidth": FILL_BANDWIDTHS[0], # "fixed" "fill_bandwidth_neighbors": 1, - "fill_bandwidth_alpha": 1.0, + "fill_bandwidth_alpha": 0.5, } DEFAULTS_LABEL_PIPELINE: Final[dict[str, Any]] = { -- 2.53.0