Triangle104 commited on
Commit
14dd906
1 Parent(s): 46fbecd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -13,6 +13,52 @@ base_model: Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base
13
  This model was converted to GGUF format from [`Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base`](https://huggingface.co/Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
14
  Refer to the [original model card](https://huggingface.co/Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base) for more details on the model.
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ## Use with llama.cpp
17
  Install llama.cpp through brew (works on Mac and Linux)
18
 
 
13
  This model was converted to GGUF format from [`Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base`](https://huggingface.co/Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
14
  Refer to the [original model card](https://huggingface.co/Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base) for more details on the model.
15
 
16
+ ---
17
+ Model details:
18
+ -
19
+ This is a merge of pre-trained language models created using mergekit.
20
+
21
+ Merge Details/Method
22
+ -
23
+ This is a merge of arcee-ai/Llama-3.1-SuperNova-Lite with its base meta-llama/Llama-3.1-8B (the base model being: the model which the instruct model was fine-tuned on - even though in our case, arcee-ai/Llama-3.1-SuperNova-Lite, was fine-tuned, etc on top of meta-llama/Llama-3.1-8B-Instruct and not directly on top of meta-llama/Llama-3.1-8B)
24
+
25
+ This model was merged using the TIES merge method using meta-llama/Llama-3.1-8B as a base.
26
+
27
+ The merge was inspired by RomboDawg's (Replete-AI) TIES merge of Qwen/Qwen2.5-7B-Instruct with its base Qwen/Qwen2.5-7B, which topped the OpenLLM Learderboard for the highest Average score for a 7B parameter model.
28
+
29
+ After experimenting and discussing/researching the merge with Rombodawg, I looked into mergekit's TIES merge method some more, which led me to find a pertinent parameter that we weren't utilizing for our TIES merge: density. I decided to use density along with the weight parameter to see if we could restore some of the instruction following that our merges seemed to lack in comparison to the original Instruct model. The resulant merges turned out to be great! By using the density parameter along with the weight parameter, we were able to restore more of the Instruction following which was diminished and/or not present when solely using the weight parameter for our TIES merge.
30
+
31
+ The way this works is: the Instruct model is TIES merged with the base model, with the weight = 1 and density = 1. After the merge is complete, the merge's .json config files (excluding 'model.safetensors.index.json') are replaced with the original Instruct's .json config files.
32
+ Models Merged
33
+
34
+ The following models were included in the merge:
35
+
36
+ /Users/jsarnecki/opt/Workspace/arcee-ai/Llama-3.1-SuperNova-Lite
37
+
38
+ Configuration
39
+ -
40
+ The following YAML configuration was used to produce this model:
41
+
42
+ models:
43
+ - model: "/Users/jsarnecki/opt/Workspace/arcee-ai/Llama-3.1-SuperNova-Lite"
44
+ parameters:
45
+ weight: 1
46
+ density: 1
47
+
48
+ - model: "/Users/jsarnecki/opt/Workspace/arcee-ai/Llama-3.1-SuperNova-Lite"
49
+ parameters:
50
+ weight: 1
51
+ density: 1
52
+
53
+ merge_method: ties
54
+ base_model: "/Users/jsarnecki/opt/Workspace/meta-llama/Llama-3.1-8B"
55
+ parameters:
56
+ density: 1
57
+ normalize: true
58
+ int8_mask: true
59
+ dtype: bfloat16
60
+
61
+ ---
62
  ## Use with llama.cpp
63
  Install llama.cpp through brew (works on Mac and Linux)
64