Update README.md
Browse files
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 |
+
```
|