Is there a way to acquire sp_model variable from T5Tokenizer? Related code can be found at https://github.com/huggingface/transformers/blob/2e35bac4e73558d334ea5bbf96a1116f7c0d7fb3/src/transformers/models/t5/tokenization_t5.py#L155
When we initiate tokenizer with ex. āt5-baseā, from_pretrained function only returns fast version which does not have sp_model variable.
My aim is to initiate text.SentencepieceTokenizer from sp_model. If there is a way, this will help converting t5 tokenizer easily into tensorflow.
Or if there is a alternative way, Iāll be glad to learn