(self, text: Union[str, List[str]])
| 69 | return tokenizer |
| 70 | |
| 71 | def tokenize(self, text: Union[str, List[str]]) -> List[torch.Tensor]: |
| 72 | raise NotImplementedError |
| 73 | |
| 74 | def tokenize_with_weights(self, text: Union[str, List[str]]) -> Tuple[List[torch.Tensor], List[torch.Tensor]]: |
| 75 | """ |
no outgoing calls
no test coverage detected