This method forwards all its arguments to LlamaTokenizerFast's [`~PreTrainedTokenizer.batch_decode`]. Please refer to the docstring of this method for more information.
(self, *args, **kwargs)
| 119 | |
| 120 | # Copied from transformers.models.clip.processing_clip.CLIPProcessor.batch_decode with CLIP->Llama |
| 121 | def batch_decode(self, *args, **kwargs): |
| 122 | """ |
| 123 | This method forwards all its arguments to LlamaTokenizerFast's [`~PreTrainedTokenizer.batch_decode`]. Please |
| 124 | refer to the docstring of this method for more information. |
| 125 | """ |
| 126 | return self.tokenizer.batch_decode(*args, **kwargs) |
| 127 | |
| 128 | # Copied from transformers.models.clip.processing_clip.CLIPProcessor.decode with CLIP->Llama |
| 129 | def decode(self, *args, **kwargs): |
no outgoing calls
no test coverage detected