We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make notebook
The test_notebook action is slow and takes about 30 minutes to run. Largely due to actual sampling of models taking place.
test_notebook
I few the purpose of this action is to ensure they run without errors and not that they are "correct"
The scripts/run_notebooks/runner.py script already uses Parallel with n_jobs=-1 to run the notebooks in parallel.
scripts/run_notebooks/runner.py
Parallel
n_jobs=-1
Some ideas to speed up this action:
pm.sample
I lean toward looking into mocking the pm.sample call in the notebook. We should be able to monkey patch this.
Any one else have any ideas?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The
test_notebook
action is slow and takes about 30 minutes to run. Largely due to actual sampling of models taking place.I few the purpose of this action is to ensure they run without errors and not that they are "correct"
The
scripts/run_notebooks/runner.py
script already usesParallel
withn_jobs=-1
to run the notebooks in parallel.Some ideas to speed up this action:
pm.sample
and other slow functions to return dummy values (pm.sample_prior_predictive)I lean toward looking into mocking the
pm.sample
call in the notebook. We should be able to monkey patch this.Any one else have any ideas?
The text was updated successfully, but these errors were encountered: