munish0838 commited on
Commit
2e9ef62
·
verified ·
1 Parent(s): 2cce9e3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3
3
+ pipeline_tag: text-generation
4
+ base_model: OwenArli/ArliAI-Llama-3-8B-Dolfin-v1.0
5
+ ---
6
+
7
+ # QuantFactory/ArliAI-Llama-3-8B-Dolfin-v1.0-GGUF
8
+ This is quantized version of [OwenArli/ArliAI-Llama-3-8B-Dolfin-v1.0](https://huggingface.co/OwenArli/ArliAI-Llama-3-8B-Dolfin-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
+ Base model: https://huggingface.co/failspy/Meta-Llama-3-8B-Instruct-abliterated-v3
16
+
17
+
18
+ SFT fine tune of Meta Llama 3 8B Instruct Abliterated v3 by Failspy using an improved Dolphin and WizardLM dataset intended to remove GPT-isms and make the model follow instructions more exactly while paying attention to details better.
19
+
20
+ Since it is based on the Abliterated version of Llama 3 8B Instruct it should naturally not refuse to answer in the first place and this fine tuning should make it comply even better.
21
+
22
+
23
+ Best practices:
24
+ - Be precise and explain what you want the model to do. It has less base "personality" than the OG model but it will act however you tell it to.
25
+ - This model works best with system prompts that tells it that it is the character, instead of telling it to act as a character.
26
+
27
+ Training:
28
+ - Full 8192 sequence length
29
+ - Training duration is around 2.5 days on an RTX 4090
30
+ - 1 epoch training with a massive dataset for minimized repetition sickness.
31
+ - Using 4-bit loading and Qlora 64-rank 64-alpha resulting in ~2% trainable weights.
32
+
33
+
34
+ Llama 3 Instruct format:
35
+ ```
36
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
37
+
38
+ {{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
39
+
40
+ {{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
41
+
42
+ {{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
43
+
44
+ {{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
45
+ ```