Nitral-AI commited on
Commit
ed24403
·
verified ·
1 Parent(s): e688044

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +185 -181
README.md CHANGED
@@ -6,186 +6,190 @@ base_model:
6
  - inflatebot/MN-12B-Mag-Mell-R1
7
  - Nitral-AI/Captain-Eris_Violet-GRPO-v0.420
8
  ---
9
- <div style="background: #000; padding:30px; border-radius:18px; box-shadow: 0 0 15px #7F00FF80, 0 0 30px #9D00FF66; color:#fff; max-width:900px; margin:auto; font-family:'Roboto', sans-serif; border:1px solid #7F00FF40;"> <style>
10
- @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
11
- :root {
12
- --primary: #7F00FF;
13
- --secondary: #9D00FF;
14
- --accent: #DA70D6;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
16
- body {
17
- margin: 0;
18
- padding: 0;
19
- background: #111;
20
- font-family: 'Roboto', sans-serif;
21
- color: #fff;
22
- }
23
- .gradient-text {
24
- background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
25
- background-size: 300% 300%;
26
- -webkit-background-clip: text;
27
- -webkit-text-fill-color: transparent;
28
- animation: gradientShift 5s ease infinite;
29
- }
30
- @keyframes gradientShift {
31
- 0% {background-position: 0% 50%;}
32
- 50% {background-position: 100% 50%;}
33
- 100% {background-position: 0% 50%;}
34
- }
35
- .blue-btn {
36
- display: inline-flex;
37
- align-items: center;
38
- background: rgba(127, 0, 255, 0.1);
39
- border: 1px solid rgba(127, 0, 255, 0.2);
40
- color: #fff;
41
- border-radius: 8px;
42
- padding: 6px 12px;
43
- text-decoration: none;
44
- font-weight: 400;
45
- font-size: 0.9em;
46
- margin: 2px 4px;
47
- transition: all 0.2s ease;
48
- box-shadow: 0 2px 4px rgba(127, 0, 255, 0.1);
49
- vertical-align: middle;
50
- line-height: 1.4;
51
- }
52
- .blue-btn:hover {
53
- background: rgba(127, 0, 255, 0.2);
54
- border-color: rgba(127, 0, 255, 0.4);
55
- transform: translateY(-1px);
56
- box-shadow: 0 4px 8px rgba(127, 0, 255, 0.2);
57
- }
58
- .glass-card {
59
- background: rgba(0, 0, 0, 0.69);
60
- backdrop-filter: blur(10px);
61
- border-radius: 12px;
62
- box-shadow: 0 4px 12px rgba(127, 0, 255, 0.2);
63
- padding: 20px;
64
- margin-bottom: 2em;
65
- border: 1px solid rgba(127, 0, 255, 0.2);
66
- transition: all 0.3s ease;
67
- }
68
- .glass-card:hover {
69
- box-shadow: 0 8px 24px rgba(127, 0, 255, 0.3);
70
- transform: translateY(-2px);
71
- }
72
- .fancy-img {
73
- transition: all 0.3s ease;
74
- border-radius: 8px;
75
- border: 1px solid rgba(127, 0, 255, 0.2);
76
- margin-bottom: 2em;
77
- box-shadow: 0 2px 8px rgba(127, 0, 255, 0.1);
78
- width: 100%;
79
- max-width: 100%;
80
- }
81
- .fancy-img:hover {
82
- transform: scale(1.01);
83
- box-shadow: 0 4px 16px rgba(127, 0, 255, 0.2);
84
- }
85
- h1, h2, h3 {
86
- transition: all 0.2s ease;
87
- cursor: default;
88
- margin: 1em 0 0.5em 0;
89
- }
90
- h1:hover, h2:hover, h3:hover {
91
- transform: translateY(-1px);
92
- color: var(--accent);
93
- }
94
- blockquote {
95
- color: #ccc;
96
- font-style: italic;
97
- border-left: 4px solid var(--primary);
98
- padding: 0.5em 1em;
99
- margin: 1em 0;
100
- background: rgba(127, 0, 255, 0.05);
101
- border-radius: 0 8px 8px 0;
102
- transition: all 0.3s ease;
103
- }
104
- blockquote:hover {
105
- background: rgba(127, 0, 255, 0.1);
106
- transform: translateX(2px);
107
- }
108
- .content > * {
109
- opacity: 0;
110
- transform: translateY(10px);
111
- animation: fadeSlideIn 0.5s ease forwards;
112
- }
113
- @keyframes fadeSlideIn {
114
- to {
115
- opacity: 1;
116
- transform: translateY(0);
117
- }
118
- }
119
- .content > *:nth-child(n) {
120
- animation-delay: calc(n * 0.1s);
121
- }
122
- table {
123
- border-collapse: collapse;
124
- width: 100%;
125
- margin: 1em 0;
126
- }
127
- th, td {
128
- border: 1px solid rgba(127, 0, 255, 0.2);
129
- padding: 0.75em;
130
- text-align: left;
131
- }
132
- th {
133
- background: rgba(127, 0, 255, 0.1);
134
- color: var(--accent);
135
- }
136
- hr {
137
- border: none;
138
- border-top: 1px solid rgba(127, 0, 255, 0.2);
139
- margin: 2em 0;
140
- }
141
- </style>
142
- <h1 class="fade-in" style="color:#FFD700; font-size:2.5em; margin-bottom:0.3em;">🧠 Violet-Magcap-12B</h1>
143
- <p style="color:#ccc; font-style:italic;">So here’s the lore...</p>
144
- <div class="glass-card">
145
- <p> I might have taken <a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1" class="blue-btn">Mag-Mell-12B-R1</a>,&ensp; jacked it up on SFT reasoning data like it was pre-workout for logic bros. Then for <strong style="color:#FFD700;">chaos</strong>, slapped it together with <a href="https://huggingface.co/Nitral-AI/Captain-Eris_Violet-GRPO-v0.420" class="blue-btn pulse-btn">Captain_Eris_Violet-GRPO</a> like some twisted AI Voltron. </p>
146
- <p><strong style="color:#FFD700;">Did I stop there? No.</strong><br> Double-tapped the merge with SFT on fresh reasoning data. Now it's solving problems like Bill Nye on a meme bender and hoarding cursed philosophy shitposts. </p>
147
- </div>
148
- <hr style="border:1px solid #FFD700; margin:2em 0;">
149
- <h2 style="color:#FFD700;">🛠️ Model Details</h2>
150
- <table style="border-collapse: collapse; width: 100%; color: #fff; font-size: 1em;">
151
- <tr>
152
- <th style="border: 1px solid #333; background-color: #000; color: #FFD700; padding: 0.5em;">Feature</th>
153
- <th style="border: 1px solid #333; background-color: #000; color: #FFD700; padding: 0.5em;">Description</th>
154
- </tr>
155
- <tr>
156
- <td style="border: 1px solid #333; padding: 0.5em;"><strong>Base Models</strong></td>
157
- <td style="border: 1px solid #333; padding: 0.5em;"> <a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1" class="blue-btn">Mag-Mell-R1</a> + <a href="https://huggingface.co/Nitral-AI/Captain-Eris_Violet-GRPO-v0.420" class="blue-btn">Captain-Eris</a> </td>
158
- </tr>
159
- <tr>
160
- <td style="border: 1px solid #333; padding: 0.5em;"><strong>Size</strong></td>
161
- <td style="border: 1px solid #333; padding: 0.5em;">12B Parameters</td>
162
- </tr>
163
- <tr>
164
- <td style="border: 1px solid #333; padding: 0.5em;"><strong>Architecture</strong></td>
165
- <td style="border: 1px solid #333; padding: 0.5em;">Magmell + Reasoning → Captain Eris Merge + post-SFT</td>
166
- </tr>
167
- <tr>
168
- <td style="border: 1px solid #333; padding: 0.5em;"><strong>Post-Merge Tuning</strong></td>
169
- <td style="border: 1px solid #333; padding: 0.5em;">Double SFT on new reasoning data</td>
170
- </tr>
171
- </table>
172
- <hr style="border:1px solid #FFD700; margin:2em 0;">
173
- <h2 style="color:#FFD700;">⚙️ Usage Presets</h2>
174
- <p><a href="https://huggingface.co/Nitral-AI/Violet_Magcap-12B/tree/main/ST%20Presets" class="blue-btn pulse-btn">🎛️ SillyTavern Presets</a></p>
175
- <hr style="border:1px solid #FFD700; margin:2em 0;">
176
- <h2 style="color:#FFD700;">💾 Quantized Versions</h2>
177
- <p> 🧠 <a href="https://huggingface.co/Lewdiculous/Violet_Magcap-12B-GGUF-IQ-Imatrix" class="blue-btn">Lewdiculus Imatrix (GGUF)</a><br> 🧠 <a href="https://huggingface.co/Nitrals-Quants/Violet_Magcap-12B-4bpw-exl2" class="blue-btn">Nitral 4bpw (ExL2)</a> </p>
178
- <hr style="border:1px solid #FFD700; margin:2em 0;">
179
- <h2 style="color:#FFD700;">📦 Prompt Formats</h2>
180
- <p><strong style="color:#fff;">Reasoning Block + Prefix</strong></p>
181
- <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/tzo7SN9Srcp8VRpLfYgYt.png" alt="Reasoning Format" class="fancy-img fade-in" style="max-width:100%; margin-bottom:1em;">
182
- <p><strong style="color:#fff;">ChatML Format</strong></p>
183
- <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/cbb9qyoPs4cRKCzYU7jPN.png" alt="ChatML Format" class="fancy-img fade-in" style="max-width:100%; margin-bottom:1em;">
184
- <p><strong style="color:#fff;">Quick Reply's</strong></p>
185
- <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/ghNuXOflLlotJ1hrSWZxE.png" alt="Quick Reply Preset" class="fancy-img fade-in" style="max-width:100%;">
186
- <hr style="border:1px solid #FFD700; margin:2em 0;">
187
- <h2 style="color:#FFD700;">🌀 Vibe Check</h2>
188
- <blockquote style="color:#ccc; font-style:italic; border-left:4px solid #FFD700; padding-left:1em; margin-left:0;"> It will help you solve problems. It will also make you question your existence.<br> <strong style="color:#FFD700;">Use wisely—or don’t.</strong> </blockquote>
189
- <hr style="border:1px solid #FFD700; margin:2em 0;">
190
- <p style="color:#FFD700;"><strong>🧬 Created by:</strong> <a href="https://huggingface.co/Nitral-AI" class="blue-btn">Nitral-AI</a> </p>
191
  </div>
 
6
  - inflatebot/MN-12B-Mag-Mell-R1
7
  - Nitral-AI/Captain-Eris_Violet-GRPO-v0.420
8
  ---
9
+ <div style="background: #000; padding:30px; border-radius:18px; box-shadow: 0 0 15px #7F00FF80, 0 0 30px #9D00FF66; color:#fff; max-width:900px; margin:auto; font-family:'Roboto', sans-serif; border:1px solid #7F00FF40;">
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
12
+ :root {
13
+ --primary: #7F00FF;
14
+ --secondary: #9D00FF;
15
+ --accent: #DA70D6;
16
+ }
17
+ body {
18
+ margin: 0;
19
+ padding: 0;
20
+ background: #111;
21
+ font-family: 'Roboto', sans-serif;
22
+ color: #fff;
23
+ }
24
+ .gradient-text {
25
+ background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
26
+ background-size: 300% 300%;
27
+ -webkit-background-clip: text;
28
+ -webkit-text-fill-color: transparent;
29
+ animation: gradientShift 5s ease infinite;
30
+ }
31
+ @keyframes gradientShift {
32
+ 0% {background-position: 0% 50%;}
33
+ 50% {background-position: 100% 50%;}
34
+ 100% {background-position: 0% 50%;}
35
+ }
36
+ .blue-btn {
37
+ display: inline-flex;
38
+ align-items: center;
39
+ background: rgba(127, 0, 255, 0.1);
40
+ border: 1px solid rgba(127, 0, 255, 0.2);
41
+ color: #fff;
42
+ border-radius: 8px;
43
+ padding: 6px 12px;
44
+ text-decoration: none;
45
+ font-weight: 400;
46
+ font-size: 0.9em;
47
+ margin: 2px 4px;
48
+ transition: all 0.2s ease;
49
+ box-shadow: 0 2px 4px rgba(127, 0, 255, 0.1);
50
+ vertical-align: middle;
51
+ line-height: 1.4;
52
+ }
53
+ .blue-btn:hover {
54
+ background: rgba(127, 0, 255, 0.2);
55
+ border-color: rgba(127, 0, 255, 0.4);
56
+ transform: translateY(-1px);
57
+ box-shadow: 0 4px 8px rgba(127, 0, 255, 0.2);
58
+ }
59
+ .glass-card {
60
+ background: rgba(0, 0, 0, 0.69);
61
+ backdrop-filter: blur(10px);
62
+ border-radius: 12px;
63
+ box-shadow: 0 4px 12px rgba(127, 0, 255, 0.2);
64
+ padding: 20px;
65
+ margin-bottom: 2em;
66
+ border: 1px solid rgba(127, 0, 255, 0.2);
67
+ transition: all 0.3s ease;
68
+ }
69
+ .glass-card:hover {
70
+ box-shadow: 0 8px 24px rgba(127, 0, 255, 0.3);
71
+ transform: translateY(-2px);
72
+ }
73
+ .fancy-img {
74
+ transition: all 0.3s ease;
75
+ border-radius: 8px;
76
+ border: 1px solid rgba(127, 0, 255, 0.2);
77
+ margin-bottom: 2em;
78
+ box-shadow: 0 2px 8px rgba(127, 0, 255, 0.1);
79
+ width: 100%;
80
+ max-width: 100%;
81
+ }
82
+ .fancy-img:hover {
83
+ transform: scale(1.01);
84
+ box-shadow: 0 4px 16px rgba(127, 0, 255, 0.2);
85
+ }
86
+ h1, h2, h3 {
87
+ transition: all 0.2s ease;
88
+ cursor: default;
89
+ margin: 1em 0 0.5em 0;
90
+ }
91
+ h1:hover, h2:hover, h3:hover {
92
+ transform: translateY(-1px);
93
+ color: var(--accent);
94
+ }
95
+ blockquote {
96
+ color: #ccc;
97
+ font-style: italic;
98
+ border-left: 4px solid var(--primary);
99
+ padding: 0.5em 1em;
100
+ margin: 1em 0;
101
+ background: rgba(127, 0, 255, 0.05);
102
+ border-radius: 0 8px 8px 0;
103
+ transition: all 0.3s ease;
104
+ }
105
+ blockquote:hover {
106
+ background: rgba(127, 0, 255, 0.1);
107
+ transform: translateX(2px);
108
+ }
109
+ .content > * {
110
+ opacity: 0;
111
+ transform: translateY(10px);
112
+ animation: fadeSlideIn 0.5s ease forwards;
113
+ }
114
+ @keyframes fadeSlideIn {
115
+ to {
116
+ opacity: 1;
117
+ transform: translateY(0);
118
  }
119
+ }
120
+ .content > *:nth-child(n) {
121
+ animation-delay: calc(n * 0.1s);
122
+ }
123
+ table {
124
+ border-collapse: collapse;
125
+ width: 100%;
126
+ margin: 1em 0;
127
+ }
128
+ th, td {
129
+ border: 1px solid rgba(127, 0, 255, 0.2);
130
+ padding: 0.75em;
131
+ text-align: left;
132
+ }
133
+ th {
134
+ background: rgba(127, 0, 255, 0.1);
135
+ color: var(--accent);
136
+ }
137
+ hr {
138
+ border: none;
139
+ border-top: 1px solid rgba(127, 0, 255, 0.2);
140
+ margin: 2em 0;
141
+ }
142
+ </style>
143
+ <h1 class="fade-in" style="color:#FFD700; font-size:2.5em; margin-bottom:0.3em;">🧠 Violet-Magcap-12B</h1>
144
+ <p style="color:#ccc; font-style:italic;">So here’s the lore...</p>
145
+ <div class="glass-card">
146
+ <p> I might have taken <a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1" class="blue-btn">Mag-Mell-12B-R1</a>,&ensp; jacked it up on SFT reasoning data like it was pre-workout for logic bros. Then for <strong style="color:#FFD700;">chaos</strong>, slapped it together with <a href="https://huggingface.co/Nitral-AI/Captain-Eris_Violet-GRPO-v0.420" class="blue-btn pulse-btn">Captain_Eris_Violet-GRPO</a> like some twisted AI Voltron. </p>
147
+ <p><strong style="color:#FFD700;">Did I stop there? No.</strong><br> Double-tapped the merge with SFT on fresh reasoning data. Now it's solving problems like Bill Nye on a meme bender and hoarding cursed philosophy shitposts. </p>
148
+ </div>
149
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
150
+ <h2 style="color:#FFD700;">🛠️ Model Details</h2>
151
+ <table style="border-collapse: collapse; width: 100%; color: #fff; font-size: 1em;">
152
+ <tr>
153
+ <th style="border: 1px solid #333; background-color: #000; color: #FFD700; padding: 0.5em;">Feature</th>
154
+ <th style="border: 1px solid #333; background-color: #000; color: #FFD700; padding: 0.5em;">Description</th>
155
+ </tr>
156
+ <tr>
157
+ <td style="border: 1px solid #333; padding: 0.5em;"><strong>Base Models</strong></td>
158
+ <td style="border: 1px solid #333; padding: 0.5em;"> <a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1" class="blue-btn">Mag-Mell-R1</a> + <a href="https://huggingface.co/Nitral-AI/Captain-Eris_Violet-GRPO-v0.420" class="blue-btn">Captain-Eris</a> </td>
159
+ </tr>
160
+ <tr>
161
+ <td style="border: 1px solid #333; padding: 0.5em;"><strong>Size</strong></td>
162
+ <td style="border: 1px solid #333; padding: 0.5em;">12B Parameters</td>
163
+ </tr>
164
+ <tr>
165
+ <td style="border: 1px solid #333; padding: 0.5em;"><strong>Architecture</strong></td>
166
+ <td style="border: 1px solid #333; padding: 0.5em;">Magmell + Reasoning → Captain Eris Merge + post-SFT</td>
167
+ </tr>
168
+ <tr>
169
+ <td style="border: 1px solid #333; padding: 0.5em;"><strong>Post-Merge Tuning</strong></td>
170
+ <td style="border: 1px solid #333; padding: 0.5em;">Double SFT on new reasoning data</td>
171
+ </tr>
172
+ </table>
173
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
174
+ <h2 style="color:#FFD700;">⚙️ Usage Presets</h2>
175
+ <p><a href="https://huggingface.co/Nitral-AI/Violet_Magcap-12B/tree/main/ST%20Presets" class="blue-btn pulse-btn">🎛️ SillyTavern Presets</a></p>
176
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
177
+ <h2 style="color:#FFD700;">💾 Quantized Versions</h2>
178
+ <p> 🧠 <a href="https://huggingface.co/Lewdiculous/Violet_Magcap-12B-GGUF-IQ-Imatrix" class="blue-btn">Lewdiculus Imatrix (GGUF)</a><br> 🧠 <a href="https://huggingface.co/Nitrals-Quants/Violet_Magcap-12B-4bpw-exl2" class="blue-btn">Nitral 4bpw (ExL2)</a> </p>
179
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
180
+ <h2 style="color:#FFD700;">📦 Prompt Formats</h2>
181
+ <p><strong style="color:#fff;">Reasoning Block + Prefix</strong></p>
182
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/tzo7SN9Srcp8VRpLfYgYt.png" alt="Reasoning Format" class="fancy-img fade-in" style="max-width:100%; margin-bottom:1em;">
183
+ <p><strong style="color:#fff;">ChatML Format</strong></p>
184
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/cbb9qyoPs4cRKCzYU7jPN.png" alt="ChatML Format" class="fancy-img fade-in" style="max-width:100%; margin-bottom:1em;">
185
+ <p><strong style="color:#fff;">Quick Reply's</strong></p>
186
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/ghNuXOflLlotJ1hrSWZxE.png" alt="Quick Reply Preset" class="fancy-img fade-in" style="max-width:100%;">
187
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
188
+ <h2 style="color:#FFD700;">🌀 Vibe Check</h2>
189
+ <blockquote style="color:#ccc; font-style:italic; border-left:4px solid #FFD700; padding-left:1em; margin-left:0;"> It will help you solve problems. It will also make you question your existence.<br> <strong style="color:#FFD700;">Use wisely—or don’t.</strong> </blockquote>
190
+ <hr style="border:1px solid #FFD700; margin:2em 0;">
191
+ <p style="color:#FFD700;"><strong>🧬 Created by:</strong>
192
+ <a href="https://huggingface.co/Nitral-AI" class="blue-btn">Nitral-AI</a>
193
+ <a href="https://ko-fi.com/nitralai" class="blue-btn" style="margin-left: 6px;">💖 Support on Ko-fi</a>
194
+ </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  </div>