grimjim commited on
Commit
864524f
1 Parent(s): 0ade173

Initial release

Browse files
.gitattributes CHANGED
@@ -4,6 +4,7 @@
4
  *.bz2 filter=lfs diff=lfs merge=lfs -text
5
  *.ckpt filter=lfs diff=lfs merge=lfs -text
6
  *.ftz filter=lfs diff=lfs merge=lfs -text
 
7
  *.gz filter=lfs diff=lfs merge=lfs -text
8
  *.h5 filter=lfs diff=lfs merge=lfs -text
9
  *.joblib filter=lfs diff=lfs merge=lfs -text
 
4
  *.bz2 filter=lfs diff=lfs merge=lfs -text
5
  *.ckpt filter=lfs diff=lfs merge=lfs -text
6
  *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gguf filter=lfs diff=lfs merge=lfs -text
8
  *.gz filter=lfs diff=lfs merge=lfs -text
9
  *.h5 filter=lfs diff=lfs merge=lfs -text
10
  *.joblib filter=lfs diff=lfs merge=lfs -text
Llama-Nephilim-Metamorphosis-v1-8B.Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0567f81c82d8d6cd5c091c03099b3d51127b2fbd61980402d62f9a44ea8664e2
3
+ size 4920734752
Llama-Nephilim-Metamorphosis-v1-8B.Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1444c7673bbd8d44581a46d2de13ead1a1575ca3442b30ef2140d89137c44d60
3
+ size 5732987936
Llama-Nephilim-Metamorphosis-v1-8B.Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a731aeca762cc47d9369e7069097d5e4559286a78ebf5237af15e84573b664b8
3
+ size 6596006944
Llama-Nephilim-Metamorphosis-v1-8B.Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fc944c606f730c78310670ed6f2a605cab268ec338119ef919f037bb85b5041
3
+ size 8540771360
README.md CHANGED
@@ -1,3 +1,58 @@
1
  ---
 
 
 
 
 
 
 
2
  license: llama3.1
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model:
3
+ - meta-llama/Meta-Llama-3.1-8B-Instruct
4
+ - grimjim/llama-3-Nephilim-v3-8B
5
+ library_name: transformers
6
+ tags:
7
+ - mergekit
8
+ - merge
9
  license: llama3.1
10
+ pipeline_tag: text-generation
11
  ---
12
+ # Llama-Nephilim-Metamorphosis-v1-8B-GGUF
13
+
14
+ The accompanying files are select GGUF quants of a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
15
+
16
+ A coherent Llama 3 model was merged at low weight into a Llama 3.1 model. No fine-tuning was performed afterward. The resulting model is mostly coherent for roleplay text generation, retaining long context capability of 3.1, despite none of the merge components having been specifically for roleplay nor intended for it. The coherence of this model may be surprising given the difference in tokenizers between 3 and 3.1. It is plausible that 3.1 was trained on a base which originated with 3, hence an internal mapping or feature existing that can translate internally between the two tokenizers.
17
+
18
+ Testing has been performed out to 16K context, using temperature 1 and minP 0.01. This model leans toward being creative, so adjust temperature upward or downward as desired.
19
+
20
+ There remain initial format consistency issues with the merged model, but this can be mitigated in an Instruct prompt. Additionally, promptsteering was employed to vary the text generation output to avoid some of the common failings observed during text generation with Llama 3/3.1 8B models. The complete Instruct prompt used during testing is available below.
21
+
22
+ - [context template](https://huggingface.co/debased-ai/SillyTavern-settings/blob/main/advanced_formatting/context_template/Llama%203.1%20Instruct%20Unleashed1.json)
23
+ - [instruct prompt](https://huggingface.co/debased-ai/SillyTavern-settings/blob/main/advanced_formatting/instruct_mode/Llama%203.1%20Instruct%20Unleashed1.json)
24
+
25
+ Built with Llama.
26
+
27
+ ## Merge Details
28
+ ### Merge Method
29
+
30
+ This model was merged using the SLERP merge method.
31
+
32
+ ### Models Merged
33
+
34
+ The following models were included in the merge:
35
+ * [meta-llama/Meta-Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct)
36
+ * [grimjim/llama-3-Nephilim-v3-8B](https://huggingface.co/grimjim/llama-3-Nephilim-v3-8B)
37
+
38
+ ### Configuration
39
+
40
+ The following YAML configuration was used to produce this model:
41
+
42
+ ```yaml
43
+ base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
44
+ dtype: bfloat16
45
+ merge_method: slerp
46
+ parameters:
47
+ normalize: false
48
+ slices:
49
+ - sources:
50
+ - layer_range: [0, 32]
51
+ model: meta-llama/Meta-Llama-3.1-8B-Instruct
52
+ - layer_range: [0, 32]
53
+ model: grimjim/llama-3-Nephilim-v3-8B
54
+ parameters:
55
+ t:
56
+ - value: 0.1
57
+
58
+ ```