Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pymc/step_methods/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""Step methods."""

from pymc.step_methods.compound import BlockedStep, CompoundStep
from pymc.step_methods.hmc import NUTS, HamiltonianMC
from pymc.step_methods.hmc import NUTS, WALNUTS, HamiltonianMC
from pymc.step_methods.metropolis import (
BinaryGibbsMetropolis,
BinaryMetropolis,
Expand All @@ -35,6 +35,7 @@
# Other step methods can be added by appending to this list
STEP_METHODS: list[type[BlockedStep]] = [
NUTS,
WALNUTS,
HamiltonianMC,
Metropolis,
BinaryMetropolis,
Expand Down
1 change: 1 addition & 0 deletions pymc/step_methods/hmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@

from pymc.step_methods.hmc.hmc import HamiltonianMC
from pymc.step_methods.hmc.nuts import NUTS
from pymc.step_methods.hmc.walnuts import WALNUTS
Loading