-
-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
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
Fix Minibatch alignment in Bayesian Neural Network example + Pre-commit hooks #719
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
@@ -190,7 +190,7 @@ | |||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #21. ann_input = pm.Data("ann_input", minibatch_x, mutable=True, dims=("obs_id", "train_cols"))
mutability is True by default
Reply via ReviewNB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing this would also change a bunch of stuff in the diff -- we'd have to re-execute the notebook, otherwise "Check cells were executed sequentially" would fail during pre-commit
. Since this PR is just running the pre-commit
hook for someone else's (seemingly-abandoned) PR, I'd prefer to just leave it if it's fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this. You can remove the mutable argument or leave it -- fine with it either way.
…it hooks (pymc-devs#719) * Fix Minibatch alignment in Bayesian Neural Network example * Run: pre-commit run all-files --------- Co-authored-by: Deepak CH <deepak.23BCS10092@ms.sst.scaler.com>
…it hooks (pymc-devs#719) * Fix Minibatch alignment in Bayesian Neural Network example * Run: pre-commit run all-files --------- Co-authored-by: Deepak CH <deepak.23BCS10092@ms.sst.scaler.com>
…it hooks (pymc-devs#719) * Fix Minibatch alignment in Bayesian Neural Network example * Run: pre-commit run all-files --------- Co-authored-by: Deepak CH <deepak.23BCS10092@ms.sst.scaler.com>
…it hooks (pymc-devs#719) * Fix Minibatch alignment in Bayesian Neural Network example * Run: pre-commit run all-files --------- Co-authored-by: Deepak CH <deepak.23BCS10092@ms.sst.scaler.com>
…it hooks (pymc-devs#719) * Fix Minibatch alignment in Bayesian Neural Network example * Run: pre-commit run all-files --------- Co-authored-by: Deepak CH <deepak.23BCS10092@ms.sst.scaler.com>
Fix Minibatch Alignment in Bayesian Neural Network Example + Pre-commit hooks
Issue
Fixes #654.
Changes Made
pre-commit run --all-files
on Fix Minibatch alignment in Bayesian Neural Network example #689