munish0838 commited on
Commit
a9c5ba6
1 Parent(s): c63a28d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: grimjim/Llama-3-Perky-Pat-Instruct-8B
3
+ library_name: transformers
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ license: llama3
8
+ pipeline_tag: text-generation
9
+ ---
10
+ # Llama-3-Perky-Pat-Instruct-8B-GGUF
11
+ This is quantized version of [grimjim/Llama-3-Perky-Pat-Instruct-8B](https://huggingface.co/grimjim/Llama-3-Perky-Pat-Instruct-8B) created using llama.cpp
12
+
13
+ # Model Description
14
+
15
+ Below, we explore negative weight merger, and propose Orthogonalized Vector Adaptation, or OVA.
16
+
17
+ This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
18
+
19
+ _"One must imagine Sisyphys happy."_
20
+
21
+ Task arithmetic was used to invert the intervention vector that was applied in [MopeyMule](https://huggingface.co/failspy/Llama-3-8B-Instruct-MopeyMule), via application of negative weight -1.0. The combination of model weights _(Instruct - MopeyMule)_ comprises an Orthogonalized Vector Adaptation that can subsequently be applied to the base [Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct) model, and could in principle be applied to other models derived from fine-tuning the Instruct model.
22
+
23
+ This model is meant to continue exploration of behavioral changes that can be achieved via orthogonalized steering. The result appears to be more enthusiastic and lengthy responses in chat, though it is also clear that the merged model has some unhealed damage.
24
+
25
+ Built with Meta Llama 3.
26
+
27
+ ## Merge Details
28
+ ### Merge Method
29
+
30
+ This model was merged using the [task arithmetic](https://arxiv.org/abs/2212.04089) merge method using [meta-llama/Meta-Llama-3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct) as a base.
31
+
32
+ ### Models Merged
33
+
34
+ The following models were included in the merge:
35
+ * [failspy/Llama-3-8B-Instruct-MopeyMule](https://huggingface.co/failspy/Llama-3-8B-Instruct-MopeyMule)
36
+
37
+ ### Configuration
38
+
39
+ The following YAML configuration was used to produce this model:
40
+
41
+ ```yaml
42
+ base_model: meta-llama/Meta-Llama-3-8B-Instruct
43
+ dtype: bfloat16
44
+ merge_method: task_arithmetic
45
+ parameters:
46
+ normalize: false
47
+ slices:
48
+ - sources:
49
+ - layer_range: [0, 32]
50
+ model: meta-llama/Meta-Llama-3-8B-Instruct
51
+ - layer_range: [0, 32]
52
+ model: meta-llama/Meta-Llama-3-8B-Instruct
53
+ parameters:
54
+ weight: 1.0
55
+ - layer_range: [0, 32]
56
+ model: failspy/Llama-3-8B-Instruct-MopeyMule
57
+ parameters:
58
+ weight: -1.0
59
+
60
+ ```