Unable to load DeBERTa-v3 tokenizer
See original GitHub issuefrom transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("microsoft/mdeberta-v3-base")
Gives me an error:
ValueError: This tokenizer cannot be instantiated. Please make sure you have sentencepiece
installed in order to use this tokenizer.
Installing sentencepiece doesn’t help.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Cant load deberta tokenizer - Beginners - Hugging Face Forums
I'm running transformers version 3.0.0. AutoModel.from_pretrained('microsoft/deberta-base') run fine for me but the autotokenizer fails:.
Read more >debertav3 baseline - Kaggle
... #can't load #model_name = "plncmm/deberta-clinical-scratch-cowese-es" ... In practice this means that the fast version of the tokenizer can produce ...
Read more >DeBERTaV3: Improving DeBERTa using ELECTRA-Style Pre ...
This paper presents a new pre-trained language model, DeBERTaV3, which improves the original DeBERTa model by replacing mask language modeling ( ...
Read more >Performance of Multiple Pretrained BERT Models to Automate ...
This figure demonstrates the process of “tokenization,” an automatic ... that each of the algorithms in this study failed to recognize the words...
Read more >ML and NLP Research Highlights of 2021 - Sebastian Ruder
In mathematics, ML was shown to be able to guide the intuition of ... of tokenized subwords has become the standard input format...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
If you’re using colab, then have you restarted the runtime after installing
sentencepiece
?Thank you!!! It solved the issue. Thank you once again!