halbihn commited on
Commit
77fafc3
·
verified ·
1 Parent(s): c9a0fd5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - merge
5
+ - mergekit
6
+ - lazymergekit
7
+ - OpenPipe/mistral-ft-optimized-1218
8
+ - halbihn/NeuralHermes-2.5-Mistral-7B
9
+ ---
10
+
11
+ > Note: This repository contains the `GGUF` 4-bit quantized variant of `halbihn/NeuralPipe-7B-slerp`. For the full version visit [the link](https://huggingface.co/halbihn/NeuralPipe-7B-slerp)
12
+
13
+
14
+ # NeuralPipe-7B-slerp
15
+
16
+ NeuralPipe-7B-slerp is a merge of the following models using [mergekit](https://github.com/cg123/mergekit):
17
+ * [OpenPipe/mistral-ft-optimized-1218](https://huggingface.co/OpenPipe/mistral-ft-optimized-1218)
18
+ * [halbihn/NeuralHermes-2.5-Mistral-7B](https://huggingface.co/halbihn/NeuralHermes-2.5-Mistral-7B)
19
+
20
+ ## 🧩 Configuration
21
+
22
+ ```yaml
23
+ slices:
24
+ - sources:
25
+ - model: OpenPipe/mistral-ft-optimized-1218
26
+ layer_range: [0, 32]
27
+ - model: halbihn/NeuralHermes-2.5-Mistral-7B
28
+ layer_range: [0, 32]
29
+ merge_method: slerp
30
+ base_model: OpenPipe/mistral-ft-optimized-1218
31
+ parameters:
32
+ t:
33
+ - filter: self_attn
34
+ value: [0, 0.5, 0.3, 0.7, 1]
35
+ - filter: mlp
36
+ value: [1, 0.5, 0.7, 0.3, 0]
37
+ - value: 0.5
38
+ dtype: bfloat16
39
+
40
+
41
+ ```