Phainon commited on
Commit
20cac8f
·
verified ·
1 Parent(s): aaed3a8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # fcmbeta_llama3_8b_harmless
2
+
3
+ DPO fine-tuned LLaMA3 8B model (harmless setting).
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ from transformers import AutoModelForCausalLM, AutoTokenizer
9
+
10
+ model = AutoModelForCausalLM.from_pretrained("Phainon/dpo_llama3_8b_harmless")
11
+ tokenizer = AutoTokenizer.from_pretrained("Phainon/dpo_llama3_8b_harmless")