Spaces:
Sleeping
Sleeping
Evgueni Poloukarov
commited on
Commit
·
c366480
1
Parent(s):
67808ce
fix: expand context window from 128h to 504h (21 days)
Browse files- Changed context_hours default from 128 to 504 hours
- This is the minimal change to fix invalid forecast patterns
- All other files unchanged from working commit 67808ce
src/forecasting/chronos_inference.py
CHANGED
|
@@ -114,7 +114,7 @@ class ChronosInferencePipeline:
|
|
| 114 |
run_date: str,
|
| 115 |
borders: Optional[List[str]] = None,
|
| 116 |
forecast_days: int = 7,
|
| 117 |
-
context_hours: int =
|
| 118 |
num_samples: int = 20
|
| 119 |
) -> Dict:
|
| 120 |
"""
|
|
|
|
| 114 |
run_date: str,
|
| 115 |
borders: Optional[List[str]] = None,
|
| 116 |
forecast_days: int = 7,
|
| 117 |
+
context_hours: int = 504,
|
| 118 |
num_samples: int = 20
|
| 119 |
) -> Dict:
|
| 120 |
"""
|