Pretergeek commited on
Commit
8a7ef4a
1 Parent(s): 9b94e28

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -7,14 +7,26 @@ tags:
7
  - merge
8
 
9
  ---
10
- # Untitled Model (1)
 
 
 
 
11
 
12
- This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
 
 
13
 
14
  ## Merge Details
15
  ### Merge Method
16
 
17
- This model was merged using the passthrough merge method.
 
 
 
 
 
 
18
 
19
  ### Models Merged
20
 
@@ -154,3 +166,16 @@ merge_method: passthrough
154
  dtype: bfloat16
155
 
156
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  - merge
8
 
9
  ---
10
+ <p align="center">
11
+ <a href="https://ko-fi.com/pretergeek">Buy me a Ko-Fi</a> •
12
+ <a href="https://patreon.com/Pretergeek">Fund my work using Patreon</a> •
13
+ <a href="https://mstdn.social/@pretergeek">Follow me on Mastodon</a>
14
+ </p>
15
 
16
+ # OpenChat-3.5-0106_BlockExpansion-44Layers-End
17
+
18
+ This is NOT your usual frankenmerge created using [mergekit](https://github.com/cg123/mergekit).
19
 
20
  ## Merge Details
21
  ### Merge Method
22
 
23
+ This model was merged using the passthrough merge method, but employing a variation of the Block Expansion method described in the paper [LLaMA Pro: Progressive LLaMA with Block Expansion](https://arxiv.org/abs/2401.02415).
24
+
25
+ The authors of the paper added new layers interleaved in between the original layers of the model, setting the parameters of the o_proj and down_proj layers to zero. This effectively adds layers that will just output their input (as if they were "transparent") allowing the model to remain functional even without further training. These new layers can then be targeted during training or fine-tuning without risking catastrophic forgetting, if you follow the author's training method to freeze the original layers and only train the new layers.
26
+
27
+ I used the same method but added the new layers to the end of the model. My rationale is that the level of abstraction increases with each layer of the model. So, while new layers spread along the original layers will help the model to learn new tasks, adding layers to the end of the model and then re-training/fine-tuning the model on tasks it already performs well could improve the models understanding of those task and perform them better by employing more complex reasoning.
28
+
29
+ This model has not yet received additional training, so it should perform close to the original model. Evaluations are pending and will be added when available.
30
 
31
  ### Models Merged
32
 
 
166
  dtype: bfloat16
167
 
168
  ```
169
+
170
+ ## Citation
171
+ ```
172
+ @misc{wu2024llamaproprogressivellama,
173
+ title={LLaMA Pro: Progressive LLaMA with Block Expansion},
174
+ author={Chengyue Wu and Yukang Gan and Yixiao Ge and Zeyu Lu and Jiahao Wang and Ye Feng and Ying Shan and Ping Luo},
175
+ year={2024},
176
+ eprint={2401.02415},
177
+ archivePrefix={arXiv},
178
+ primaryClass={cs.CL},
179
+ url={https://arxiv.org/abs/2401.02415},
180
+ }
181
+ ```