|
mlpack
|
#include <mlpack/prereqs.hpp>#include <mlpack/methods/hmm/hmm.hpp>#include <mlpack/methods/gmm/gmm.hpp>#include <mlpack/methods/gmm/diagonal_gmm.hpp>

Go to the source code of this file.
Namespaces | |
| mlpack | |
| Linear algebra utility functions, generally performed on matrices or vectors. | |
| mlpack::hmm | |
| Hidden Markov Models. | |
Functions | |
| template<typename ActionType , typename ArchiveType , typename ExtraInfoType > | |
| void | mlpack::hmm::LoadHMMAndPerformActionHelper (const std::string &modelFile, ExtraInfoType *x=NULL) |
| template<typename ActionType , typename ArchiveType , typename HMMType , typename ExtraInfoType > | |
| void | mlpack::hmm::DeserializeHMMAndPerformAction (ArchiveType &ar, ExtraInfoType *x=NULL) |
| template<typename ActionType , typename ExtraInfoType = void> | |
| void | mlpack::hmm::LoadHMMAndPerformAction (const std::string &modelFile, ExtraInfoType *x=NULL) |
| ActionType should implement static void Apply(HMMType&). | |
| template<typename ArchiveType , typename HMMType > | |
| void | mlpack::hmm::SaveHMMHelper (HMMType &hmm, const std::string &modelFile) |
| template<typename HMMType > | |
| char | mlpack::hmm::GetHMMType () |
| template<typename HMMType > | |
| void | mlpack::hmm::SaveHMM (HMMType &hmm, const std::string &modelFile) |
| Save an HMM to a file. More... | |
| template<> | |
| char | mlpack::hmm::GetHMMType< HMM< distribution::DiscreteDistribution > > () |
| template<> | |
| char | mlpack::hmm::GetHMMType< HMM< distribution::GaussianDistribution > > () |
| template<> | |
| char | mlpack::hmm::GetHMMType< HMM< gmm::GMM > > () |
| template<> | |
| char | mlpack::hmm::GetHMMType< HMM< gmm::DiagonalGMM > > () |
Implementation of HMM utilities to load arbitrary HMM types.
mlpack is free software; you may redistribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.
1.8.13