diff options
Diffstat (limited to 'dtrain/util.h')
-rw-r--r-- | dtrain/util.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dtrain/util.h b/dtrain/util.h new file mode 100644 index 00000000..6a548519 --- /dev/null +++ b/dtrain/util.h @@ -0,0 +1,28 @@ +#ifndef _DTRAIN_UTIL_H_ +#define _DTRAIN_UTIL_H_ + + +#include <iostream> +#include <string> +#include <vector> + +#include "fdict.h" +#include "tdict.h" +#include "wordid.h" + +using namespace std; + + +namespace dtrain +{ + + +void register_and_convert(const vector<string>& strs, vector<WordID>& ids); +void print_FD(); + + +} // namespace + + +#endif + |