File size: 282 Bytes
92df2c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
---
license: mit
---
```
!git clone https://github.com/ayulockin/llm_scratch
%cd llm_scratch
!uv pip install -r pyproject.toml
# place the tokenizers in a dir `data`
from llm import get_wmt_tokenizers
tokenizers = get_wmt_tokenizers("en-de", path="path/to/tokenizers/*.json")
``` |