Skip to content

Commit

Permalink
fix: improve progressbar docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
AzulGarza committed Oct 25, 2022
1 parent c0e9b1f commit c2e915c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbs/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@
" `n_jobs`: int, number of jobs used in the parallel processing, use -1 for all cores.<br>\n",
" `sort_df`: bool, if True, sort `df` by [`unique_id`,`ds`].<br>\n",
" `fallback_model`: Any, Model to be used if a model fails. Only works with the `forecast` method.<br>\n",
" `verbose`: bool, Whether print progress bar. Only used when `n_jobs=1`.<br>\n",
" `verbose`: bool, Prints TQDM progress bar when `n_jobs=1`.<br>\n",
"\n",
" **Notes:**<br>\n",
" The `core.StatsForecast` class offers parallelization utilities with Dask, Spark and Ray back-ends.<br>\n",
Expand Down
2 changes: 1 addition & 1 deletion statsforecast/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def __init__(
`n_jobs`: int, number of jobs used in the parallel processing, use -1 for all cores.<br>
`sort_df`: bool, if True, sort `df` by [`unique_id`,`ds`].<br>
`fallback_model`: Any, Model to be used if a model fails. Only works with the `forecast` method.<br>
`verbose`: bool, Whether print progress bar. Only used when `n_jobs=1`.<br>
`verbose`: bool, Prints TQDM progress bar when `n_jobs=1`.<br>
**Notes:**<br>
The `core.StatsForecast` class offers parallelization utilities with Dask, Spark and Ray back-ends.<br>
Expand Down

0 comments on commit c2e915c

Please sign in to comment.