MLPACK  1.0.4
hmm_util.hpp
Go to the documentation of this file.
00001 
00023 #ifndef __MLPACK_METHODS_HMM_HMM_UTIL_HPP
00024 #define __MLPACK_METHODS_HMM_HMM_UTIL_HPP
00025 
00026 #include "hmm.hpp"
00027 
00028 namespace mlpack {
00029 namespace hmm {
00030 
00038 template<typename Distribution>
00039 void SaveHMM(const HMM<Distribution>& hmm, util::SaveRestoreUtility& sr);
00040 
00048 template<typename Distribution>
00049 void LoadHMM(HMM<Distribution>& hmm, util::SaveRestoreUtility& sr);
00050 
00051 }; // namespace hmm
00052 }; // namespace mlpack
00053 
00054 // Include implementation.
00055 #include "hmm_util_impl.hpp"
00056 
00057 #endif