OwenArli commited on
Commit
c90840c
1 Parent(s): 87d03eb

Update README.md

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