starble-dev commited on
Commit
3c35ed0
1 Parent(s): 2a7664b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - mistral
4
+ - conversational
5
+ - text-generation-inference
6
+ - mergekit
7
+ - merge
8
+ base_model:
9
+ - Sao10K/MN-12B-Lyra-v2a1
10
+ - migtissera/Tess-3-Mistral-Nemo-12B
11
+ - TheDrummer/Rocinante-12B-v1.1
12
+ library_name: transformers
13
+ ---
14
+ > [!WARNING]
15
+ > **General Use Sampling:**<br>
16
+ > Mistral-Nemo-12B is very sensitive to the temperature sampler, try values near **0.3** at first or else you will get some weird results. This is mentioned by MistralAI at their [Transformers](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407#transformers) section.
17
+
18
+ > [!NOTE]
19
+ > **Best Samplers:**<br>
20
+ > I found best success using the following for Hollow-Tail-V1-12B:<br>
21
+ > Temperature: `1.2`<br>
22
+ > Top K: `-1`<br>
23
+ > Min P: `0.05`<br>
24
+ > Rep Penalty: `1.08`<br>
25
+
26
+ # Results
27
+ **Disclaimer**: This is a model merge!
28
+
29
+ Seems to be a bit smarter than I expected from my experience. May need a bit of guidance through system prompts at the beginning but it was quite fun to use. Though one thing I've realized with Mistral-Nemo is that the model does not really seem to end correctly, so instead I use the following format: <br>
30
+
31
+ Obviously this is just my personal experience but I find this to be a good setup, I strongly recommend you experiment with different system formats and see which is better for you. Note that none of these models are fine-tuned for this specific format, I believe most of them are fine-tuned on Mistral's original [INST] and [/INST] format or ChatML.
32
+ ```
33
+ <[start_system]>
34
+ You are a professional writer.
35
+ <[STOP]>
36
+ <[start_prompt]>
37
+ User prompt here.
38
+ <[STOP]>
39
+ <[start_model]>
40
+ Model response here.
41
+ <[STOP]>
42
+ ```
43
+
44
+ **Original Models:** <br>
45
+ - [Sao10K/MN-12B-Lyra-v2a1](https://huggingface.co/Sao10K/MN-12B-Lyra-v2a1) (Thank you so much for your work ♥)
46
+ - [migtissera/Tess-3-Mistral-Nemo-12B](https://huggingface.co/migtissera/Tess-3-Mistral-Nemo-12B) (Thank you so much for your work ♥)
47
+ - [TheDrummer/Rocinante-12B-v1.1](https://huggingface.co/TheDrummer/Rocinante-12B-v1.1) (Thank you so much for your work ♥)
48
+
49
+ **GGUF Quants:** <br>
50
+ - [starble-dev/Hollow-Tail-V1-12B-GGUF](https://huggingface.co/starble-dev/Hollow-Tail-V1-12B-GGUF)
51
+
52
+ **Original Model Licenses:** <br>
53
+ - **Sao10K/MN-12B-Lyra-v2a1** is licensed under **Creative Commons Attribution Non Commercial 4.0**
54
+ - **migtissera/Tess-3-Mistral-Nemo-12B** is licensed under **apache-2.0**
55
+ - **TheDrummer/Rocinante-12B-v1.1** license is not specified
56
+
57
+ ---
58
+
59
+ # Hollow-Tail-V1-12B
60
+
61
+ This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
62
+
63
+ ## Merge Details
64
+ ### Merge Method
65
+
66
+ This model was merged using the [linear](https://arxiv.org/abs/2203.05482) merge method using models/Rocinante-12B-v1.1 as a base.
67
+
68
+ ### Models Merged
69
+
70
+ The following models were included in the merge:
71
+ * migtissera/Tess-3-Mistral-Nemo-12B
72
+ * Sao10K/MN-12B-Lyra-v2a1
73
+ * TheDrummer/Rocinante-12B-v1.1
74
+
75
+ ### Configuration
76
+
77
+ The following YAML configuration was used to produce this model:
78
+
79
+ ```yaml
80
+ models:
81
+ - model: Sao10K/MN-12B-Lyra-v2a1
82
+ parameters:
83
+ weight: 0.8
84
+ - model: migtissera/Tess-3-Mistral-Nemo-12B
85
+ parameters:
86
+ weight: 0.2
87
+ - model: TheDrummer/Rocinante-12B-v1.1
88
+ parameters:
89
+ weight: 0.8
90
+ merge_method: linear
91
+ base_model: TheDrummer/Rocinante-12B-v1.1
92
+ parameters:
93
+ normalize: true
94
+ int8_mask: true
95
+ dtype: bfloat16
96
+ ```