Skip to content

Commit

Permalink
Merge branch 'main' into feature/kan4ts
Browse files Browse the repository at this point in the history
  • Loading branch information
elephaint authored Sep 16, 2024
2 parents 4ab1032 + 42fa79e commit 32662f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nbs/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,10 @@
" val_size=val_size,\n",
" sort_df=sort_df,\n",
" use_init_models=False,\n",
" verbose=verbose, \n",
" verbose=verbose,\n",
" id_col=id_col,\n",
" time_col=time_col,\n",
" target_col=target_col, \n",
" )\n",
" predict_df: Optional[DataFrame] = None\n",
" else:\n",
Expand Down
3 changes: 3 additions & 0 deletions neuralforecast/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1193,6 +1193,9 @@ def cross_validation(
sort_df=sort_df,
use_init_models=False,
verbose=verbose,
id_col=id_col,
time_col=time_col,
target_col=target_col,
)
predict_df: Optional[DataFrame] = None
else:
Expand Down

0 comments on commit 32662f7

Please sign in to comment.