danielhanchen commited on
Commit
1051412
·
1 Parent(s): a661a9a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ ---
6
+ Original repo: https://huggingface.co/openlm-research/open_llama_13b_600bt
7
+
8
+ This repo just allows the tokenizer to allow the use of `use_fast = True` to work, which can speed up batched tokenization dramatically.
9
+ This repo DOES NOT host OpenLLAMA's models. For those, use OpenLLAMA's repo.
10
+ For eg:
11
+
12
+ ```
13
+ from transformers import AutoTokenizer, AutoModelForCausalLM
14
+ tokenizer = AutoTokenizer.from_pretrained("danielhanchen/open_llama_13b_600bt")
15
+ model = AutoModelForCausalLM.from_pretrained("openlm-research/open_llama_13b_600bt")
16
+ ```