Translate the Multiple Choice chapter to numpyro#21
Draft
kylejcaron wants to merge 2 commits into
Draft
Conversation
kylejcaron
commented
Jun 21, 2026
| plot_logit_grid( | ||
| "Rescaled predictor and weakly informative prior", | ||
| "Standardized exam score", | ||
| logit_prior, |
Collaborator
Author
There was a problem hiding this comment.
@aloctavodia Calling out that under the numpyro example, this would break because plot_logit_grid is expecting a cmdstanpy model.
Do we want to leave as is, or should I adjust the function to have routing based on the model?
Contributor
There was a problem hiding this comment.
Better to change it. I did it for the other functions, but it seems I missed this one.
kylejcaron
commented
Jun 21, 2026
| "sigma_mu_ab": jnp.array([5., 10.]), | ||
| "mu_sigma_ab": jnp.array([5., 10.]), | ||
| } | ||
| longdata_6["student"] = jnp.array(longdata_6["student"]) - 1 |
Collaborator
Author
There was a problem hiding this comment.
@aloctavodia calling out the tabs get a little awkward with data handling around 0 vs 1 indexing. its not too bad, but it causes the numpyro blocks to end up being longer
thoughts?
kylejcaron
commented
Jun 21, 2026
| ::: | ||
|
|
||
| ```{python} | ||
| posterior = az.extract(az.from_cmdstanpy(break_1_fit), group="posterior") |
Collaborator
Author
There was a problem hiding this comment.
adjusted this so these cells work for both numpyro and cmdstanpy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds tabs to the Multiple Choice chapter for numpyro