-
-
Notifications
You must be signed in to change notification settings - Fork 270
Replacing PyMC3 plots w/ Arviz plots & sigma Param change [Part 4] #24
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Replacing PyMC3 plots w/ Arviz plots & sigma Param change [Part 4] #24
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:37Z plot is missing CloudChaoszero commented on 2021-02-14T08:51:31Z There appears to be a number of errors in this notebook. I display some in this (personal) PR.
One error in particular that I first come across is GLM-model-selection KeyError: 'var names: "['sd_log__'] are not present" in dataset'
It's noted in this raised issue CloudChaoszero commented on 2021-02-14T08:52:58Z Hmm, should we just revert this Notebook to the upstream/main state, thoughts? michaelosthege commented on 2021-03-08T11:29:30Z Try calling The interactive plots are always a bit dangerous, because they often get lost when saving the notebook. Maybe you can find out how to tell
This does NOT save the widget state: michaelosthege commented on 2021-03-08T11:35:28Z The CloudChaoszero commented on 2021-03-14T05:05:12Z @michaelosthege thanks for the response! I'm somewhat confused. I get this error
var names: "['sd_log__']
I created a gist of showing the example. :/ https://gist.github.com/CloudChaoszero/09b566b857190cb04391c615dc08c129 michaelosthege commented on 2021-03-14T11:16:03Z The key belongs to the transform of Multiprocess sampling (2 chains in 2 jobs) NUTS: [sd, np.power(x, 5), np.power(x, 4), np.power(x, 3), np.power(x, 2), x, Intercept] |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:38Z plot is missing
CloudChaoszero commented on 2021-02-14T08:52:26Z For errors in this notebook, see the other mentioned comment about issues in this notebook |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:38Z plot is missing |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:39Z table is missing |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:40Z plot is missing |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:41Z not sure what annotate now is but this is an error CloudChaoszero commented on 2021-02-14T08:30:59Z Looks like the library deprecated the |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:41Z colors here are mixed up in the 2D plot, should match marginals |
View / edit / reply to this conversation on ReviewNB twiecki commented on 2021-02-07T21:33:42Z ugh, damn, this convergence is really bad. maybe try with target_accept=0.99 CloudChaoszero commented on 2021-02-14T08:28:51Z Sounds good. I added a |
…h sigma ⏪ Revert changes due to improper metadata updates 🎨 Fix divergence in last cells and outdated errors due to variou package changes
db1afed
to
9662276
Compare
Sounds good. I added a View entire conversation on ReviewNB |
Looks like the library deprecated the View entire conversation on ReviewNB |
There appears to be a number of errors in this notebook. I display some in this (personal) PR.
One error in particular that I first come across is GLM-model-selection KeyError: 'var names: "['sd_log__'] are not present" in dataset'
It's noted in this raised issue View entire conversation on ReviewNB |
For errors in this notebook, see the other mentioned comment about issues in this notebook View entire conversation on ReviewNB |
Hmm, should we just revert this Notebook to the upstream/main state, thoughts? View entire conversation on ReviewNB |
Try calling The interactive plots are always a bit dangerous, because they often get lost when saving the notebook. Maybe you can find out how to tell
This does NOT save the widget state: View entire conversation on ReviewNB |
View / edit / reply to this conversation on ReviewNB michaelosthege commented on 2021-03-08T11:32:21Z In most other notebooks we have the watermark at the end? |
The View entire conversation on ReviewNB |
Yes, all notebooks are supposed to have the watermark at the end.
Agreed, however, I don't think there are interactive plots in the notebook
This is because ArviZ does not store the transformed variables in the |
@michaelosthege thanks for the response! I'm somewhat confused. I get this error
var names: "['sd_log__']
I created a gist of showing the example. :/ https://gist.github.com/CloudChaoszero/09b566b857190cb04391c615dc08c129 View entire conversation on ReviewNB |
The key belongs to the transform of Multiprocess sampling (2 chains in 2 jobs) NUTS: [sd, np.power(x, 5), np.power(x, 4), np.power(x, 3), np.power(x, 2), x, Intercept] View entire conversation on ReviewNB |
Maybe we can create an issue as a remainder to fix this but for now go ahead and merge the PR? |
Sounds good @OriolAbril ! I made this issue |
I saw the issue, thanks! I don't see the comments of this PR on the issue yet, especially the ones about the glm comparison one, can you add them? |
Sounds good. @OriolAbril ! I added it at the last section, of the original description, and linked one of this PR's comments |
* change workflows directory * change workflows directory * use last version of pymc * update tests, update aesara import
Description
The following is a large PR breakdown of PR #16.
Replace PyMC3 dependent plots with arviz plots in case studies & examples.
Replace parameter
sd
withsigma
(e.g. some examples havepm.Normal(...sd=...)