File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 2929 python run.py --inference
3030"""
3131)
32- @click .option (
33- "--forecast-periods" ,
34- type = int ,
35- default = 30 ,
36- help = "Number of days to forecast into the future" ,
37- )
38- @click .option (
39- "--test-size" ,
40- type = float ,
41- default = 0.2 ,
42- help = "Proportion of data to use for testing" ,
43- )
44- @click .option (
45- "--weekly-seasonality" ,
46- type = bool ,
47- default = True ,
48- help = "Whether to include weekly seasonality in the model" ,
49- )
5032@click .option (
5133 "--no-cache" ,
5234 is_flag = True ,
7254 help = "Enable debug logging" ,
7355)
7456def main (
75- forecast_periods : int = 30 ,
76- test_size : float = 0.2 ,
77- weekly_seasonality : bool = True ,
7857 no_cache : bool = False ,
7958 inference : bool = False ,
8059 log_file : str = None ,
@@ -83,9 +62,6 @@ def main(
8362 """Run a simplified retail forecasting pipeline with ZenML.
8463
8564 Args:
86- forecast_periods: Number of days to forecast into the future
87- test_size: Proportion of data to use for testing
88- weekly_seasonality: Whether to include weekly seasonality in the model
8965 no_cache: Disable caching for the pipeline run
9066 inference: Run the inference pipeline instead of the training pipeline
9167 log_file: Path to log file
You can’t perform that action at this time.
0 commit comments