-
-
Notifications
You must be signed in to change notification settings - Fork 249
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
Bug in "Variational Inference: Bayesian Neural Networks" notebook #654
Labels
good first issue
Good for newcomers
Comments
ElisabethBrockhausQC
added a commit
to ElisabethBrockhausQC/pymc-examples
that referenced
this issue
Jun 15, 2024
- Improve axis labels - Remove `mutable=True` argument (will get deprecated) - Fix shape warning - Fix minibatch sampling issue (cf. pymc-devs#654)
3 tasks
twiecki
pushed a commit
that referenced
this issue
Jun 15, 2024
- Improve axis labels - Remove `mutable=True` argument (will get deprecated) - Fix shape warning - Fix minibatch sampling issue (cf. #654)
3 tasks
@yoshida-chem , @twiecki @ can you review my PR #689 |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notebook title: Variational Inference: Bayesian Neural Networks
Notebook url: https://www.pymc.io/projects/examples/en/latest/variational_inference/bayesian_neural_network_advi.html
Issue description
One needs to pass all the variables to a single Minibatch call so that their slices are identical, otherwise it would randomly pair some X with unrelated y.
ann_input and ann_output are overwritten by X _train and Y_train.
Proposed solution
One needs to pass all the variables to a single Minibatch call so that their slices are identical.
The text was updated successfully, but these errors were encountered: