acharkq commited on
Commit
0d2611c
·
verified ·
1 Parent(s): e94dd99

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ Load the model and the tokenizer with the following script:
2
+
3
+ ```python
4
+ llm = LlamaForCausalLM.from_pretrained('acharkq/MoLlama')
5
+ tokenizer = AutoTokenizer.from_pretrained('acharkq/MoLlama')
6
+ tokenizer.add_bos_token = True
7
+ tokenizer.add_eos_token = True
8
+ ```