From: Jérôme Benoit Date: Sun, 23 Aug 2026 21:14:34 +0000 (+0200) Subject: chore(quickadapter): update label_weighting and label_smoothing templates X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=refs%2Fheads%2Fmain;p=freqai-strategies.git 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) --- 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 // } // } },