Skip to content

Commit

Permalink
algo: make tsf use a reasonable small batch size as default
Browse files Browse the repository at this point in the history
Signed-off-by: Zach Zhu <[email protected]>
  • Loading branch information
zqzten committed Dec 14, 2023
1 parent 1364020 commit 3057d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algorithm/kapacity/timeseries/forecasting/forecaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def fit(freq: str,
context_length: int,
learning_rate: float = 1e-3,
epochs: int = 100,
batch_size: int = 1024,
batch_size: int = 32,
num_workers: int = 0,
model_path: str = './',
df: pd.DataFrame = None,
Expand Down

0 comments on commit 3057d4d

Please sign in to comment.