Converts IDs (typically generated by the model) back to a string.
(self, ids)
| 58 | return self.tokenizer(text, *args, **kwargs) |
| 59 | |
| 60 | def decode(self, ids): |
| 61 | """Converts IDs (typically generated by the model) back to a string.""" |
| 62 | return self.tokenizer.decode(ids) |
no outgoing calls