(self, string: str)
| 109 | raise NotImplementedError() |
| 110 | |
| 111 | def tok_encode(self, string: str): |
| 112 | return self.tokenizer.encode(string, add_special_tokens=False) |
| 113 | |
| 114 | def tok_decode(self, tokens): |
| 115 | return self.tokenizer.decode(tokens) |
no outgoing calls
no test coverage detected