simsim314 commited on
Commit
34748ac
1 Parent(s): cee79b5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -1,3 +1,11 @@
1
  ---
2
  license: llama2
3
  ---
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: llama2
3
  ---
4
+ Based on [WizardLM/WizardLM-70B-V1.0](https://huggingface.co/WizardLM/WizardLM-70B-V1.0)
5
+
6
+ ```
7
+ from transformers import LlamaTokenizer, AutoModelForCausalLM
8
+
9
+ tokenizer = LlamaTokenizer.from_pretrained("simsim314/WizardLM-70B-V1.0-HF")
10
+ model = AutoModelForCausalLM.from_pretrained("simsim314/WizardLM-70B-V1.0-HF")
11
+ ```