munish0838
commited on
Commit
•
db7639b
1
Parent(s):
9e2379b
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3
|
3 |
+
pipeline_tag: text-generation
|
4 |
+
base_model: OwenArli/ArliAI-Llama-3-8B-Argon-v1.0
|
5 |
+
---
|
6 |
+
|
7 |
+
# QuantFactory/ArliAI-Llama-3-8B-Argon-v1.0-GGUF
|
8 |
+
This is quantized version of [OwenArli/ArliAI-Llama-3-8B-Argon-v1.0]() created using llama.cpp
|
9 |
+
|
10 |
+
# Model Description
|
11 |
+
Based on Meta-Llama-3-8b-Instruct, and is governed by Meta Llama 3 License agreement:
|
12 |
+
https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
|
13 |
+
|
14 |
+
|
15 |
+
Experimental model trying to make Llama 3 8B better in general overall. Pretty difficult to do.
|
16 |
+
|
17 |
+
|
18 |
+
Base model: https://huggingface.co/failspy/Meta-Llama-3-8B-Instruct-abliterated-v3
|
19 |
+
|
20 |
+
Training:
|
21 |
+
- 4096 sequence length
|
22 |
+
- Training duration is around 2 days on 2x3090Ti
|
23 |
+
- 1 epoch training with a massive dataset for minimized repetition sickness.
|
24 |
+
- LORA with 64-rank 128-alpha resulting in ~2% trainable weights.
|
25 |
+
|
26 |
+
|
27 |
+
Llama 3 Instruct format:
|
28 |
+
```
|
29 |
+
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
30 |
+
|
31 |
+
{{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
32 |
+
|
33 |
+
{{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
34 |
+
|
35 |
+
{{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
36 |
+
|
37 |
+
{{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
38 |
+
```
|