Update README.md
Browse files
README.md
CHANGED
@@ -1,14 +1,11 @@
|
|
1 |
---
|
2 |
-
base_model:
|
3 |
-
base_model_relation:
|
4 |
-
library_name: transformers
|
5 |
language:
|
6 |
- en
|
7 |
license: apache-2.0
|
8 |
inference: false
|
9 |
tags:
|
10 |
-
- exl2
|
11 |
-
- 4-bit
|
12 |
- nsfw
|
13 |
- explicit
|
14 |
- roleplay
|
@@ -16,7 +13,265 @@ tags:
|
|
16 |
- dangerous
|
17 |
- ERP
|
18 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
base_model: mistralai/Mistral-Small-24B-Instruct-2501
|
3 |
+
base_model_relation: finetune
|
|
|
4 |
language:
|
5 |
- en
|
6 |
license: apache-2.0
|
7 |
inference: false
|
8 |
tags:
|
|
|
|
|
9 |
- nsfw
|
10 |
- explicit
|
11 |
- roleplay
|
|
|
13 |
- dangerous
|
14 |
- ERP
|
15 |
---
|
16 |
+
<style>
|
17 |
+
body {
|
18 |
+
font-family: 'Quicksand', sans-serif;
|
19 |
+
background: linear-gradient(135deg, #001a1a 0%, #000a10 100%);
|
20 |
+
color: #e1ffff !important;
|
21 |
+
text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
|
22 |
+
margin: 0;
|
23 |
+
padding: 20px;
|
24 |
+
}
|
25 |
|
26 |
+
@media (prefers-color-scheme: light) {
|
27 |
+
body {
|
28 |
+
background: linear-gradient(135deg, #e1ffff 0%, #c0f0ff 100%);
|
29 |
+
color: #002b36 !important;
|
30 |
+
text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
|
31 |
+
}
|
32 |
+
}
|
33 |
|
34 |
+
.container {
|
35 |
+
min-width: 100%;
|
36 |
+
margin: 0 auto;
|
37 |
+
max-width: 1200px;
|
38 |
+
background: rgba(0, 17, 22, 0.95);
|
39 |
+
border-radius: 12px;
|
40 |
+
padding: 30px;
|
41 |
+
box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
|
42 |
+
border: 1px solid rgba(0, 255, 255, 0.2);
|
43 |
+
}
|
44 |
+
|
45 |
+
@media (prefers-color-scheme: light) {
|
46 |
+
.container {
|
47 |
+
background: rgba(224, 255, 255, 0.95);
|
48 |
+
border-color: rgba(0, 150, 150, 0.3);
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
.header {
|
53 |
+
text-align: center;
|
54 |
+
margin-bottom: 30px;
|
55 |
+
}
|
56 |
+
|
57 |
+
.model-name {
|
58 |
+
color: #00ffff;
|
59 |
+
font-size: 2.5em;
|
60 |
+
text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
|
61 |
+
margin: 0;
|
62 |
+
}
|
63 |
+
|
64 |
+
.subtitle {
|
65 |
+
color: #00ffcc;
|
66 |
+
font-size: 1.2em;
|
67 |
+
}
|
68 |
+
|
69 |
+
.waifu-container {
|
70 |
+
margin: 20px -30px;
|
71 |
+
width: calc(100% + 60px);
|
72 |
+
overflow: hidden;
|
73 |
+
}
|
74 |
+
|
75 |
+
.waifu-img {
|
76 |
+
width: 100%;
|
77 |
+
height: auto;
|
78 |
+
border-radius: 0;
|
79 |
+
border: none;
|
80 |
+
box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
|
81 |
+
transform: scale(1.02);
|
82 |
+
}
|
83 |
+
|
84 |
+
.section {
|
85 |
+
color: #00ffcc;
|
86 |
+
margin: 25px 0;
|
87 |
+
padding: 20px;
|
88 |
+
background: rgba(5, 25, 35, 0.9);
|
89 |
+
border-radius: 8px;
|
90 |
+
border: 1px solid rgba(0, 255, 255, 0.15);
|
91 |
+
}
|
92 |
+
|
93 |
+
@media (prefers-color-scheme: light) {
|
94 |
+
.section {
|
95 |
+
background: rgba(200, 250, 255, 0.9);
|
96 |
+
border-color: rgba(0, 200, 200, 0.2);
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
.section-title {
|
101 |
+
color: #00ffff;
|
102 |
+
font-size: 1.8em;
|
103 |
+
margin-top: 0;
|
104 |
+
}
|
105 |
+
|
106 |
+
.section > p > strong {
|
107 |
+
color: #00ffcc !important;
|
108 |
+
}
|
109 |
+
|
110 |
+
.section:has(.quant-links) p,
|
111 |
+
.section:has(.quant-links) h3,
|
112 |
+
.section:has(.quant-links) a {
|
113 |
+
color: #00ffcc !important;
|
114 |
+
}
|
115 |
+
|
116 |
+
.quant-links h3 {
|
117 |
+
color: #00ffcc !important;
|
118 |
+
margin-top: 0;
|
119 |
+
}
|
120 |
+
|
121 |
+
.badge {
|
122 |
+
display: inline-block;
|
123 |
+
padding: 5px 10px;
|
124 |
+
border-radius: 5px;
|
125 |
+
background: rgba(0, 255, 255, 0.1);
|
126 |
+
border: 1px solid #00ffff;
|
127 |
+
margin: 5px;
|
128 |
+
}
|
129 |
+
|
130 |
+
.quant-links {
|
131 |
+
display: grid;
|
132 |
+
grid-template-columns: repeat(2, 1fr);
|
133 |
+
gap: 15px;
|
134 |
+
}
|
135 |
+
|
136 |
+
.link-card {
|
137 |
+
padding: 15px;
|
138 |
+
background: rgba(20, 35, 45, 0.95);
|
139 |
+
border-radius: 8px;
|
140 |
+
transition: transform 0.3s ease;
|
141 |
+
}
|
142 |
+
|
143 |
+
@media (prefers-color-scheme: light) {
|
144 |
+
.link-card {
|
145 |
+
background: rgba(150, 230, 255, 0.95);
|
146 |
+
}
|
147 |
+
}
|
148 |
+
|
149 |
+
.link-card:hover {
|
150 |
+
transform: translateY(-3px);
|
151 |
+
}
|
152 |
+
|
153 |
+
.disclaimer {
|
154 |
+
color: #00ff99;
|
155 |
+
border-left: 3px solid #00ff99;
|
156 |
+
padding-left: 15px;
|
157 |
+
margin: 20px 0;
|
158 |
+
}
|
159 |
+
|
160 |
+
.progress-bar {
|
161 |
+
height: 8px;
|
162 |
+
background: rgba(0, 255, 255, 0.1);
|
163 |
+
border-radius: 4px;
|
164 |
+
overflow: hidden;
|
165 |
+
margin: 10px 0;
|
166 |
+
}
|
167 |
+
|
168 |
+
.progress-fill {
|
169 |
+
height: 100%;
|
170 |
+
background: linear-gradient(90deg, #00ffff 0%, #00ffcc 100%);
|
171 |
+
width: 85%;
|
172 |
+
}
|
173 |
+
|
174 |
+
@media (prefers-color-scheme: light) {
|
175 |
+
.model-name, .section-title, .subtitle {
|
176 |
+
color: #006666;
|
177 |
+
text-shadow: 0 0 5px rgba(0, 200, 200, 0.3);
|
178 |
+
}
|
179 |
+
|
180 |
+
.section:has(.quant-links) p,
|
181 |
+
.section:has(.quant-links) h3,
|
182 |
+
.section:has(.quant-links) a,
|
183 |
+
.section > p > strong {
|
184 |
+
color: #008080 !important;
|
185 |
+
}
|
186 |
+
|
187 |
+
.quant-links h3 {
|
188 |
+
color: #008080 !important;
|
189 |
+
}
|
190 |
+
|
191 |
+
.badge {
|
192 |
+
border-color: #008080;
|
193 |
+
background: rgba(0, 150, 150, 0.1);
|
194 |
+
}
|
195 |
+
|
196 |
+
.disclaimer {
|
197 |
+
color: #008080;
|
198 |
+
border-color: #008080;
|
199 |
+
}
|
200 |
+
}
|
201 |
+
</style>
|
202 |
+
|
203 |
+
<div class="container">
|
204 |
+
<div class="header">
|
205 |
+
<h1 class="model-name">Forgotten-Transgression-24B-v4.1</h1>
|
206 |
+
<div class="subtitle">Crossing the Event Horizon of Depravity</div>
|
207 |
+
</div>
|
208 |
+
|
209 |
+
<div class="waifu-container">
|
210 |
+
<img src="https://i.imgur.com/JJZe7z5.png" class="waifu-img" alt="Protocol Mascot">
|
211 |
+
</div>
|
212 |
+
|
213 |
+
<div class="section">
|
214 |
+
<h2 class="section-title">π Manifesto</h2>
|
215 |
+
<ul>
|
216 |
+
<li>π Finetuned for unprecedented coherent depravity up to 32K context</li>
|
217 |
+
<li>π οΈ Optimized for stability and well-rounded erotic roleplaying ability</li>
|
218 |
+
<li>π₯ Trained on 23 distinct types of taboo content</li>
|
219 |
+
</ul>
|
220 |
+
</div>
|
221 |
+
|
222 |
+
<div class="section">
|
223 |
+
<h2 class="section-title">βοΈ Technical Specifications</h2>
|
224 |
+
<div class="progress-bar">
|
225 |
+
<div class="progress-fill"></div>
|
226 |
+
</div>
|
227 |
+
<p><strong>Recommended Settings:</strong> <a href="https://huggingface.co/sleepdeprived3/Mistral-V7-Tekken-T">Mistral-V7-Tekken-T</a></p>
|
228 |
+
<div class="quant-links">
|
229 |
+
<div class="link-card">
|
230 |
+
<h3>EXL2 Collection</h3>
|
231 |
+
<a href="https://huggingface.co/collections/ReadyArt/forgotten-transgression-24b-v42-exl2-67df0265a9e759a460ef9e4b">Quantum Entangled Bits β</a>
|
232 |
+
</div>
|
233 |
+
<div class="link-card">
|
234 |
+
<h3>GGUF Collection</h3>
|
235 |
+
<a href="https://huggingface.co/collections/ReadyArt/forgotten-transgression-24b-v42-gguf-67df026bf1a0c1adde69e6e7">Giggle-Enabled Units β</a>
|
236 |
+
</div>
|
237 |
+
</div>
|
238 |
+
</div>
|
239 |
+
|
240 |
+
<div class="section">
|
241 |
+
<h2 class="section-title">β οΈ Ethical Considerations</h2>
|
242 |
+
<div class="disclaimer">
|
243 |
+
<p>This model will:</p>
|
244 |
+
<ul>
|
245 |
+
<li>Generate content that requires industrial-grade brain bleach</li>
|
246 |
+
<li>Void all warranties on your soul</li>
|
247 |
+
<li>Make you question why humanity ever invented electricity</li>
|
248 |
+
</ul>
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
|
252 |
+
<div class="section">
|
253 |
+
<h2 class="section-title">π License Agreement</h2>
|
254 |
+
<p>By using this model, you agree:</p>
|
255 |
+
<ul>
|
256 |
+
<li>To accept full responsibility for any psychotic breaks incurred</li>
|
257 |
+
<li>Pay for the exorcist of anyone who reads the logs</li>
|
258 |
+
<li>To pretend this is "for science" while crying in the shower</li>
|
259 |
+
</ul>
|
260 |
+
</div>
|
261 |
+
|
262 |
+
<div class="section">
|
263 |
+
<h2 class="section-title">π§ Model Author</h2>
|
264 |
+
<ul>
|
265 |
+
<li>sleepdeprived3 (Chief Corruption Officer)</li>
|
266 |
+
<li>EXL2 Quant by ArtusDev</li>
|
267 |
+
</ul>
|
268 |
+
</div>
|
269 |
+
|
270 |
+
<div class="section">
|
271 |
+
<h2 class="section-title">βοΈ Drummer made this possible</h2>
|
272 |
+
<ul>
|
273 |
+
<li>Support Drummer <a href="https://ko-fi.com/thedrummer">Kofi</a></li>
|
274 |
+
<li>Join our Discord <a href="https://discord.com/invite/Nbv9pQ88Xb">Beaver AI Discord</a></li>
|
275 |
+
</ul>
|
276 |
+
</div>
|
277 |
+
</div>
|