]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
chore(quickadapter): update label_weighting and label_smoothing templates main
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 23 Aug 2026 21:14:34 +0000 (23:14 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 23 Aug 2026 21:14:34 +0000 (23:14 +0200)
- 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

index 70951c2ea735bdccfb122de187bd38c4dd20bbe5..93b70abec743729efe5d2f01a1e2a6bdb46bbfd7 100644 (file)
       //   }
       // }
     },
+    // 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": {
       //   "&s-extrema": {
       //     "method": "kaiser",
       //     "window_candles": 5,
-      //     "beta": 12.0
+      //     "beta": 8.0
       //   }
       // }
     },