MLPACK  1.0.11
hmm_util.hpp
Go to the documentation of this file.
1 
23 #ifndef __MLPACK_METHODS_HMM_HMM_UTIL_HPP
24 #define __MLPACK_METHODS_HMM_HMM_UTIL_HPP
25 
26 #include "hmm.hpp"
27 
28 namespace mlpack {
29 namespace hmm {
30 
38 template<typename Distribution>
39 void SaveHMM(const HMM<Distribution>& hmm, util::SaveRestoreUtility& sr);
40 
48 template<typename Distribution>
49 void LoadHMM(HMM<Distribution>& hmm, util::SaveRestoreUtility& sr);
50 
51 }; // namespace hmm
52 }; // namespace mlpack
53 
54 // Include implementation.
55 #include "hmm_util_impl.hpp"
56 
57 #endif
void SaveHMM(const HMM< Distribution > &hmm, util::SaveRestoreUtility &sr)
Save an HMM to file.
void LoadHMM(HMM< Distribution > &hmm, util::SaveRestoreUtility &sr)
Load an HMM from file.