grimjim commited on
Commit
924f56c
1 Parent(s): f435720

Update README.md

Browse files

Added link to GGUF quants

Files changed (1) hide show
  1. README.md +72 -71
README.md CHANGED
@@ -1,71 +1,72 @@
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
15
-
16
- This repo contains is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
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:
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
15
+
16
+ This repo contains is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
17
+ GGUF quants are available [here](https://huggingface.co/grimjim/llama-3-Nephilim-v2-8B-GGUF).
18
+
19
+ Task arithmetic was used to add the contributions of three models to v1 as a base model.
20
+ 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
21
+ [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.
22
+
23
+ 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.
24
+
25
+ Tested with 8k context length and Instruct prompting.
26
+
27
+ 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).
28
+
29
+ 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).
30
+
31
+ Built with Meta Llama 3.
32
+
33
+ ## Merge Details
34
+ ### Merge Method
35
+
36
+ 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.
37
+
38
+ ### Models Merged
39
+
40
+ The following models were included in the merge:
41
+ * [openlynn/Llama-3-Soliloquy-8B-v2](https://huggingface.co/openlynn/Llama-3-Soliloquy-8B-v2)
42
+ * [grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge](https://huggingface.co/grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge)
43
+ * [grimjim/llama-3-aaditya-OpenBioLLM-8B](https://huggingface.co/grimjim/llama-3-aaditya-OpenBioLLM-8B)
44
+
45
+ ### Configuration
46
+
47
+ The following YAML configuration was used to produce this model:
48
+
49
+ ```yaml
50
+ base_model: grimjim/llama-3-Nephilim-v1-8B
51
+ dtype: bfloat16
52
+ merge_method: task_arithmetic
53
+ parameters:
54
+ normalize: false
55
+ slices:
56
+ - sources:
57
+ - layer_range: [0, 32]
58
+ model: grimjim/llama-3-Nephilim-v1-8B
59
+ - layer_range: [0, 32]
60
+ model: grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge
61
+ parameters:
62
+ weight: 0.9
63
+ - layer_range: [0, 32]
64
+ model: openlynn/Llama-3-Soliloquy-8B-v2
65
+ parameters:
66
+ weight: 0.1
67
+ - layer_range: [0, 32]
68
+ model: grimjim/llama-3-aaditya-OpenBioLLM-8B
69
+ parameters:
70
+ weight: 0.1
71
+
72
+ ```