| 12 | namespace DIFFUSION { |
| 13 | |
| 14 | static std::string BuildMtokPath(const std::string& filePath) { |
| 15 | return filePath + "/tokenizer.mtok"; |
| 16 | } |
| 17 | |
| 18 | MtokTokenizer::MtokTokenizer(Style style, int bosId, int eosId) : mStyle(style), mBosId(bosId), mEosId(eosId) {} |
| 19 |