-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fixup all non-theano non-notebook docs warnings, replace dead link #4300
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
Conversation
:orphan: | ||
|
||
.. | ||
_href from docs/source/index.rst |
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.
otherwise Sphinx throws the "not included in any toctree!" warning
weights = pm.Normal('weights', mu=0, sigma=1) | ||
noise = pm.Gamma('noise', alpha=2, beta=1) | ||
y_observed = pm.Normal('y_observed', | ||
mu=X @ weights, | ||
sigma=noise, | ||
observed=y) | ||
weights = pm.Normal("weights", mu=0, sigma=1) | ||
noise = pm.Gamma("noise", alpha=2, beta=1) | ||
y_observed = pm.Normal( | ||
"y_observed", | ||
mu=X @ weights, | ||
sigma=noise, | ||
observed=y, | ||
) |
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.
this doesn't actually throw a warning or anything, the indentation just looks a bit strange to me
<img src="https://lh5.googleusercontent.com/R1T8ZXbMi4vSO0JlnLQMkEQNvd2ncBb23OmHOsmw-t_oEOF6jJlfWuJoOK0MMmECSDymhUdfTS2yoMgkR2TY-xIiBTHCpeuYjzXqD3xhZ-MuIhs2ARcJ=w1280"> | ||
<img src="https://lh5.googleusercontent.com/Ms2ssellxl7cM6OEL_kpiKRojcj2E4ZaUWDXOa8zEwi-v9orJGYuhjczbwFSDJNsEb_ruiwtCJONNjoo7T1c7qorZm3LsAnroMAm4S5WzNT_PVqWz9aE=w1280"> |
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.
replaces dead link
Codecov Report
@@ Coverage Diff @@
## master #4300 +/- ##
=======================================
Coverage 87.69% 87.69%
=======================================
Files 88 88
Lines 14355 14355
=======================================
Hits 12588 12588
Misses 1767 1767 |
There are still some warnings coming from using automodule on theano functions, and from the notebooks' docstrings, but this at least fixes those given from PyMC3's own rst files.
Also, the old link to "Doing Bayesian Analysis" seems like it was down