| 528 | } // namespace |
| 529 | |
| 530 | int32_t BpeVocabulary::text_to_token(const std::string & text) const { |
| 531 | const auto it = token_to_id.find(text); |
| 532 | return it == token_to_id.end() ? -1 : it->second; |
| 533 | } |
| 534 | |
| 535 | int BpeVocabulary::find_bpe_rank(const std::string & left, const std::string & right) const { |
| 536 | const auto it = bpe_ranks.find(pair_key(left, right)); |