mlpack
Namespaces | Functions
hmm_util_impl.hpp File Reference
#include <mlpack/prereqs.hpp>
#include <mlpack/methods/hmm/hmm.hpp>
#include <mlpack/methods/gmm/gmm.hpp>
#include <mlpack/methods/gmm/diagonal_gmm.hpp>
Include dependency graph for hmm_util_impl.hpp:
This graph shows which files directly or indirectly include this file:

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 > > ()
 

Detailed Description

Author
Ryan Curtin

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.