masanorihirano
commited on
Commit
•
03b655d
1
Parent(s):
3bfac90
Update README.md
Browse files
README.md
CHANGED
@@ -29,6 +29,7 @@ from transformers import LlamaForCausalLM, LlamaTokenizer
|
|
29 |
from peft import PeftModel
|
30 |
|
31 |
base_model = "decapoda-research/llama-13b-hf"
|
|
|
32 |
model = LlamaForCausalLM.from_pretrained(base_model, torch_dtype=torch.float16)
|
33 |
tokenizer = LlamaTokenizer.from_pretrained(base_model)
|
34 |
model = PeftModel.from_pretrained(
|
|
|
29 |
from peft import PeftModel
|
30 |
|
31 |
base_model = "decapoda-research/llama-13b-hf"
|
32 |
+
# Please note that the special license of decapoda-research/llama-13b-hf is applied.
|
33 |
model = LlamaForCausalLM.from_pretrained(base_model, torch_dtype=torch.float16)
|
34 |
tokenizer = LlamaTokenizer.from_pretrained(base_model)
|
35 |
model = PeftModel.from_pretrained(
|