1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
"""
Notes on random numbers
=======================
Uses dream.util.rng as the random number generator.
You can set the seed using::
dream.util.rng = numpy.random.RandomState(seed)
This interface doesn't feel right, since one instance of DREAM may
influence another if they are running within one another. Putting
the rng on the dream class may be a better option.
"""
from .model import MCMCModel
from .core import Dream
# from .core import dream
# from .initpop import * # cov_init, lhs_init
# from .model import * #
# from .state import * # load_state, save_state
# from .views import * # plotting routines
# from .util import console
# from .stats import *
|