ayut commited on
Commit
92df2c8
1 Parent(s): 6868db9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -3
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
+ ```