OwenArli commited on
Commit
843f94d
·
verified ·
1 Parent(s): d7fd1a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -3
README.md CHANGED
@@ -1,3 +1,39 @@
1
- ---
2
- license: llama3
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3
3
+ ---
4
+ Based on Meta-Llama-3-8b-Instruct, and is governed by Meta Llama 3 License agreement:
5
+ https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
6
+
7
+
8
+ Experimental model trying to make Llama 3 8B better in general overall. Pretty difficult to do.
9
+
10
+
11
+ Base model: https://huggingface.co/failspy/Meta-Llama-3-8B-Instruct-abliterated-v3
12
+
13
+ Training:
14
+ - 4096 sequence length
15
+ - Training duration is around 2 days on 2x3090Ti
16
+ - 1 epoch training with a massive dataset for minimized repetition sickness.
17
+ - LORA with 64-rank 128-alpha resulting in ~2% trainable weights.
18
+
19
+
20
+ Llama 3 Instruct format:
21
+ ```
22
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
23
+
24
+ {{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
25
+
26
+ {{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
27
+
28
+ {{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
29
+
30
+ {{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
31
+ ```
32
+
33
+
34
+ Quants:
35
+
36
+ FP16: https://huggingface.co/OwenArli/ArliAI-Llama-3-8B-Argon-v1.0
37
+
38
+ GGUF: https://huggingface.co/OwenArli/ArliAI-Llama-3-8B-Argon-v1.0-GGUF
39
+