anthonyrathe commited on
Commit
c9802b9
·
verified ·
1 Parent(s): 74894c8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - nl
4
+ license: llama3
5
+ ---
6
+
7
+ ## LLaMA-3-NL: Fine-tuned using LoRa and the original tokenizer
8
+
9
+ ```
10
+ from transformers import AutoModelForCausalLM, AutoTokenizer
11
+
12
+ tokenizer = AutoTokenizer.from_pretrained('llama-2-nl/Llama-3-8B-lora-original')
13
+
14
+ model = AutoModelForCausalLM.from_pretrained('llama-2-nl/Llama-3-8B-lora-original')
15
+ ```