Triangle104 commited on
Commit
60ccf68
·
verified ·
1 Parent(s): 6a579e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -1
README.md CHANGED
@@ -13,12 +13,81 @@ datasets:
13
  - anthracite-org/kalo-opus-instruct-3k-filtered-no-system
14
  - anthracite-org/nopm_claude_writing_fixed
15
  base_model: crestf411/Q2.5-32B-Slush
 
16
  ---
17
 
18
  # Triangle104/Q2.5-32B-Slush-Q3_K_S-GGUF
19
  This model was converted to GGUF format from [`crestf411/Q2.5-32B-Slush`](https://huggingface.co/crestf411/Q2.5-32B-Slush) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
  Refer to the [original model card](https://huggingface.co/crestf411/Q2.5-32B-Slush) for more details on the model.
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ## Use with llama.cpp
23
  Install llama.cpp through brew (works on Mac and Linux)
24
 
@@ -57,4 +126,4 @@ Step 3: Run inference through the main binary.
57
  or
58
  ```
59
  ./llama-server --hf-repo Triangle104/Q2.5-32B-Slush-Q3_K_S-GGUF --hf-file q2.5-32b-slush-q3_k_s.gguf -c 2048
60
- ```
 
13
  - anthracite-org/kalo-opus-instruct-3k-filtered-no-system
14
  - anthracite-org/nopm_claude_writing_fixed
15
  base_model: crestf411/Q2.5-32B-Slush
16
+ license: apache-2.0
17
  ---
18
 
19
  # Triangle104/Q2.5-32B-Slush-Q3_K_S-GGUF
20
  This model was converted to GGUF format from [`crestf411/Q2.5-32B-Slush`](https://huggingface.co/crestf411/Q2.5-32B-Slush) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
  Refer to the [original model card](https://huggingface.co/crestf411/Q2.5-32B-Slush) for more details on the model.
22
 
23
+ ---
24
+ Model details:
25
+ -
26
+ Slush is a two-stage model trained with high LoRA dropout, where stage 1 is a pretraining continuation on the base model, aimed at boosting the model's creativity and writing capabilities. This is then merged into the instruction tune model, and stage 2 is a fine tuning step on top of this to further enhance its roleplaying capabilities and/or to repair any damage caused in the stage 1 merge.
27
+
28
+ This is still early stage. As always, feedback is welcome, and begone if you demand perfection.
29
+
30
+ The second stage, like the Sunfall series, follows the Silly Tavern preset (ChatML), so ymmv in particular if you use some other tool and/or preset.
31
+ Parameter suggestions
32
+
33
+ I did all my testing with temp 1, min-p 0.1, DRY 0.8, but enabled XTC as context grew and/or the model started saying "the same stuff".
34
+
35
+ Qwen 2.5 32B Instruct (vanilla) has a strong tendency to start speaking for the user, especially in narrator scenarios. I was unable to properly train this out of the model completely, so you may want to add e.g. "\nYou" as a stopping string, and enable "trim incomplete sentences", especially if you have banned sentences.
36
+
37
+ The model has a tendency to add an unnecesary final paragraph to responses during roleplay, sort of like a "summary" of how the character is feeling. Keeping it is OK, but it may snowball quickly. Hoping to address this but not sure how.
38
+ Training details
39
+
40
+ Stage 1 (continued pretraining)
41
+ Target: Qwen/Qwen2.5-32B (resulting LoRA merged into Qwen/Qwen2.5-32B-Instruct)
42
+ LoRA dropout 0.5 (motivation)
43
+ LoRA rank 32, alpha 64 (motivation)
44
+ LR cosine 4e-6
45
+ LoRA+ with LR Ratio: 15
46
+ Context size: 8192
47
+ Gradient accumulation steps: 4
48
+ Epochs: 1
49
+ Stage 2 (fine tune)
50
+ Target: Stage 1 model
51
+ LoRA dropout 0.5
52
+ LoRA rank 32, alpha 64
53
+ LR cosine 5e-6 (min 5e-7)
54
+ LoRA+ with LR Ratio: 15
55
+ Context size: 16384
56
+ Gradient accumulation steps: 4
57
+ Epochs: 1
58
+
59
+ Merge Details
60
+ Merge Method
61
+
62
+ This model was merged using the TIES merge method.
63
+ Configuration
64
+
65
+ The following YAML configuration was used to produce this model:
66
+
67
+ models:
68
+ - model: stage1-model
69
+ parameters:
70
+ weight: 1
71
+ density: 1
72
+ - model: stage2-model
73
+ parameters:
74
+ weight: 1
75
+ density: 1
76
+ - model: Qwen/Qwen2.5-32B-Instruct
77
+ parameters:
78
+ weight: 0.9
79
+ density: 0.9
80
+ merge_method: ties
81
+ base_model: Qwen/Qwen2.5-32B
82
+ parameters:
83
+ weight: 0.9
84
+ density: 0.9
85
+ normalize: true
86
+ int8_mask: true
87
+ tokenizer_source: Qwen/Qwen2.5-32B-Instruct
88
+ dtype: bfloat16
89
+
90
+ ---
91
  ## Use with llama.cpp
92
  Install llama.cpp through brew (works on Mac and Linux)
93
 
 
126
  or
127
  ```
128
  ./llama-server --hf-repo Triangle104/Q2.5-32B-Slush-Q3_K_S-GGUF --hf-file q2.5-32b-slush-q3_k_s.gguf -c 2048
129
+ ```