Bauwens commited on
Commit
1715b21
·
verified ·
1 Parent(s): 2d4a93e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -1,3 +1,8 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ To load the tokeniser for this model, do *not* use `AutoTokenizer`. Instead, install [TkTkT](https://github.com/bauwenst/TkTkT) and run:
5
+ ```python
6
+ from tktkt.models.bpe.base import ClassicBPE
7
+ tokenizer = ClassicBPE.from_pretrained("Bauwens/RoBERTa-nl_BPE_39k")
8
+ ```