-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
WIP: Enhancing inference docs #1969
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,13 @@ ADVI | |
|
||
.. currentmodule:: pymc3.variational.advi | ||
|
||
.. autosummary:: | ||
|
||
TestFunction | ||
ADVI | ||
FullRankADVI | ||
Inference | ||
|
||
.. automodule:: pymc3.variational.advi | ||
:members: | ||
|
||
|
@@ -65,3 +72,35 @@ ADVI minibatch | |
|
||
.. automodule:: pymc3.variational.advi_minibatch | ||
:members: | ||
|
||
Inference | ||
^^^^^^^^^ | ||
|
||
.. currentmodule:: pymc3.variational.operators | ||
|
||
.. automodule:: pymc3.variational.operators | ||
:members: | ||
|
||
OPVI | ||
^^^^ | ||
|
||
.. currentmodule:: pymc3.variational.opvi | ||
|
||
.. automodule:: pymc3.variational.opvi | ||
:members: | ||
|
||
SVGD | ||
^^^^ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. None of the methods here have a docstring, so nothing shows up in the doc. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think @ferrine has re-implemented these in OPVI, so we can probably drop SVGD for now. |
||
|
||
.. currentmodule:: pymc3.variational.svgd | ||
|
||
.. automodule:: pymc3.variational.svgd | ||
:members: | ||
|
||
Updates | ||
^^^^^^^ | ||
|
||
.. currentmodule:: pymc3.variational.updates | ||
|
||
.. automodule:: pymc3.variational.updates | ||
:members: |
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.
They aren't in
pymc3.variational.advi
, but inpymc3.variational.inference
, so this doesn't work.