#############################################################################1# Copyright (C) 2010 William Stein <[email protected]>2# Distributed under the terms of the GNU General Public License (GPL), v2+.3# The full text of the GPL is available at:4# http://www.gnu.org/licenses/5#############################################################################67# We lazy_import the following modules since they import numpy which slows down sage startup8from sage.misc.lazy_import import lazy_import9lazy_import("sage.stats.hmm.hmm", ["DiscreteHiddenMarkovModel"])10lazy_import("sage.stats.hmm.chmm", ["GaussianHiddenMarkovModel","GaussianMixtureHiddenMarkovModel"])11lazy_import("sage.stats.hmm.distributions", ["GaussianMixtureDistribution"])121314