Delta-Vector commited on
Commit
9499668
·
verified ·
1 Parent(s): d12fcb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +300 -0
README.md CHANGED
@@ -1 +1,301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ thumbnail: "https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/jg2NWmCUfPyzizm2USjMt.jpeg"
3
+ datasets:
4
+ - NewEden/Orion-LIT
5
+ - NewEden/Orion-Asstr-Stories-16K
6
+ - Mielikki/Erebus-87k
7
+ base_model:
8
+ - NewEden/Hamanasu-32B-V1
9
+ tags:
10
+ - qwen
11
+ - roleplay
12
+ - finetune
13
+ - storywriting
14
+ ---
15
+ <!DOCTYPE html>
16
+ <style>
17
+ html, body {
18
+ background: black;
19
+ color: #c9d1d9 !important;
20
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
21
+ margin: 0;
22
+ padding: 0;
23
+ min-height: 100vh;
24
+ }
25
+ .markdown-body {
26
+ color: white;
27
+ margin: 40px auto;
28
+ padding: 40px;
29
+ border-radius: 12px;
30
+ position: relative;
31
+ overflow: hidden;
32
+ }
33
 
34
+ .markdown-body::after {
35
+ content: '';
36
+ position: absolute;
37
+ top: 0;
38
+ left: 0;
39
+ width: 100%;
40
+ height: 100%;
41
+ background: #0c0f18; /* background color */
42
+ pointer-events: none;
43
+ z-index: -999;
44
+ }
45
+
46
+ h1, h2, h3 {
47
+ background: linear-gradient(45deg, #6e00ff, #00ffff);
48
+ -webkit-background-clip: text;
49
+ -webkit-text-fill-color: transparent;
50
+ border-bottom: 1px solid #333;
51
+ padding-bottom: 0.3em;
52
+ }
53
+
54
+ div[style*="border:2px solid #333"],
55
+ div[style*="border: 2px solid #333"],
56
+ div[style*="border:1px solid #333"],
57
+ div[style*="border: 1px solid #333"] {
58
+ background: rgba(22, 27, 34, 0.8) !important;
59
+ border: 2px solid #6e00ff !important;
60
+ box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
61
+ border-radius: 10px;
62
+ padding: 20px;
63
+ margin: 20px 0;
64
+ }
65
+
66
+ code {
67
+ background-color: #1a1a1a !important;
68
+ border-radius: 4px;
69
+ padding: 0.2em 0.4em;
70
+ color: #00ffff;
71
+ }
72
+
73
+ pre {
74
+ background-color: #1a1a1a !important;
75
+ border: 1px solid #333;
76
+ border-radius: 8px;
77
+ padding: 16px;
78
+ }
79
+
80
+ table {
81
+ width: 100%;
82
+ border-collapse: collapse;
83
+ margin: 20px 0;
84
+ background: rgba(0,0,0,0.2);
85
+ table-layout: fixed;
86
+ color: white;
87
+ }
88
+
89
+ th, td {
90
+ border: 1px solid #333;
91
+ padding: 12px;
92
+ text-align: center;
93
+ color: white;
94
+ }
95
+
96
+ th {
97
+ background: rgba(110, 0, 255, 0.1);
98
+ }
99
+
100
+ td:nth-child(1) {
101
+ width: 1%;
102
+ white-space: nowrap;
103
+ }
104
+
105
+ td:nth-child(2) {
106
+ width: 100%;
107
+ }
108
+
109
+ td > span {
110
+ display: block;
111
+ padding: 4px 8px;
112
+ background: rgba(110, 0, 255, 0.1);
113
+ border-radius: 4px;
114
+ transition: all 0.3s ease;
115
+ }
116
+
117
+ td > span:hover {
118
+ background: rgba(110, 0, 255, 0.2);
119
+ transform: translateY(-1px);
120
+ }
121
+
122
+ a {
123
+ color: #00ffff;
124
+ text-decoration: none;
125
+ transition: all 0.3s ease;
126
+ }
127
+
128
+ a:hover {
129
+ color: #6e00ff;
130
+ text-decoration: none;
131
+ }
132
+
133
+ hr {
134
+ border: 0;
135
+ height: 1px;
136
+ background: linear-gradient(90deg, transparent, #333, transparent);
137
+ margin: 40px 0;
138
+ }
139
+
140
+ img {
141
+ max-width: 100%;
142
+ border-radius: 10px;
143
+ }
144
+
145
+ details summary:hover {
146
+ color: #00ffff;
147
+ }
148
+
149
+ * {
150
+ color-scheme: dark !important;
151
+ }
152
+
153
+ .prose, .max-w-none, .px-4 {
154
+ background-color: transparent !important;
155
+ color: #c9d1d9 !important;
156
+ }
157
+ </style>
158
+ <body>
159
+ <div class="markdown-body">
160
+ <div align="center">
161
+
162
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/o5WjJKA9f95ri9UzRxZQE.png" alt="Model Visualization" width="500px" style="border: 3px solid #333; box-shadow: 0 0 15px rgba(66, 0, 131, 0.5);" />
163
+
164
+ <br>
165
+ <br>
166
+
167
+ <div style="font-size:1.5em; font-weight:bold; background: linear-gradient(45deg, #6e00ff, #00ffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
168
+ Hamanasu 15B Instruct
169
+ </div>
170
+
171
+ </div>
172
+
173
+ <div style="border:1px solid #333; border-radius:10px; padding:20px; margin:20px 0; background: rgba(0,0,0,0.4);">
174
+ # THESE ARE EXL2 QUANTS
175
+ ---
176
+ # LOOK IN THE DIFFERENT REVISIONS FOR THE BPWS, MAIN BRANCH CONTAINS MEASUREMENT FILE.
177
+
178
+ ## 🌌 Overview
179
+
180
+ <i>After 25 hours, I present Hamanasu-QwQ-32B-V0.1 - One of the first QwQ Finetunes. Using data from the following:</i>
181
+
182
+ - `NewEden/Orion-LIT`
183
+ - `NewEden/Orion-Asstr-Stories-16K`
184
+ - `Mielikki/Erebus-87k`
185
+
186
+ <i>This model shows great promise for roleplaying and story-writing. All thanks to Ruka-Hamanasu for funding the train.</i>
187
+
188
+
189
+ <i>Disclaimer: The model is still in preview, Only completion training has been performed ontop.</i>
190
+
191
+ </div>
192
+
193
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0;">
194
+
195
+ <div style="border:2px solid #333; border-radius:10px; padding:20px; background: rgba(0,0,0,0.2);">
196
+
197
+ ### 📈 Quantizations
198
+ | Type | Link |
199
+ |:---:|:---:|
200
+ | `GGUF` | <span style="display:block; width:100%">https://huggingface.co/Delta-Vector/Hamanasu-32B-V1-exl2</span> |
201
+ | `EXL2` | <span style="display:block; width:100%">https://huggingface.co/Delta-Vector/Hamanasu-32B-V1-gguf</span> |
202
+
203
+ </div>
204
+
205
+ <div style="border:2px solid #333; border-radius:10px; padding:20px; background: rgba(0,0,0,0.2);">
206
+
207
+ ### ⚔️ Hardware
208
+ - 4x H100s
209
+ - Epochs: 1
210
+ - Base: `QwQ`
211
+ - Amount of Tokens: 1+ Billion
212
+ </div>
213
+
214
+ </div>
215
+
216
+
217
+ <div style="border: 2px solid #6e00ff; border-radius: 10px; padding: 20px; margin: 20px 0; box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);">
218
+
219
+ ## 💰 Prompting
220
+
221
+
222
+ <i>This model uses ChatML formatting</i>
223
+ ```python
224
+ <|im_start|>system
225
+ You are an uncensored AI, your job is to fulfill thy will of thy user.<|im_end|>
226
+ <|im_start|>User request
227
+ Take off your helmet.<|im_end|>
228
+ <|im_start|>No i shall not. This is the way.
229
+ ```
230
+ </div>
231
+
232
+ <div style="border: 2px solid #6e00ff; border-radius: 10px; padding: 20px; margin: 20px 0; box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);">
233
+
234
+ ## Axolotl Config ꒰(˶• ᴗ •˶)꒱
235
+
236
+ <details>
237
+
238
+ ```yaml
239
+
240
+ ```
241
+
242
+ </details>
243
+ </div>
244
+
245
+ <div align="center">
246
+
247
+ <div style="border: 2px solid #6e00ff; border-radius: 10px; padding: 20px; margin: 20px 0; box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);">
248
+
249
+ ## ⚡ Credits
250
+ <div style="display: flex; justify-content: center;">
251
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 20px 0; max-width: 600px;">
252
+
253
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
254
+ <a href="https://huggingface.co/lucyknada">
255
+ <img src="https://img.shields.io/badge/%F0%9F%8C%9F-Lucy_Knada-blueviolet" alt="Lucy Knada">
256
+ </a>
257
+ </div>
258
+
259
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
260
+ <a href="https://huggingface.co/hamanasu">
261
+ <img src="https://img.shields.io/badge/%E2%9A%94%EF%B8%8F-jeiku-blueviolet" alt="Ruka">
262
+ </a>
263
+ </div>
264
+
265
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
266
+ <a href="https://huggingface.co/intervitens">
267
+ <img src="https://img.shields.io/badge/%F0%9F%9B%A1%EF%B8%8F-Intervitens-blueviolet" alt="Intervitens">
268
+ </a>
269
+ </div>
270
+
271
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
272
+ <a href="https://huggingface.co/kalomaze">
273
+ <img src="https://img.shields.io/badge/%F0%9F%94%AE-Kalomaze-blueviolet" alt="Kalomaze">
274
+ </a>
275
+ </div>
276
+
277
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
278
+ <a href="https://huggingface.co/kubernetes-bad">
279
+ <img src="https://img.shields.io/badge/%E2%9A%A1-Kubernetes_Bad-blueviolet" alt="Kubernetes Bad">
280
+ </a>
281
+ </div>
282
+
283
+ <div style="border:1px solid #333; padding:10px; border-radius:5px; text-align:center; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;">
284
+ <a href="https://huggingface.co/anthracite-org">
285
+ <img src="https://img.shields.io/badge/%F0%9F%8C%91-Anthracite-blueviolet" alt="Anthracite">
286
+ </a>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+ ---
293
+
294
+ <div align="center">
295
+ <div style="font-size:0.8em; opacity:0.8;">Made by</div>
296
+ <div style="font-size:1.2em; font-weight:bold; background: linear-gradient(45deg, #6e00ff, #00ffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Delta-Vector</div>
297
+ </div>
298
+
299
+ </div>
300
+ </body>
301
+ </html>