grimjim commited on
Commit
4eb4c8b
1 Parent(s): 1814a7d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -71
README.md CHANGED
@@ -1,71 +1,65 @@
1
- ---
2
- base_model:
3
- - openlynn/Llama-3-Soliloquy-8B-v2
4
- - grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge
5
- - grimjim/llama-3-aaditya-OpenBioLLM-8B
6
- - grimjim/llama-3-Nephilim-v1-8B
7
- library_name: transformers
8
- tags:
9
- - mergekit
10
- - merge
11
- license: cc-by-nc-4.0
12
- pipeline_tag: text-generation
13
- ---
14
- # llama-3-Nephilim-v2-8B-GGUF
15
-
16
- This repo contains GGUF quants of a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit). The corresponding full weights are [here](https://huggingface.co/grimjim/llama-3-Nephilim-v2-8B).
17
-
18
- Task arithmetic was used to add the contributions of three models to v1 as a base model.
19
- The resulting model should be intelligent and attentive to context, and significantly more varied in its outputs compared to v1. The majority contribution was from a merge of two models showcasing recent advances in preference optimization ([princeton-nlp/Llama-3-Instruct-8B-SimPO](https://huggingface.co/princeton-nlp/Llama-3-Instruct-8B-SimPO) and
20
- [UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3](https://huggingface.co/UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3)), along with minority contributions from a highly-trained roleplay model and a fine-tuned biomedical model.
21
-
22
- Care should be taken when using this model, as it is possible that harmful outputs may be generated. Given that this model is derivative, responsible use is further mandated by the [WhiteRabbitNeo Usage Restrictions Extension](https://huggingface.co/WhiteRabbitNeo/Llama-3-WhiteRabbitNeo-8B-v2.0) to the Llama-3 License. This model is further subject to CC-BY-NC-4.0 by default, meaning that commercial use is restricted, barring an alternative licensing agreement.
23
-
24
- Tested with 8k context length and Instruct prompting.
25
-
26
- Example context templates variants tested with Llama 3 can be [downloaded here](https://huggingface.co/debased-ai/SillyTavern-settings/tree/main/advanced_formatting/context_template); their corresponding Instruct prompts can be [downloaded here](https://huggingface.co/debased-ai/SillyTavern-settings/tree/main/advanced_formatting/instruct_mode).
27
-
28
- During testing, sampler settings were temp=1, minP=0.01, and smooth sampling (factor=0.23, curve=4.32), all of which can be [downloaded as a single JSON file](https://huggingface.co/debased-ai/SillyTavern-settings/blob/main/presets/Llama%203%20Smoothie%20Presets%208k%20context.json).
29
-
30
- Built with Meta Llama 3.
31
-
32
- ## Merge Details
33
- ### Merge Method
34
-
35
- This model was merged using the [task arithmetic](https://arxiv.org/abs/2212.04089) merge method using [grimjim/llama-3-Nephilim-v1-8B](https://huggingface.co/grimjim/llama-3-Nephilim-v1-8B) as a base.
36
-
37
- ### Models Merged
38
-
39
- The following models were included in the merge:
40
- * [openlynn/Llama-3-Soliloquy-8B-v2](https://huggingface.co/openlynn/Llama-3-Soliloquy-8B-v2)
41
- * [grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge](https://huggingface.co/grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge)
42
- * [grimjim/llama-3-aaditya-OpenBioLLM-8B](https://huggingface.co/grimjim/llama-3-aaditya-OpenBioLLM-8B)
43
-
44
- ### Configuration
45
-
46
- The following YAML configuration was used to produce this model:
47
-
48
- ```yaml
49
- base_model: grimjim/llama-3-Nephilim-v1-8B
50
- dtype: bfloat16
51
- merge_method: task_arithmetic
52
- parameters:
53
- normalize: false
54
- slices:
55
- - sources:
56
- - layer_range: [0, 32]
57
- model: grimjim/llama-3-Nephilim-v1-8B
58
- - layer_range: [0, 32]
59
- model: grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge
60
- parameters:
61
- weight: 0.9
62
- - layer_range: [0, 32]
63
- model: openlynn/Llama-3-Soliloquy-8B-v2
64
- parameters:
65
- weight: 0.1
66
- - layer_range: [0, 32]
67
- model: grimjim/llama-3-aaditya-OpenBioLLM-8B
68
- parameters:
69
- weight: 0.1
70
-
71
- ```
 
1
+ ---
2
+ base_model: grimjim/llama-3-Nephilim-v2-8B
3
+ library_name: transformers
4
+ quanted_by: grimjim
5
+ license: cc-by-nc-4.0
6
+ pipeline_tag: text-generation
7
+ ---
8
+ # llama-3-Nephilim-v2-8B-GGUF
9
+
10
+ This repo contains GGUF quants of a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit). The corresponding full weights are [here](https://huggingface.co/grimjim/llama-3-Nephilim-v2-8B).
11
+
12
+ Task arithmetic was used to add the contributions of three models to v1 as a base model.
13
+ The resulting model should be intelligent and attentive to context, and significantly more varied in its outputs compared to v1. The majority contribution was from a merge of two models showcasing recent advances in preference optimization ([princeton-nlp/Llama-3-Instruct-8B-SimPO](https://huggingface.co/princeton-nlp/Llama-3-Instruct-8B-SimPO) and
14
+ [UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3](https://huggingface.co/UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3)), along with minority contributions from a highly-trained roleplay model and a fine-tuned biomedical model.
15
+
16
+ Care should be taken when using this model, as it is possible that harmful outputs may be generated. Given that this model is derivative, responsible use is further mandated by the [WhiteRabbitNeo Usage Restrictions Extension](https://huggingface.co/WhiteRabbitNeo/Llama-3-WhiteRabbitNeo-8B-v2.0) to the Llama-3 License. This model is further subject to CC-BY-NC-4.0 by default, meaning that commercial use is restricted, barring an alternative licensing agreement.
17
+
18
+ Tested with 8k context length and Instruct prompting.
19
+
20
+ Example context templates variants tested with Llama 3 can be [downloaded here](https://huggingface.co/debased-ai/SillyTavern-settings/tree/main/advanced_formatting/context_template); their corresponding Instruct prompts can be [downloaded here](https://huggingface.co/debased-ai/SillyTavern-settings/tree/main/advanced_formatting/instruct_mode).
21
+
22
+ During testing, sampler settings were temp=1, minP=0.01, and smooth sampling (factor=0.23, curve=4.32), all of which can be [downloaded as a single JSON file](https://huggingface.co/debased-ai/SillyTavern-settings/blob/main/presets/Llama%203%20Smoothie%20Presets%208k%20context.json).
23
+
24
+ Built with Meta Llama 3.
25
+
26
+ ## Merge Details
27
+ ### Merge Method
28
+
29
+ This model was merged using the [task arithmetic](https://arxiv.org/abs/2212.04089) merge method using [grimjim/llama-3-Nephilim-v1-8B](https://huggingface.co/grimjim/llama-3-Nephilim-v1-8B) as a base.
30
+
31
+ ### Models Merged
32
+
33
+ The following models were included in the merge:
34
+ * [openlynn/Llama-3-Soliloquy-8B-v2](https://huggingface.co/openlynn/Llama-3-Soliloquy-8B-v2)
35
+ * [grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge](https://huggingface.co/grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge)
36
+ * [grimjim/llama-3-aaditya-OpenBioLLM-8B](https://huggingface.co/grimjim/llama-3-aaditya-OpenBioLLM-8B)
37
+
38
+ ### Configuration
39
+
40
+ The following YAML configuration was used to produce this model:
41
+
42
+ ```yaml
43
+ base_model: grimjim/llama-3-Nephilim-v1-8B
44
+ dtype: bfloat16
45
+ merge_method: task_arithmetic
46
+ parameters:
47
+ normalize: false
48
+ slices:
49
+ - sources:
50
+ - layer_range: [0, 32]
51
+ model: grimjim/llama-3-Nephilim-v1-8B
52
+ - layer_range: [0, 32]
53
+ model: grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge
54
+ parameters:
55
+ weight: 0.9
56
+ - layer_range: [0, 32]
57
+ model: openlynn/Llama-3-Soliloquy-8B-v2
58
+ parameters:
59
+ weight: 0.1
60
+ - layer_range: [0, 32]
61
+ model: grimjim/llama-3-aaditya-OpenBioLLM-8B
62
+ parameters:
63
+ weight: 0.1
64
+
65
+ ```