munish0838 commited on
Commit
9d1821b
1 Parent(s): 227e860

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3
3
+ pipeline_tag: text-generation
4
+ base_model: OwenArli/ArliAI-Llama-3-8B-Dolfin-v0.5
5
+ tags:
6
+ - llama
7
+ - conversational
8
+ ---
9
+
10
+ # QuantFactory/ArliAI-Llama-3-8B-Dolfin-v0.5-GGUF
11
+ This is quantized version of [OwenArli/ArliAI-Llama-3-8B-Dolfin-v0.5](https://huggingface.co/OwenArli/ArliAI-Llama-3-8B-Dolfin-v0.5) created using llama.cpp
12
+
13
+ # Model Description
14
+ Based on Meta-Llama-3-8b-Instruct, and is governed by Meta Llama 3 License agreement:
15
+ https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
16
+
17
+
18
+ This is a fine tune using an improved Dolphin and WizardLM dataset intended to make the model follow instructions better and refuse less.
19
+
20
+
21
+
22
+ OpenLLM Benchmark:
23
+
24
+
25
+
26
+ Training:
27
+ - 2048 sequence length since the dataset has an average length of under 1000 tokens, while the base model is 8192 sequence length. From testing it still performs the same 8192 context just fine.
28
+ - Training duration is around 2 days on 2xRTX 3090, using 4-bit loading and Qlora 64-rank 128-alpha resulting in ~2% trainable weights.
29
+
30
+
31
+ Instruct format:
32
+ ```
33
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
34
+
35
+ {{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
36
+
37
+ {{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
38
+
39
+ {{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
40
+
41
+ {{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
42
+ ```