Skip to content

Commit

Permalink
Fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
master committed Jul 30, 2023
1 parent cf2c710 commit 90974f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fortuna/prob_model/posterior/name_to_posterior_state.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import enum

from fortuna.output_calib_model.state import OutputCalibState
from fortuna.prob_model.posterior.sgmcmc.hmc.hmc_state import HMCState
from fortuna.prob_model.posterior.laplace.laplace_state import LaplaceState
from fortuna.prob_model.posterior.map.map_state import MAPState
from fortuna.prob_model.posterior.normalizing_flow.advi.advi_state import ADVIState
Expand All @@ -21,3 +22,4 @@ class NameToPosteriorState(enum.Enum):
vars()[SWAGState.__name__] = SWAGState
vars()[SGHMCState.__name__] = SGHMCState
vars()[CyclicalSGLDState.__name__] = CyclicalSGLDState
vars()[HMCState.__name__] = HMCState

0 comments on commit 90974f4

Please sign in to comment.