Skip to content

Commit

Permalink
fix duplicate keywork arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiegel95 committed Nov 18, 2024
1 parent 7e6aea1 commit 7c0e48f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tsfm_public/toolkit/time_series_forecasting_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,11 @@ def preprocess(self, time_series, **kwargs) -> Dict[str, Union[GenericTensor, Li
time_series=time_series,
freq=self.feature_extractor.freq if self.feature_extractor else None,
timestamp_column=timestamp_column,
freq=self.feature_extractor.freq if self.feature_extractor else None,
grouping_columns=id_columns,
periods=prediction_length,
)

# use forecasing dataset to do the preprocessing
# use forecasting dataset to do the preprocessing
dataset = ForecastDFDataset(
time_series,
**kwargs,
Expand Down

0 comments on commit 7c0e48f

Please sign in to comment.