Text Generation
Transformers
Safetensors
mistral
mergekit
Merge
roleplay
conversational
text-generation-inference
Instructions to use Vortex5/Nether-Moon-12B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vortex5/Nether-Moon-12B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vortex5/Nether-Moon-12B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Vortex5/Nether-Moon-12B") model = AutoModelForCausalLM.from_pretrained("Vortex5/Nether-Moon-12B") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Vortex5/Nether-Moon-12B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Vortex5/Nether-Moon-12B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Nether-Moon-12B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Vortex5/Nether-Moon-12B
- SGLang
How to use Vortex5/Nether-Moon-12B 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 "Vortex5/Nether-Moon-12B" \ --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": "Vortex5/Nether-Moon-12B", "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 "Vortex5/Nether-Moon-12B" \ --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": "Vortex5/Nether-Moon-12B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Vortex5/Nether-Moon-12B with Docker Model Runner:
docker model run hf.co/Vortex5/Nether-Moon-12B
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,32 +10,34 @@ library_name: transformers
|
|
| 10 |
tags:
|
| 11 |
- mergekit
|
| 12 |
- merge
|
| 13 |
-
|
|
|
|
| 14 |
---
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
| 39 |
base_model: Vortex5/Moonlit-Mirage-12B
|
| 40 |
models:
|
| 41 |
- model: crestf411/nemo-sunfall-v0.6.1
|
|
@@ -54,5 +56,248 @@ dtype: float32
|
|
| 54 |
out_dtype: bfloat16
|
| 55 |
tokenizer:
|
| 56 |
source: Vortex5/Moonlit-Mirage-12B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
|
| 58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
tags:
|
| 11 |
- mergekit
|
| 12 |
- merge
|
| 13 |
+
- roleplay
|
| 14 |
+
license: apache-2.0
|
| 15 |
---
|
| 16 |
+
<section class="model-card">
|
| 17 |
+
<div class="header">
|
| 18 |
+
<div class="title-frame">
|
| 19 |
+
<h1 class="title">NETHER-MOON-12B</h1>
|
| 20 |
+
</div>
|
| 21 |
+
</div>
|
| 22 |
+
<div class="image-container">
|
| 23 |
+
<img src="cover.jpg">
|
| 24 |
+
</div>
|
| 25 |
+
<div class="divider"></div>
|
| 26 |
+
<section class="box">
|
| 27 |
+
<h2 class="box-title">OVERVIEW</h2>
|
| 28 |
+
<p>
|
| 29 |
+
<strong class="highlight">Nether-Moon-12B</strong> was created by merging
|
| 30 |
+
<a href="https://huggingface.co/Vortex5/Moonlit-Mirage-12B" class="link">Moonlit-Mirage-12B</a>,
|
| 31 |
+
<a href="https://huggingface.co/crestf411/nemo-sunfall-v0.6.1" class="link">nemo-sunfall-v0.6.1</a>,
|
| 32 |
+
<a href="https://huggingface.co/Vortex5/Astral-Arcanist-12B" class="link">Astral-Arcanist-12B</a>,
|
| 33 |
+
<a href="https://huggingface.co/ReadyArt/Dark-Nexus-12B-v2.0" class="link">Dark-Nexus-12B-v2.0</a>,
|
| 34 |
+
<a href="https://huggingface.co/DarkArtsForge/Morbid-Miasma-12B" class="link">Morbid-Miasma-12B</a>, and
|
| 35 |
+
<a href="https://huggingface.co/EldritchLabs/Kraken-Karcher-12B-v1" class="link">Kraken-Karcher-12B-v1</a>,
|
| 36 |
+
using a custom method.
|
| 37 |
+
</p>
|
| 38 |
+
<details class="collapse">
|
| 39 |
+
<summary>MERGE CONFIGURATION</summary>
|
| 40 |
+
<pre>
|
| 41 |
base_model: Vortex5/Moonlit-Mirage-12B
|
| 42 |
models:
|
| 43 |
- model: crestf411/nemo-sunfall-v0.6.1
|
|
|
|
| 56 |
out_dtype: bfloat16
|
| 57 |
tokenizer:
|
| 58 |
source: Vortex5/Moonlit-Mirage-12B
|
| 59 |
+
</pre>
|
| 60 |
+
</details>
|
| 61 |
+
</section>
|
| 62 |
+
<section class="box last-box">
|
| 63 |
+
<h2 class="box-title">INTENDED USE</h2>
|
| 64 |
+
<div class="grid">
|
| 65 |
+
<div class="tile">
|
| 66 |
+
<span class="tile-main">ROLEPLAY</span>
|
| 67 |
+
<span class="tile-sub">Emotion-forward interaction</span>
|
| 68 |
+
</div>
|
| 69 |
+
<div class="tile">
|
| 70 |
+
<span class="tile-main">STORYTELLING</span>
|
| 71 |
+
<span class="tile-sub">Atmospheric long-form narrative</span>
|
| 72 |
+
</div>
|
| 73 |
+
<div class="tile">
|
| 74 |
+
<span class="tile-main">Creative Writing</span>
|
| 75 |
+
<span class="tile-sub">Atmospheric fiction</span>
|
| 76 |
+
</div>
|
| 77 |
+
</div>
|
| 78 |
+
</section>
|
| 79 |
+
<div class="divider"></div>
|
| 80 |
+
</section>
|
| 81 |
|
| 82 |
+
<style>
|
| 83 |
+
.model-card {
|
| 84 |
+
max-width: 1100px;
|
| 85 |
+
margin: 40px auto;
|
| 86 |
+
padding: 48px 38px 56px;
|
| 87 |
+
font-family: "Georgia", "Times New Roman", serif;
|
| 88 |
+
color: #e8e8f0;
|
| 89 |
+
background:
|
| 90 |
+
radial-gradient(circle at 20% 30%, rgba(180, 40, 60, 0.18) 0%, transparent 50%),
|
| 91 |
+
radial-gradient(circle at 80% 70%, rgba(120, 120, 180, 0.12) 0%, transparent 55%),
|
| 92 |
+
#0a0a12;
|
| 93 |
+
border: 3px solid #a8a8b8;
|
| 94 |
+
border-radius: 12px;
|
| 95 |
+
position: relative;
|
| 96 |
+
overflow: hidden;
|
| 97 |
+
}
|
| 98 |
+
.model-card::before {
|
| 99 |
+
content: '';
|
| 100 |
+
position: absolute;
|
| 101 |
+
inset: 0;
|
| 102 |
+
background-image:
|
| 103 |
+
radial-gradient(circle, #ffffff 1.1px, transparent 1.1px),
|
| 104 |
+
radial-gradient(circle, #ffffff 0.8px, transparent 0.8px),
|
| 105 |
+
radial-gradient(circle, #ff8080 1.6px, transparent 1.6px),
|
| 106 |
+
radial-gradient(circle, #c0c0e0 1.3px, transparent 1.3px),
|
| 107 |
+
radial-gradient(circle, #ff6060 0.9px, transparent 0.9px);
|
| 108 |
+
background-position:
|
| 109 |
+
0 0,
|
| 110 |
+
32px 28px,
|
| 111 |
+
65px 12px,
|
| 112 |
+
88px 68px,
|
| 113 |
+
18px 95px;
|
| 114 |
+
background-size:
|
| 115 |
+
92px 92px,
|
| 116 |
+
115px 98px,
|
| 117 |
+
78px 112px,
|
| 118 |
+
102px 85px,
|
| 119 |
+
65px 75px;
|
| 120 |
+
opacity: 0.18;
|
| 121 |
+
pointer-events: none;
|
| 122 |
+
z-index: 0;
|
| 123 |
+
animation: stellar-flicker 18s linear infinite;
|
| 124 |
+
}
|
| 125 |
+
@keyframes stellar-flicker {
|
| 126 |
+
0%, 100% { opacity: 0.18; }
|
| 127 |
+
50% { opacity: 0.27; }
|
| 128 |
+
}
|
| 129 |
+
.header {
|
| 130 |
+
text-align: center;
|
| 131 |
+
padding-bottom: 22px;
|
| 132 |
+
position: relative;
|
| 133 |
+
z-index: 1;
|
| 134 |
+
}
|
| 135 |
+
.title-frame {
|
| 136 |
+
display: inline-block;
|
| 137 |
+
position: relative;
|
| 138 |
+
}
|
| 139 |
+
.title {
|
| 140 |
+
margin: 0;
|
| 141 |
+
font-size: clamp(1.78rem, 4.45vw, 2.82rem);
|
| 142 |
+
font-weight: 900;
|
| 143 |
+
letter-spacing: 0.12em;
|
| 144 |
+
text-transform: uppercase;
|
| 145 |
+
color: #e8e8f8;
|
| 146 |
+
text-shadow:
|
| 147 |
+
0 0 5px rgba(255, 255, 255, 0.55),
|
| 148 |
+
0 0 12px rgba(180, 200, 255, 0.30),
|
| 149 |
+
0 0 20px rgba(255, 70, 90, 0.22);
|
| 150 |
+
line-height: 1;
|
| 151 |
+
white-space: nowrap;
|
| 152 |
+
}
|
| 153 |
+
.image-container {
|
| 154 |
+
display: flex;
|
| 155 |
+
justify-content: center;
|
| 156 |
+
position: relative;
|
| 157 |
+
z-index: 1;
|
| 158 |
+
margin-bottom: 36px;
|
| 159 |
+
}
|
| 160 |
+
.image-container img {
|
| 161 |
+
width: 100%;
|
| 162 |
+
max-width: 820px;
|
| 163 |
+
border-radius: 10px;
|
| 164 |
+
border: 4px solid #a0a0b8;
|
| 165 |
+
box-shadow:
|
| 166 |
+
0 30px 70px -25px rgba(180, 40, 60, 0.6),
|
| 167 |
+
0 0 40px -10px rgba(160, 160, 220, 0.3);
|
| 168 |
+
}
|
| 169 |
+
.divider {
|
| 170 |
+
height: 3px;
|
| 171 |
+
margin: 42px 0;
|
| 172 |
+
background: linear-gradient(90deg,
|
| 173 |
+
transparent,
|
| 174 |
+
#707080 20%,
|
| 175 |
+
#ff6060 50%,
|
| 176 |
+
#707080 80%,
|
| 177 |
+
transparent
|
| 178 |
+
);
|
| 179 |
+
position: relative;
|
| 180 |
+
z-index: 1;
|
| 181 |
+
}
|
| 182 |
+
.box {
|
| 183 |
+
padding: 34px;
|
| 184 |
+
background: rgba(14, 12, 22, 0.97);
|
| 185 |
+
border: 2px solid #a0a0b8;
|
| 186 |
+
border-radius: 10px;
|
| 187 |
+
box-shadow:
|
| 188 |
+
inset 0 6px 0 rgba(255,255,255,0.07),
|
| 189 |
+
0 18px 45px -18px rgba(180, 40, 60, 0.5);
|
| 190 |
+
position: relative;
|
| 191 |
+
z-index: 2;
|
| 192 |
+
backdrop-filter: blur(8px);
|
| 193 |
+
margin-bottom: 32px;
|
| 194 |
+
}
|
| 195 |
+
.last-box {
|
| 196 |
+
margin-bottom: 0;
|
| 197 |
+
}
|
| 198 |
+
.box-title {
|
| 199 |
+
margin: 0 0 22px;
|
| 200 |
+
font-size: 1.22rem;
|
| 201 |
+
font-weight: 800;
|
| 202 |
+
letter-spacing: 0.28em;
|
| 203 |
+
text-transform: uppercase;
|
| 204 |
+
color: #e0d8f0;
|
| 205 |
+
border-bottom: 3px solid #c04060;
|
| 206 |
+
padding-bottom: 14px;
|
| 207 |
+
display: inline-block;
|
| 208 |
+
text-shadow: 0 0 8px #ff6060;
|
| 209 |
+
}
|
| 210 |
+
.box p {
|
| 211 |
+
margin: 16px 0 22px;
|
| 212 |
+
line-height: 1.85;
|
| 213 |
+
color: #d0d0e0;
|
| 214 |
+
font-size: 1.06rem;
|
| 215 |
+
}
|
| 216 |
+
.highlight {
|
| 217 |
+
color: #ff6060;
|
| 218 |
+
font-weight: 700;
|
| 219 |
+
text-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
|
| 220 |
+
}
|
| 221 |
+
.collapse {
|
| 222 |
+
margin-top: 26px;
|
| 223 |
+
background: rgba(10, 8, 18, 0.96);
|
| 224 |
+
border: 2px solid #9090a8;
|
| 225 |
+
border-radius: 8px;
|
| 226 |
+
overflow: hidden;
|
| 227 |
+
}
|
| 228 |
+
.collapse summary {
|
| 229 |
+
padding: 20px 26px;
|
| 230 |
+
cursor: pointer;
|
| 231 |
+
font-size: 0.88rem;
|
| 232 |
+
font-weight: 700;
|
| 233 |
+
letter-spacing: 0.2em;
|
| 234 |
+
text-transform: uppercase;
|
| 235 |
+
color: #e0d8f0;
|
| 236 |
+
background: rgba(22, 18, 32, 0.9);
|
| 237 |
+
border-bottom: 2px solid #c04060;
|
| 238 |
+
}
|
| 239 |
+
.collapse pre {
|
| 240 |
+
margin: 0;
|
| 241 |
+
padding: 26px;
|
| 242 |
+
background: #0e0c18;
|
| 243 |
+
color: #b8b8d0;
|
| 244 |
+
font-size: 0.88rem;
|
| 245 |
+
line-height: 1.75;
|
| 246 |
+
font-family: ui-monospace, monospace;
|
| 247 |
+
overflow-x: auto;
|
| 248 |
+
}
|
| 249 |
+
.grid {
|
| 250 |
+
display: flex;
|
| 251 |
+
flex-wrap: wrap;
|
| 252 |
+
gap: 24px;
|
| 253 |
+
margin-top: 22px;
|
| 254 |
+
}
|
| 255 |
+
.tile {
|
| 256 |
+
flex: 1 1 245px;
|
| 257 |
+
padding: 28px 24px;
|
| 258 |
+
background: rgba(16, 14, 26, 0.94);
|
| 259 |
+
border: 2px solid #9090a8;
|
| 260 |
+
border-radius: 8px;
|
| 261 |
+
text-align: center;
|
| 262 |
+
transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
|
| 263 |
+
}
|
| 264 |
+
.tile:hover {
|
| 265 |
+
transform: translateY(-8px) scale(1.03);
|
| 266 |
+
border-color: #ff6060;
|
| 267 |
+
box-shadow: 0 22px 50px -18px rgba(255, 80, 80, 0.45);
|
| 268 |
+
}
|
| 269 |
+
.tile-main {
|
| 270 |
+
display: block;
|
| 271 |
+
margin-bottom: 12px;
|
| 272 |
+
font-size: 1.15rem;
|
| 273 |
+
font-weight: 800;
|
| 274 |
+
letter-spacing: 0.12em;
|
| 275 |
+
text-transform: uppercase;
|
| 276 |
+
color: #f0f0f8;
|
| 277 |
+
}
|
| 278 |
+
.tile-sub {
|
| 279 |
+
display: block;
|
| 280 |
+
font-size: 0.95rem;
|
| 281 |
+
color: #b0b0c8;
|
| 282 |
+
line-height: 1.55;
|
| 283 |
+
}
|
| 284 |
+
.link {
|
| 285 |
+
color: #c8b0d8;
|
| 286 |
+
text-decoration: none;
|
| 287 |
+
transition: color 0.3s ease;
|
| 288 |
+
}
|
| 289 |
+
.link:hover {
|
| 290 |
+
color: #ff8080;
|
| 291 |
+
text-decoration: underline;
|
| 292 |
+
}
|
| 293 |
+
@media (max-width: 650px) {
|
| 294 |
+
.model-card {
|
| 295 |
+
padding: 32px 22px 42px;
|
| 296 |
+
margin: 20px 10px;
|
| 297 |
+
border-radius: 10px;
|
| 298 |
+
}
|
| 299 |
+
.box {
|
| 300 |
+
padding: 26px;
|
| 301 |
+
}
|
| 302 |
+
}
|
| 303 |
+
</style>
|