Lower Torch confidence threshold

This commit is contained in:
Codex
2026-06-24 05:51:55 +03:00
parent a6c94b1555
commit 15a50fb575
6 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -262,7 +262,7 @@ def load_settings(env_file: str | Path | None = None) -> Settings:
time_series_forecast_horizon=_int_env("TIME_SERIES_FORECAST_HORIZON", 3),
time_series_min_edge_percent=_float_env("TIME_SERIES_MIN_EDGE_PERCENT", 0.08),
time_series_min_probability_up=_float_env("TIME_SERIES_MIN_PROBABILITY_UP", 0.58),
time_series_min_confidence=_float_env("TIME_SERIES_MIN_CONFIDENCE", 0.72),
time_series_min_confidence=_float_env("TIME_SERIES_MIN_CONFIDENCE", 0.4),
time_series_max_adjustment=_float_env("TIME_SERIES_MAX_ADJUSTMENT", 0.08),
time_series_lstm_enabled=_bool_env("TIME_SERIES_LSTM_ENABLED", True),
time_series_lstm_model_path=Path(os.getenv("TIME_SERIES_LSTM_MODEL_PATH", "runtime/lstm_forecaster.json")),