From dd2a4ac068ac4f5de43e75fd69dbbba2f8da0ae1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 23 Aug 2026 23:14:34 +0200 Subject: [PATCH] chore(quickadapter): update label_weighting and label_smoothing templates - set label_smoothing method to kaiser_bessel_derived with window_candles 6 - add commented alternative label_weighting example (amplitude strategy, epsilon_gaussian fill, knn bandwidth) - align commented per-label beta example with canonical default (8.0) --- quickadapter/user_data/config-template.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/quickadapter/user_data/config-template.json b/quickadapter/user_data/config-template.json index 70951c2..93b70ab 100644 --- a/quickadapter/user_data/config-template.json +++ b/quickadapter/user_data/config-template.json @@ -120,9 +120,19 @@ // } // } }, + // Alternative example configuration with label_weighting (amplitude strategy, Gaussian fill): + // "label_weighting": { + // "strategy": "amplitude", + // "fill_method": "epsilon_gaussian", + // "fill_sigma_candles": 25.0, + // "fill_bandwidth": "knn", + // "fill_bandwidth_neighbors": 1, + // "fill_bandwidth_alpha": 0.5, + // "fill_sigma_min_candles": 0.5 + // }, "label_smoothing": { - "method": "kaiser", - "window_candles": 5, + "method": "kaiser_bessel_derived", + "window_candles": 6, "beta": 10.0 // Alternative per-label format: remove the sibling keys above, then uncomment: // "default": { @@ -132,7 +142,7 @@ // "&s-extrema": { // "method": "kaiser", // "window_candles": 5, - // "beta": 12.0 + // "beta": 8.0 // } // } }, -- 2.53.0