| 997 | } |
| 998 | |
| 999 | int SentencePieceProcessor::unk_id() const { |
| 1000 | const int id = PieceToId(absl::string_view(model_->unk_piece().data())); |
| 1001 | if (IsUnknown(id)) return id; |
| 1002 | return -1; |
| 1003 | } |
| 1004 | |
| 1005 | int SentencePieceProcessor::bos_id() const { |
| 1006 | const int id = PieceToId(absl::string_view(model_->bos_piece().data())); |