Gabriel Stechschulte

Results 44 comments of Gabriel Stechschulte

`poutine` has two pages: The man page seems to be located [here](https://docs.pyro.ai/en/stable/poutine.html). Additionally, there is more of a tutorial based [page](https://pyro.ai/examples/effect_handlers.html) under the section "Understanding Pyro's internals". `guide` is spread...

Hey @ConradKash thanks for the comment. Good you have reviewed the guidelines doc. Perhaps a suggestion; since the book covers a wide range of models with corresponding examples, I would...

Thanks a lot @tomicapretto 👍🏼

@tomicapretto thanks! Plot 1 is displaying correctly. It is because you are not explicitly passing `fac2` to `conditional`. Which results in, as you stated, a single default value computed for...

> Thanks @GStechschulte! I think this is done. > > I know the test is actually testing many things at the same time, not just the fix. But I think...

Thanks for raising the issue and the detailed information!

Thanks a lot @AlexAndorra. `formulae` is raising the correct error. The error lies in `interpret` and is happening because when creating the data for `plot_predictions`, we first return all covariates...

@AlexAndorra Mmmm. For me, the three HSGP terms works with ```python3 grades = np.random.choice(["A", "B", "C"], size=len(fake_data)) fake_data["Grades"] = grades formula = "p(Campus_Living, N) ~ 0 + hsgp(Fall_Year, by=Age_Group, m=10,...

@tomicapretto the HSGP term component is a function call, so we can access the argument name to get `Fall_Year`. However, [this](https://github.com/bambinos/bambi/blob/b5b9f093c623636ae3a8e2f0765b2f01ca26f4b0/bambi/interpret/utils.py#L242) does not return the argument to `by` of the...

@AlexAndorra anytime! Thanks for raising the questions and issues. No worries, the function signature is a bit overwhelming. Yeah, I am looking into that. That should not be happening.