(self, sentence: str)
| 276 | assert self.bpe is not None |
| 277 | |
| 278 | def encode(self, sentence: str) -> str: |
| 279 | return self.bpe.encode(sentence) |
| 280 | |
| 281 | def decode(self, sentence: str) -> str: |
| 282 | return self.bpe.decode(sentence) |
no outgoing calls
no test coverage detected