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