Skip to content

Commit d919c4e

Browse files
committed
Remove unused options from main function
1 parent 042d9b8 commit d919c4e

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

retail-forecast/run.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,6 @@
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,
@@ -72,9 +54,6 @@
7254
help="Enable debug logging",
7355
)
7456
def 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

0 commit comments

Comments
 (0)