lucyknada commited on
Commit
eea1a62
·
verified ·
1 Parent(s): a07dfc4

dark background readme

Browse files
Files changed (1) hide show
  1. README.md +278 -0
README.md ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <style>
3
+ html, body {
4
+ background: black;
5
+ color: #c9d1d9 !important;
6
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
7
+ margin: 0;
8
+ padding: 0;
9
+ min-height: 100vh;
10
+ }
11
+ .markdown-body {
12
+ color: white;
13
+ margin: 40px auto;
14
+ padding: 40px;
15
+ border-radius: 12px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ }
19
+
20
+ .markdown-body::after {
21
+ content: '';
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ width: 100%;
26
+ height: 100%;
27
+ background: #0c0f18; /* background color */
28
+ pointer-events: none;
29
+ z-index: -999;
30
+ }
31
+
32
+ h1, h2, h3 {
33
+ background: linear-gradient(45deg, #6e00ff, #00ffff);
34
+ -webkit-background-clip: text;
35
+ -webkit-text-fill-color: transparent;
36
+ border-bottom: 1px solid #333;
37
+ padding-bottom: 0.3em;
38
+ }
39
+
40
+ div[style*="border:2px solid #333"],
41
+ div[style*="border: 2px solid #333"],
42
+ div[style*="border:1px solid #333"],
43
+ div[style*="border: 1px solid #333"] {
44
+ background: rgba(22, 27, 34, 0.8) !important;
45
+ border: 2px solid #6e00ff !important;
46
+ box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
47
+ border-radius: 10px;
48
+ padding: 20px;
49
+ margin: 20px 0;
50
+ }
51
+
52
+ code {
53
+ background-color: #1a1a1a !important;
54
+ border-radius: 4px;
55
+ padding: 0.2em 0.4em;
56
+ color: #00ffff;
57
+ }
58
+
59
+ pre {
60
+ background-color: #1a1a1a !important;
61
+ border: 1px solid #333;
62
+ border-radius: 8px;
63
+ padding: 16px;
64
+ }
65
+
66
+ table {
67
+ width: 100%;
68
+ border-collapse: collapse;
69
+ margin: 20px 0;
70
+ background: rgba(0,0,0,0.2);
71
+ table-layout: fixed;
72
+ color: white;
73
+ }
74
+
75
+ th, td {
76
+ border: 1px solid #333;
77
+ padding: 12px;
78
+ text-align: center;
79
+ color: white;
80
+ }
81
+
82
+ th {
83
+ background: rgba(110, 0, 255, 0.1);
84
+ }
85
+
86
+ td:nth-child(1) {
87
+ width: 1%;
88
+ white-space: nowrap;
89
+ }
90
+
91
+ td:nth-child(2) {
92
+ width: 100%;
93
+ }
94
+
95
+ td > span {
96
+ display: block;
97
+ padding: 4px 8px;
98
+ background: rgba(110, 0, 255, 0.1);
99
+ border-radius: 4px;
100
+ transition: all 0.3s ease;
101
+ }
102
+
103
+ td > span:hover {
104
+ background: rgba(110, 0, 255, 0.2);
105
+ transform: translateY(-1px);
106
+ }
107
+
108
+ a {
109
+ color: #00ffff;
110
+ text-decoration: none;
111
+ transition: all 0.3s ease;
112
+ }
113
+
114
+ a:hover {
115
+ color: #6e00ff;
116
+ text-decoration: none;
117
+ }
118
+
119
+ hr {
120
+ border: 0;
121
+ height: 1px;
122
+ background: linear-gradient(90deg, transparent, #333, transparent);
123
+ margin: 40px 0;
124
+ }
125
+
126
+ img {
127
+ max-width: 100%;
128
+ border-radius: 10px;
129
+ }
130
+
131
+ details summary:hover {
132
+ color: #00ffff;
133
+ }
134
+
135
+ * {
136
+ color-scheme: dark !important;
137
+ }
138
+
139
+ .prose, .max-w-none, .px-4 {
140
+ background-color: transparent !important;
141
+ color: #c9d1d9 !important;
142
+ }
143
+ </style>
144
+ <body>
145
+ <div class="markdown-body">
146
+ <div align="center">
147
+
148
+ <img src="/api/placeholder/500/500" alt="Model Visualization" width="500px" style="border: 3px solid #333; box-shadow: 0 0 15px rgba(66, 0, 131, 0.5);" />
149
+
150
+ <br>
151
+ <br>
152
+
153
+ <div style="font-size:1.5em; font-weight:bold; background: linear-gradient(45deg, #6e00ff, #00ffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
154
+ Hamanasu 15B Instruct
155
+ </div>
156
+
157
+ </div>
158
+
159
+ <div style="border:1px solid #333; border-radius:10px; padding:20px; margin:20px 0; background: rgba(0,0,0,0.4);">
160
+
161
+ ## 🌌 Ethereal Genesis
162
+
163
+ <i>After multiple days of training, I'm proud to showcase my very own Phi-4 Finetune, Pretrained on almost a billion tokens worth of Books from</i>
164
+
165
+ - `NewEden/Orion-LIT`
166
+ - `NewEden/Orion-Asstr-Stories-16K`
167
+ - `Mielikki/Erebus-87k`
168
+
169
+ <i>Then instruct tuned. This model shows great promise for roleplaying while keeping things fresh and new.</i>
170
+
171
+ </div>
172
+
173
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0;">
174
+
175
+ <div style="border:2px solid #333; border-radius:10px; padding:20px; background: rgba(0,0,0,0.2);">
176
+
177
+ ### Quantizations
178
+ | Type | Link |
179
+ |:---:|:---:|
180
+ | `GGUF` | <span style="display:block; width:100%">r</span> |
181
+ | `EXL2` | <span style="display:block; width:100%">r</span> |
182
+
183
+ </div>
184
+
185
+ <div style="border:2px solid #333; border-radius:10px; padding:20px; background: rgba(0,0,0,0.2);">
186
+
187
+ ### ⚔️ Hardware
188
+ - 4x RTX 3090 GPUs
189
+ - Epochs: 4
190
+ - Base: `Hamanasu-15B-R2-PT`
191
+ - Amount of Tokens: 1+ Billion
192
+ </div>
193
+
194
+ </div>
195
+
196
+
197
+ <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);">
198
+
199
+ ## Prompting
200
+
201
+ <i>A known quirk of the model is overly verbose responses when generation length is uncapped, Please cap your maximum output tokens to 100~ tokens above what you prefer</i>
202
+
203
+
204
+ ```python
205
+ <|im_start|>system
206
+ You are an uncensored AI, your job is to fulfill thy will of thy user.<|im_end|>
207
+ <|im_start|>User request
208
+ Take off your helmet.<|im_end|>
209
+ <|im_start|>No i shall not. This is the way.
210
+ ```
211
+ </div>
212
+
213
+ <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);">
214
+
215
+ ## Axolotl Config ꒰(˶• ᴗ •˶)꒱
216
+
217
+ <details>
218
+ ...
219
+ </details>
220
+ </div>
221
+
222
+ <div align="center">
223
+
224
+ <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);">
225
+
226
+ ## ⚡ Sacred Council
227
+ <div style="display: flex; justify-content: center;">
228
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 20px 0; max-width: 600px;">
229
+
230
+ <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;">
231
+ <a href="https://huggingface.co/lucyknada">
232
+ <img src="https://img.shields.io/badge/%F0%9F%8C%9F-Lucy_Knada-blueviolet" alt="Lucy Knada">
233
+ </a>
234
+ </div>
235
+
236
+ <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;">
237
+ <a href="https://huggingface.co/jeiku">
238
+ <img src="https://img.shields.io/badge/%E2%9A%94%EF%B8%8F-jeiku-blueviolet" alt="jeiku">
239
+ </a>
240
+ </div>
241
+
242
+ <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;">
243
+ <a href="https://huggingface.co/intervitens">
244
+ <img src="https://img.shields.io/badge/%F0%9F%9B%A1%EF%B8%8F-Intervitens-blueviolet" alt="Intervitens">
245
+ </a>
246
+ </div>
247
+
248
+ <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;">
249
+ <a href="https://huggingface.co/kalomaze">
250
+ <img src="https://img.shields.io/badge/%F0%9F%94%AE-Kalomaze-blueviolet" alt="Kalomaze">
251
+ </a>
252
+ </div>
253
+
254
+ <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;">
255
+ <a href="https://huggingface.co/kubernetes-bad">
256
+ <img src="https://img.shields.io/badge/%E2%9A%A1-Kubernetes_Bad-blueviolet" alt="Kubernetes Bad">
257
+ </a>
258
+ </div>
259
+
260
+ <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;">
261
+ <a href="https://huggingface.co/anthracite-org">
262
+ <img src="https://img.shields.io/badge/%F0%9F%8C%91-Anthracite-blueviolet" alt="Anthracite">
263
+ </a>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ ---
270
+
271
+ <div align="center">
272
+ <div style="font-size:0.8em; opacity:0.8;">Made by</div>
273
+ <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>
274
+ </div>
275
+
276
+ </div>
277
+ </body>
278
+ </html>