(self, sequences: List[List[int]], **kwargs)
| 2251 | return encoded_inputs |
| 2252 | |
| 2253 | def batch_decode(self, sequences: List[List[int]], **kwargs) -> List[str]: |
| 2254 | return [self.decode(seq, **kwargs) for seq in sequences] |
| 2255 | |
| 2256 | def decode( |
| 2257 | self, token_ids: List[int], skip_special_tokens: bool = False, clean_up_tokenization_spaces: bool = True |