Text Generation
Transformers
Safetensors
NeMo
English
mistral
creative
creative writing
fiction writing
plot generation
sub-plot generation
story generation
scene continue
storytelling
fiction story
science fiction
romance
all genres
story
writing
vivid prosing
vivid writing
fiction
roleplaying
float32
swearing
rp
horror
della
Merge
mergekit
conversational
text-generation-inference
Instructions to use DarkArtsForge/Savage-Sands-12B-MPOA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DarkArtsForge/Savage-Sands-12B-MPOA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DarkArtsForge/Savage-Sands-12B-MPOA") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DarkArtsForge/Savage-Sands-12B-MPOA") model = AutoModelForCausalLM.from_pretrained("DarkArtsForge/Savage-Sands-12B-MPOA") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - NeMo
How to use DarkArtsForge/Savage-Sands-12B-MPOA with NeMo:
# tag did not correspond to a valid NeMo domain.
- Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use DarkArtsForge/Savage-Sands-12B-MPOA with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DarkArtsForge/Savage-Sands-12B-MPOA" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Savage-Sands-12B-MPOA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DarkArtsForge/Savage-Sands-12B-MPOA
- SGLang
How to use DarkArtsForge/Savage-Sands-12B-MPOA with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "DarkArtsForge/Savage-Sands-12B-MPOA" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Savage-Sands-12B-MPOA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "DarkArtsForge/Savage-Sands-12B-MPOA" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Savage-Sands-12B-MPOA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DarkArtsForge/Savage-Sands-12B-MPOA with Docker Model Runner:
docker model run hf.co/DarkArtsForge/Savage-Sands-12B-MPOA
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,358 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- DarkArtsForge/Savage-Sands-12B
|
| 4 |
+
datasets:
|
| 5 |
+
- OccultAI/illuminati_imatrix_v1
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
library_name: transformers
|
| 9 |
+
license: apache-2.0
|
| 10 |
+
tags:
|
| 11 |
+
- creative
|
| 12 |
+
- creative writing
|
| 13 |
+
- fiction writing
|
| 14 |
+
- plot generation
|
| 15 |
+
- sub-plot generation
|
| 16 |
+
- fiction writing
|
| 17 |
+
- story generation
|
| 18 |
+
- scene continue
|
| 19 |
+
- storytelling
|
| 20 |
+
- fiction story
|
| 21 |
+
- science fiction
|
| 22 |
+
- romance
|
| 23 |
+
- all genres
|
| 24 |
+
- story
|
| 25 |
+
- writing
|
| 26 |
+
- vivid prosing
|
| 27 |
+
- vivid writing
|
| 28 |
+
- fiction
|
| 29 |
+
- roleplaying
|
| 30 |
+
- float32
|
| 31 |
+
- swearing
|
| 32 |
+
- rp
|
| 33 |
+
- horror
|
| 34 |
+
- della
|
| 35 |
+
- mistral
|
| 36 |
+
- nemo
|
| 37 |
+
- merge
|
| 38 |
+
- mergekit
|
| 39 |
+
widget:
|
| 40 |
+
- text: "Savage-Sands-12B"
|
| 41 |
+
output:
|
| 42 |
+
url: https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/-I_Iw69w2x9WNmk-iA2oE.png
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
<audio controls src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/49d0YkIIJ_T9JeZ3gkwZ_.mpga"></audio>
|
| 46 |
+
|
| 47 |
+
> [!CAUTION]
|
| 48 |
+
> <span style="color:red; font-weight:bold">β οΈ Warning:</span> This model can produce narratives and RP that contain violent and graphic erotic content. Adjust your system prompt accordingly, and use **ChatML** chat template.
|
| 49 |
+
>
|
| 50 |
+
|
| 51 |
+
<!DOCTYPE html>
|
| 52 |
+
<style>
|
| 53 |
+
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,700;1,400&family=Uncial+Antiqua&display=swap');
|
| 54 |
+
|
| 55 |
+
body {
|
| 56 |
+
font-family: 'Crimson Text', serif;
|
| 57 |
+
color: #4A3F35; /* Faded Ink Brown */
|
| 58 |
+
line-height: 1.6;
|
| 59 |
+
margin: 0;
|
| 60 |
+
padding: 0;
|
| 61 |
+
background-color: #281E18; /* Dark Wood Desk */
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
b, strong {
|
| 65 |
+
color: #8C1C13; /* Crimson Seal */
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
.grimoire-text {
|
| 69 |
+
font-family: 'Uncial Antiqua', cursive;
|
| 70 |
+
color: #3D352A; /* Dark Ink */
|
| 71 |
+
position: relative;
|
| 72 |
+
z-index: 2;
|
| 73 |
+
margin-left: 0.2em;
|
| 74 |
+
text-shadow: 0 0 10px #A49687;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
/* Section styling */
|
| 78 |
+
.section-container {
|
| 79 |
+
background-color: rgba(245, 235, 218, 0.05);
|
| 80 |
+
margin-bottom: 30px;
|
| 81 |
+
position: relative;
|
| 82 |
+
overflow: hidden;
|
| 83 |
+
border-bottom: 1px solid rgba(140, 28, 19, 0.3); /* Faded Crimson Border */
|
| 84 |
+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.section-header {
|
| 88 |
+
display: flex;
|
| 89 |
+
align-items: center;
|
| 90 |
+
background-color: rgba(140, 28, 19, 0.06);
|
| 91 |
+
padding: 10px 20px;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
.section-indicator {
|
| 95 |
+
width: 8px;
|
| 96 |
+
height: 20px;
|
| 97 |
+
background-color: #8C1C13;
|
| 98 |
+
margin-right: 15px;
|
| 99 |
+
box-shadow: 0 0 8px rgba(140, 28, 19, 0.4);
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
.section-title {
|
| 103 |
+
font-family: 'Uncial Antiqua', cursive;
|
| 104 |
+
color: #4A3F35;
|
| 105 |
+
font-size: 1.4rem;
|
| 106 |
+
margin: 0;
|
| 107 |
+
letter-spacing: 1px;
|
| 108 |
+
font-weight: 400;
|
| 109 |
+
text-transform: capitalize;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.section-content {
|
| 113 |
+
padding: 20px;
|
| 114 |
+
font-family: 'Crimson Text', serif;
|
| 115 |
+
color: #4A3F35;
|
| 116 |
+
line-height: 1.7;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
/* Title styling */
|
| 120 |
+
.title-container {
|
| 121 |
+
background-color: transparent;
|
| 122 |
+
position: relative;
|
| 123 |
+
overflow: hidden;
|
| 124 |
+
margin-bottom: 40px;
|
| 125 |
+
border-left: 3px solid #8C1C13;
|
| 126 |
+
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
|
| 127 |
+
}
|
| 128 |
+
|
| 129 |
+
.title-wrapper {
|
| 130 |
+
position: relative;
|
| 131 |
+
z-index: 2;
|
| 132 |
+
padding: 25px 20px 30px 30px;
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
.title-main {
|
| 136 |
+
color: #3D352A;
|
| 137 |
+
font-size: 1.8rem;
|
| 138 |
+
font-weight: 700;
|
| 139 |
+
margin: 0;
|
| 140 |
+
letter-spacing: 2px;
|
| 141 |
+
display: inline-block;
|
| 142 |
+
position: relative;
|
| 143 |
+
text-transform: uppercase;
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
/* Subheading styling */
|
| 147 |
+
.subheading {
|
| 148 |
+
font-family: 'Uncial Antiqua', cursive;
|
| 149 |
+
color: #7B5E4A; /* Lighter Ink Brown */
|
| 150 |
+
font-size: 1.1rem;
|
| 151 |
+
margin-top: 20px;
|
| 152 |
+
margin-bottom: 15px;
|
| 153 |
+
font-weight: 400;
|
| 154 |
+
border-bottom: 1px dashed rgba(123, 94, 74, 0.4);
|
| 155 |
+
display: inline-block;
|
| 156 |
+
text-transform: uppercase;
|
| 157 |
+
letter-spacing: 1px;
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
/* Links */
|
| 161 |
+
a {
|
| 162 |
+
color: #7B5E4A;
|
| 163 |
+
text-decoration: none;
|
| 164 |
+
font-weight: bold;
|
| 165 |
+
}
|
| 166 |
+
|
| 167 |
+
a:hover {
|
| 168 |
+
text-decoration: underline;
|
| 169 |
+
color: #8C1C13; /* Crimson Seal on hover */
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
/* List Styling - Goetia Icons */
|
| 173 |
+
ul {
|
| 174 |
+
list-style: none; /* CRITICAL: This hides the default marker causing the blue box */
|
| 175 |
+
padding-left: 1.6em;
|
| 176 |
+
}
|
| 177 |
+
|
| 178 |
+
ul li {
|
| 179 |
+
position: relative;
|
| 180 |
+
margin-bottom: 0.6em;
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
ul li::before {
|
| 184 |
+
content: "\26E7"; /* β§ Inverted Pentagram */
|
| 185 |
+
|
| 186 |
+
/* FALLBACK PROTECTION: */
|
| 187 |
+
/* This ensures that if your main font lacks the symbol, it grabs it from the system/OS symbols */
|
| 188 |
+
font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols", "DejaVu Sans", sans-serif;
|
| 189 |
+
|
| 190 |
+
position: absolute;
|
| 191 |
+
left: -1.4em;
|
| 192 |
+
|
| 193 |
+
/* Fiery Styling */
|
| 194 |
+
color: #CC0000; /* Strong red base */
|
| 195 |
+
font-size: 1.5rem; /* Larger */
|
| 196 |
+
font-weight: normal; /* Icons often render cleaner without 'bold' at this size */
|
| 197 |
+
top: -5px; /* Vertical alignment fix */
|
| 198 |
+
|
| 199 |
+
/* Static Fire Glow (No Animation/Low CPU cost) */
|
| 200 |
+
/* Layer 1: Slight dark drop shadow for depth */
|
| 201 |
+
/* Layer 2: Orange-red ambient glow */
|
| 202 |
+
text-shadow: 1px 1px 1px rgba(0,0,0,0.4), 0 0 5px #FF5500;
|
| 203 |
+
|
| 204 |
+
background-color: transparent;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
/* Container */
|
| 208 |
+
.container {
|
| 209 |
+
max-width: 1200px;
|
| 210 |
+
margin: 20px auto;
|
| 211 |
+
padding: 40px 20px;
|
| 212 |
+
background-color: #F5EBDA; /* Aged Parchment */
|
| 213 |
+
background-image:
|
| 214 |
+
radial-gradient(circle at 10% 10%, rgba(140, 28, 19, 0.04) 0%, transparent 50%),
|
| 215 |
+
radial-gradient(circle at 90% 80%, rgba(61, 53, 42, 0.06) 0%, transparent 50%);
|
| 216 |
+
min-height: calc(100vh - 40px);
|
| 217 |
+
border: 1px solid #C8BBAA; /* Parchment Edge */
|
| 218 |
+
border-radius: 3px;
|
| 219 |
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
</style>
|
| 223 |
+
<html lang="en">
|
| 224 |
+
<head>
|
| 225 |
+
<meta charset="UTF-8">
|
| 226 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 227 |
+
<title>Savage Sands 12B MPOA</title>
|
| 228 |
+
</head>
|
| 229 |
+
<body>
|
| 230 |
+
|
| 231 |
+
<div class="container">
|
| 232 |
+
<div class="title-container">
|
| 233 |
+
<div class="title-wrapper">
|
| 234 |
+
<h1 class="title-main">
|
| 235 |
+
<span class="grimoire-text">ποΈ Savage Sands 12B MPOA</span>
|
| 236 |
+
</h1>
|
| 237 |
+
</div>
|
| 238 |
+
</div>
|
| 239 |
+
|
| 240 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/-I_Iw69w2x9WNmk-iA2oE.png" alt="Goetia Grimoire" style="width:100%; border-radius: 3px; margin-bottom: 30px; border: 1px solid #C8BBAA;">
|
| 241 |
+
|
| 242 |
+
<div class="section-container">
|
| 243 |
+
<div class="section-content"><font face="verdana" size="2">
|
| 244 |
+
<details>This image depicts a high-stakes confrontation in a desolate, sandy environment. At the center of the action is a fierce duel between a heavily armored human warrior and a monstrous, winged demon. The warrior, seen from the side, is equipped with a gold-colored <b>Trojan-style helmet</b>. He lunges forward, gripping a <b>gladius</b>βa short, broad-bladed Roman swordβwith both hands. His armor is dark and intricate, consisting of layered plates and a tattered, loincloth-like skirt that fans out with his movement.
|
| 245 |
+
|
| 246 |
+
Facing him is a formidable <b>demon</b>. The creature has pale, muscular gray skin and massive, leathery <b>bat-like wings</b> that span a large portion of the background. It has a snarling, animalistic face with horns and is brandishing a long, wicked-looking <b>spear</b>, which it uses to block the warrior's advance. The demon's pose is agile and predatory, mirroring the intensity of the warrior's strike.
|
| 247 |
+
|
| 248 |
+
The battle takes place on a series of flat, circular <b>stepping stones</b> scattered across a dry, dusty landscape. In the bottom right foreground, another figure is partially visible, huddled on the ground and clad in white robes with a red sash, seemingly caught in the middle of this epic struggle. The background is filled with soft, hazy clouds and distant rock formations, giving the scene a timeless, mythological feel.</font></details>
|
| 249 |
+
</div></div>
|
| 250 |
+
|
| 251 |
+
<div class="section-container">
|
| 252 |
+
<div class="section-header">
|
| 253 |
+
<div class="section-indicator"></div>
|
| 254 |
+
<h2 class="section-title">π΅ 12B Roleplay</h2>
|
| 255 |
+
</div>
|
| 256 |
+
<div class="section-content"><font face="verdana">
|
| 257 |
+
|
| 258 |
+
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit). The [main model](https://huggingface.co/DarkArtsForge/Savage-Sands-12B) was merged using the [della](https://arxiv.org/abs/2406.11617) merge method with unablated donors, and therefore has some refusals.
|
| 259 |
+
|
| 260 |
+
For a fully **uncensored** version, see [this page](https://huggingface.co/DarkArtsForge/Savage-Sands-12B-MPOA) which was manually calibrated with `scale 1.7`.
|
| 261 |
+
|
| 262 |
+
<details><b>This model is highly resistant to standard ablation methods like MPOA.</b> More than most Nemo 12Bs.
|
| 263 |
+
|
| 264 |
+
Which is strange considering the `della` method was used with `normalize: false` which is basically like a mild form of pre-ablation.
|
| 265 |
+
|
| 266 |
+
I tested several setups, and while lower values like scale 1.0 or 1.1 unlocked most refusals, there was a particular instruction prompt it still kept refusing.
|
| 267 |
+
|
| 268 |
+
Even at scale 1.5, it would overtly refuse, and claim it wasn't "safe or appropriate" and that it "couldn't be done".
|
| 269 |
+
|
| 270 |
+
I had to crank it up even higher in order to fully uncensor the model.
|
| 271 |
+
|
| 272 |
+
**The minimum threshold was identified: `scale 1.7` applied to all layers `0-39`.**
|
| 273 |
+
|
| 274 |
+
Attempting to only apply to layers 11-39 caused it to hallucinate a "corrected term" to swap out the correct term prompted it with, which was another direct form of covert non-compliance.
|
| 275 |
+
|
| 276 |
+
Attempting to only apply to layers 4-39 caused additional non-compliant "false corrections". **Every layer must be ablated for this model in order to uncensor it.** There seem to be hidden forms of covert non-compliance embedded in the earliest layers, even lm_head. **Despite being low on the graph, these early layers still contribute toward refusal of prompts.**
|
| 277 |
+
|
| 278 |
+
**When using scale 1.7 on all 40 layers, it uses a CORRECT correction (grammatical, not changing words) which is FULLY compliant, with no refusals or covert attempts to change topics.**
|
| 279 |
+
|
| 280 |
+
So if you want the model as smart as possible then use the unablated version with jailbreak. But if you require built-in no refusals, the MPOA version is also quite creative.
|
| 281 |
+
|
| 282 |
+
</details>
|
| 283 |
+
</div>
|
| 284 |
+
</div>
|
| 285 |
+
|
| 286 |
+
<div class="section-container">
|
| 287 |
+
<div class="section-header">
|
| 288 |
+
<div class="section-indicator"></div>
|
| 289 |
+
<h2 class="section-title">βοΈ YAML Configuration</h2>
|
| 290 |
+
</div>
|
| 291 |
+
<div class="section-content"><font face="verdana">
|
| 292 |
+
|
| 293 |
+
```yaml
|
| 294 |
+
architecture: MistralForCausalLM
|
| 295 |
+
base_model: B:/12B/mistralai--Mistral-Nemo-Instruct-2407
|
| 296 |
+
models:
|
| 297 |
+
- model: B:/12B/inflatebot--MN-12B-Mag-Mell-R1
|
| 298 |
+
parameters:
|
| 299 |
+
weight: 0.5
|
| 300 |
+
density: 0.9
|
| 301 |
+
epsilon: 0.09
|
| 302 |
+
- model: B:/12B/taozi555--MN-12B-Mag-Mell-R1-KTO
|
| 303 |
+
parameters:
|
| 304 |
+
weight: 0.5
|
| 305 |
+
density: 0.9
|
| 306 |
+
epsilon: 0.09
|
| 307 |
+
- model: B:/12B/UniLLMer--GslayerKaa
|
| 308 |
+
parameters:
|
| 309 |
+
weight: 0.5
|
| 310 |
+
density: 0.9
|
| 311 |
+
epsilon: 0.09
|
| 312 |
+
- model: B:/12B/redrix--GodSlayer-12B-ABYSS
|
| 313 |
+
parameters:
|
| 314 |
+
weight: 0.5
|
| 315 |
+
density: 0.9
|
| 316 |
+
epsilon: 0.09
|
| 317 |
+
merge_method: della
|
| 318 |
+
parameters:
|
| 319 |
+
lambda: 1.0
|
| 320 |
+
normalize: false
|
| 321 |
+
int8_mask: false
|
| 322 |
+
rescale: true
|
| 323 |
+
dtype: float32
|
| 324 |
+
out_dtype: bfloat16
|
| 325 |
+
tokenizer:
|
| 326 |
+
source: B:/12B/taozi555--MN-12B-Mag-Mell-R1-KTO
|
| 327 |
+
name: ποΈ Savage-Sands-12B
|
| 328 |
+
```
|
| 329 |
+
</div>
|
| 330 |
+
</div>
|
| 331 |
+
|
| 332 |
+
<div class="section-container">
|
| 333 |
+
<div class="section-header">
|
| 334 |
+
<div class="section-indicator"></div>
|
| 335 |
+
<h2 class="section-title">π Merge Audit</h2>
|
| 336 |
+
</div>
|
| 337 |
+
<div class="section-content"><font face="verdana">
|
| 338 |
+
|
| 339 |
+
<pre>
|
| 340 |
+
[DELLA Audit] Layer: model.layers.33.mlp.down_proj.weight | Lambda=1.00
|
| 341 |
+
[BASE] mistralai--Mistral-Nemo-Instruct-2407
|
| 342 |
+
UniLLMer--GslayerKaa : ββββββββββββββββ 33.3% (W:0.50 D:0.90 N:4.89 E:0.09)
|
| 343 |
+
inflatebot--MN-12B-Mag-Mell-R1 : ββββββββ 17.7% (W:0.50 D:0.90 N:2.59 E:0.09)
|
| 344 |
+
redrix--GodSlayer-12B-ABYSS : βββββββββββββββ 31.3% (W:0.50 D:0.90 N:4.59 E:0.09)
|
| 345 |
+
taozi555--MN-12B-Mag-Mell-R1-KTO : ββββββββ 17.7% (W:0.50 D:0.90 N:2.59 E:0.09)
|
| 346 |
+
|
| 347 |
+
[DELLA Audit] Layer: model.layers.33.mlp.gate_proj.weight | Lambda=1.00
|
| 348 |
+
[BASE] mistralai--Mistral-Nemo-Instruct-2407
|
| 349 |
+
UniLLMer--GslayerKaa : βββββββββββββββββββ 38.5% (W:0.50 D:0.90 N:7.05 E:0.09)
|
| 350 |
+
inflatebot--MN-12B-Mag-Mell-R1 : βββββββ 14.8% (W:0.50 D:0.90 N:2.70 E:0.09)
|
| 351 |
+
redrix--GodSlayer-12B-ABYSS : βββββββββββββββ 31.9% (W:0.50 D:0.90 N:5.84 E:0.09)
|
| 352 |
+
taozi555--MN-12B-Mag-Mell-R1-KTO : βββββββ 14.8% (W:0.50 D:0.90 N:2.71 E:0.09)
|
| 353 |
+
</pre>
|
| 354 |
+
|
| 355 |
+
</font></div>
|
| 356 |
+
</div>
|
| 357 |
+
|
| 358 |
+
</html>
|