Vortex5 commited on
Commit
5de13d9
·
verified ·
1 Parent(s): c3d2ffd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +236 -25
README.md CHANGED
@@ -7,39 +7,250 @@ library_name: transformers
7
  tags:
8
  - mergekit
9
  - merge
10
-
11
  ---
12
- # merge
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
- This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
 
 
15
 
16
- ## Merge Details
17
- ### Merge Method
 
18
 
19
- This model was merged using the acl merge method using [Vortex5/Red-Synthesis-12B](https://huggingface.co/Vortex5/Red-Synthesis-12B) as a base.
20
 
21
- ### Models Merged
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- The following models were included in the merge:
24
- * [Vortex5/NoctyxCosma-12B](https://huggingface.co/Vortex5/NoctyxCosma-12B)
25
- * [Vortex5/Sunlit-Shadow-12B](https://huggingface.co/Vortex5/Sunlit-Shadow-12B)
26
 
27
- ### Configuration
 
 
 
 
 
 
28
 
29
- The following YAML configuration was used to produce this model:
30
 
31
- ```yaml
32
 
33
- merge_method: acl
34
- base_model: Vortex5/Red-Synthesis-12B
35
- models:
36
- - model: Vortex5/NoctyxCosma-12B
37
- - model: Vortex5/Sunlit-Shadow-12B
38
- parameters:
39
- strength: 0.75
40
- selectivity: 0.95
41
- dtype: bfloat16
42
- tokenizer:
43
- source: Vortex5/Red-Synthesis-12B
44
 
45
- ```
 
7
  tags:
8
  - mergekit
9
  - merge
10
+ - roleplay
11
  ---
12
+ <link rel="preconnect" href="https://fonts.googleapis.com">
13
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
14
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Space+Grotesk:wght@400;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
15
+
16
+ <style>
17
+ :root{
18
+ --night-0:#040814;
19
+ --night-1:#070c1e;
20
+ --nebula-blue:#2a6bff;
21
+ --ice-blue:#8fb7ff;
22
+ --aurora-green:#34f5c6;
23
+ --text:#eaf0ff;
24
+ --muted:rgba(234,240,255,.72);
25
+ --line:rgba(143,183,255,.22);
26
+
27
+ --font-title:"Space Grotesk",Inter,sans-serif;
28
+ --font-body:Inter,sans-serif;
29
+ --font-mono:"JetBrains Mono",monospace;
30
+
31
+ --radius-xl:22px;
32
+ --radius-lg:18px;
33
+ }
34
+
35
+ body{
36
+ margin:0;
37
+ background:
38
+ radial-gradient(1200px 700px at 15% 25%, rgba(42,107,255,.10), transparent 55%),
39
+ linear-gradient(180deg,var(--night-0),var(--night-1));
40
+ color:var(--text);
41
+ font-family:var(--font-body);
42
+ }
43
+
44
+ .ss12b{
45
+ max-width:1100px;
46
+ margin:18px auto;
47
+ padding:42px;
48
+ border-radius:var(--radius-xl);
49
+ background:linear-gradient(145deg,rgba(10,16,35,.92),rgba(7,12,30,.92));
50
+ border:1px solid var(--line);
51
+ box-shadow:0 20px 60px rgba(0,0,0,.65);
52
+ }
53
+
54
+ .ss12b-hero{
55
+ padding:60px 36px 50px;
56
+ border-radius:26px;
57
+ background:
58
+ radial-gradient(1000px 260px at 50% -20%, rgba(42,107,255,.35), transparent 60%),
59
+ linear-gradient(145deg,rgba(12,20,46,.85),rgba(10,16,35,.85));
60
+ border:1px solid var(--line);
61
+ text-align:center;
62
+ }
63
+
64
+ .ss12b-title{
65
+ margin:12px 0 10px;
66
+ font-family:var(--font-title);
67
+ font-weight:900;
68
+ letter-spacing:4px;
69
+ text-transform:uppercase;
70
+ font-size: clamp(2.1rem, 3.5vw, 3.0rem);
71
+ line-height:1.05;
72
+
73
+ color:#eaf0ff;
74
+
75
+ background:linear-gradient(
76
+ 90deg,
77
+ #b9d0ff 0%,
78
+ #ffffff 25%,
79
+ #6ea2ff 50%,
80
+ #34f5c6 75%,
81
+ #b9d0ff 100%
82
+ );
83
+ -webkit-background-clip:text;
84
+ background-clip:text;
85
+ color:transparent;
86
+
87
+ text-shadow:
88
+ 0 0 18px rgba(42,107,255,.45),
89
+ 0 0 36px rgba(143,183,255,.25),
90
+ 0 0 64px rgba(52,245,198,.18);
91
+ }
92
+
93
+ .ss12b-subtitle{
94
+ margin-top:16px;
95
+ max-width:860px;
96
+ margin-left:auto;
97
+ margin-right:auto;
98
+ color:var(--muted);
99
+ font-size:1.05rem;
100
+ }
101
+
102
+ .ss12b-image{
103
+ width: 100%;
104
+ text-align: center;
105
+ margin: 22px auto 0 auto;
106
+ }
107
+
108
+ .ss12b-image img{
109
+ display: inline-block;
110
+ width: auto;
111
+ max-width: 94%;
112
+ height: auto;
113
+
114
+ border-radius: 12px;
115
+ border: 1.5px solid rgba(143,183,255,.35);
116
+
117
+ box-shadow:
118
+ 0 8px 24px rgba(0,0,0,.45),
119
+ 0 0 18px rgba(42,107,255,.20);
120
+ }
121
+
122
+ .caption{
123
+ margin-top:10px;
124
+ text-align:center;
125
+ font-family:var(--font-mono);
126
+ font-size:.85rem;
127
+ color:rgba(234,240,255,.55);
128
+ }
129
+
130
+ .sections{
131
+ display:grid;
132
+ grid-template-columns:1fr;
133
+ gap:32px;
134
+ margin-top:22px;
135
+ }
136
+
137
+ .card{
138
+ border-radius:var(--radius-lg);
139
+ background:
140
+ radial-gradient(600px 260px at 20% 10%, rgba(42,107,255,.14), transparent 60%),
141
+ linear-gradient(145deg,rgba(10,16,35,.85),rgba(12,20,46,.60));
142
+ border:1px solid var(--line);
143
+ padding:40px;
144
+ min-height:420px;
145
+ box-shadow:0 12px 36px rgba(0,0,0,.55);
146
+ }
147
+
148
+ .card h2{
149
+ margin:0 0 18px;
150
+ font-family:var(--font-title);
151
+ font-weight:800;
152
+ letter-spacing:2.5px;
153
+ text-transform:uppercase;
154
+ display:flex;
155
+ align-items:center;
156
+ gap:10px;
157
+
158
+ font-size: 1.7rem;
159
+ }
160
+
161
+ .dot{
162
+ width:10px;height:10px;border-radius:50%;
163
+ background:var(--ice-blue);
164
+ box-shadow:0 0 18px rgba(42,107,255,.4);
165
+ }
166
+ .dot.aurora{
167
+ background:var(--aurora-green);
168
+ box-shadow:0 0 18px rgba(52,245,198,.35);
169
+ }
170
+
171
+ .card p,.card li{
172
+ color:var(--muted);
173
+ line-height:1.7;
174
+ }
175
+
176
+ .card ul{padding-left:18px}
177
+
178
+ .badge-row{
179
+ display:flex;
180
+ gap:10px;
181
+ flex-wrap:wrap;
182
+ margin-top:22px;
183
+ }
184
+
185
+ .badge{
186
+ font-family:var(--font-mono);
187
+ font-size:.82rem;
188
+ padding:8px 10px;
189
+ border-radius:12px;
190
+ border:1px solid var(--line);
191
+ background:rgba(4,8,20,.45);
192
+ }
193
+
194
+ .card{
195
+ font-size: 1.3rem;
196
+ }
197
+
198
+ @media(max-width:900px){
199
+ .ss12b{padding:22px}
200
+ .card{padding:28px;min-height:unset}
201
+ }
202
+
203
+
204
+ </style>
205
+
206
+ <div class="ss12b">
207
 
208
+ <div class="ss12b-hero">
209
+ <h1 class="ss12b-title">Starry-Shadow-12B</h1>
210
+ </div>
211
 
212
+ <div class="ss12b-image">
213
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/6669a3a617b838fda45637b8/5ix2OtG3mDva9CTQD9a3Z.png">
214
+ </div>
215
 
216
+ <div class="sections">
217
 
218
+ <section class="card">
219
+ <h2><span class="dot"></span>Model Overview</h2>
220
+ <p><strong style="color:#fff">Starry-Shadow-12B</strong> was created by merging
221
+ <a href="https://huggingface.co/Vortex5/Red-Synthesis-12B">Red-Synthesis-12B</a>,
222
+ <a href="https://huggingface.co/Vortex5/NoctyxCosma-12B">NoctyxCosma-12B</a>,
223
+ and
224
+ <a href="https://huggingface.co/Vortex5/Sunlit-Shadow-12B">Sunlit-Shadow-12B</a>
225
+ using a custom method.
226
+ </p>
227
+ <details>
228
+ <summary>Merge configuration</summary>
229
+ <pre><code>merge_method: acl
230
+ base_model: Vortex5/Red-Synthesis-12B
231
+ models:
232
+ - model: Vortex5/NoctyxCosma-12B
233
+ - model: Vortex5/Sunlit-Shadow-12B
234
+ parameters:
235
+ strength: 0.75
236
+ selectivity: 0.95
237
+ dtype: bfloat16
238
+ tokenizer:
239
+ source: Vortex5/Red-Synthesis-12B</code></pre>
240
+ </details>
241
 
242
+ </section>
 
 
243
 
244
+ <section class="card">
245
+ <h2><span class="dot aurora"></span>Intended Use</h2>
246
+ <ul>
247
+ <li>Creative writing</li>
248
+ <li>Roleplay and character-driven dialogue</li>
249
+ <li>Storytelling</li>
250
+ </ul>
251
 
 
252
 
253
+ </section>
254
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
+ </div>