Update README.md
Browse files
README.md
CHANGED
@@ -5,192 +5,26 @@ library_name: transformers
|
|
5 |
license: llama3
|
6 |
---
|
7 |
<!DOCTYPE html>
|
8 |
-
<style>
|
9 |
-
/* Base styling for cyberpunk theme */
|
10 |
-
body {font-family: sans-serif; background-color: #080c14; color: #e1e9f0; line-height: 1.6; margin: 0; padding: 0;}
|
11 |
-
|
12 |
-
/* Remove flicker keyframes */
|
13 |
-
|
14 |
-
/* Remove Basic Background animation test */
|
15 |
-
|
16 |
-
/* Animation classes */
|
17 |
-
/* Remove flicker-text rules */
|
18 |
-
|
19 |
-
/* New static style for LEMONADE */
|
20 |
-
.lemonade-text {
|
21 |
-
color: #33ff99;
|
22 |
-
position: relative; /* Keep relative positioning */
|
23 |
-
z-index: 2;
|
24 |
-
margin-left: 0.2em;
|
25 |
-
text-shadow: 0 0 10px #33ff99; /* Add static glow */
|
26 |
-
}
|
27 |
-
|
28 |
-
/* Section styling */
|
29 |
-
.section-container {background-color: rgba(8, 12, 20, 0.7); margin-bottom: 30px; position: relative; overflow: hidden; border-bottom: 1px solid #33ff99;}
|
30 |
-
.section-header {display: flex; align-items: center; background-color: rgba(0, 195, 255, 0.1); padding: 10px 20px;}
|
31 |
-
.section-indicator {width: 8px; height: 20px; background-color: #33ff99; margin-right: 15px;}
|
32 |
-
.section-title {font-family: 'Orbitron', sans-serif; color: #e1e9f0; font-size: 1.3rem; margin: 0; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;}
|
33 |
-
.section-content {padding: 20px; font-family: sans-serif; color: #e1e9f0; line-height: 1.6;}
|
34 |
-
|
35 |
-
/* Title styling */
|
36 |
-
.title-container {
|
37 |
-
background-color: #080c14;
|
38 |
-
position: relative;
|
39 |
-
overflow: hidden;
|
40 |
-
margin-bottom: 40px;
|
41 |
-
border-left: 3px solid #33ff99;
|
42 |
-
}
|
43 |
-
|
44 |
-
/* Remove basic background animation test rule */
|
45 |
-
|
46 |
-
.title-wrapper {
|
47 |
-
position: relative;
|
48 |
-
z-index: 2;
|
49 |
-
padding: 25px 20px 30px 30px;
|
50 |
-
font-family: 'Orbitron', sans-serif;
|
51 |
-
}
|
52 |
-
|
53 |
-
.title-main {
|
54 |
-
color: #e1e9f0;
|
55 |
-
font-size: 2.5rem; /* Reduced font size */
|
56 |
-
font-weight: 700;
|
57 |
-
margin: 0;
|
58 |
-
letter-spacing: 2px;
|
59 |
-
display: inline-block;
|
60 |
-
position: relative;
|
61 |
-
text-transform: uppercase;
|
62 |
-
}
|
63 |
-
|
64 |
-
.title-prefix {
|
65 |
-
position: relative;
|
66 |
-
z-index: 2;
|
67 |
-
}
|
68 |
-
|
69 |
-
.title-subtitle {
|
70 |
-
padding-left: 15px;
|
71 |
-
margin-top: 5px;
|
72 |
-
margin-left: 5px;
|
73 |
-
}
|
74 |
-
|
75 |
-
.subtitle-text {
|
76 |
-
color: #00c3ff;
|
77 |
-
font-size: 1.2rem; /* Reduced font size */
|
78 |
-
font-family: 'Orbitron', sans-serif;
|
79 |
-
font-weight: 300;
|
80 |
-
letter-spacing: 3px;
|
81 |
-
text-transform: uppercase;
|
82 |
-
display: inline-block;
|
83 |
-
}
|
84 |
-
|
85 |
-
.glitchy-overlay {
|
86 |
-
position: absolute;
|
87 |
-
top: 0;
|
88 |
-
left: 0;
|
89 |
-
width: 100%;
|
90 |
-
height: 100%;
|
91 |
-
background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.1) 1px, rgba(0,0,0,0) 2px);
|
92 |
-
z-index: 1;
|
93 |
-
}
|
94 |
-
|
95 |
-
/* Data box styling */
|
96 |
-
.data-box {background-color: rgba(0, 0, 0, 0.2); padding: 15px; border-left: 2px solid #33ff99; margin-bottom: 20px;}
|
97 |
-
.data-row {display: flex; margin-bottom: 8px;}
|
98 |
-
.data-arrow {color: #33ff99; width: 20px; display: inline-block;}
|
99 |
-
.data-label {color: #00c3ff; width: 80px; display: inline-block;}
|
100 |
-
|
101 |
-
/* Code config styling */
|
102 |
-
.config-title {
|
103 |
-
color: #00c3ff;
|
104 |
-
font-size: 1.4rem;
|
105 |
-
text-transform: uppercase;
|
106 |
-
letter-spacing: 2px;
|
107 |
-
margin-bottom: 5px;
|
108 |
-
font-family: 'Orbitron', sans-serif;
|
109 |
-
}
|
110 |
-
|
111 |
-
.config-underline {
|
112 |
-
width: 100%;
|
113 |
-
border-bottom: 1px dashed #00c3ff;
|
114 |
-
margin-bottom: 20px;
|
115 |
-
}
|
116 |
-
|
117 |
-
.config-section {
|
118 |
-
margin-bottom: 40px;
|
119 |
-
}
|
120 |
-
|
121 |
-
.config-subtitle {
|
122 |
-
color: #e1e9f0;
|
123 |
-
font-size: 1.2rem;
|
124 |
-
margin: 25px 0 15px 0;
|
125 |
-
font-weight: normal;
|
126 |
-
}
|
127 |
-
|
128 |
-
.config-block {
|
129 |
-
position: relative;
|
130 |
-
background-color: #111927;
|
131 |
-
padding: 20px 20px 20px 25px;
|
132 |
-
border-radius: 4px;
|
133 |
-
overflow-x: auto;
|
134 |
-
}
|
135 |
-
|
136 |
-
.config-line {
|
137 |
-
position: absolute;
|
138 |
-
left: 0;
|
139 |
-
top: 0;
|
140 |
-
bottom: 0;
|
141 |
-
width: 4px;
|
142 |
-
background-color: #33ff99;
|
143 |
-
}
|
144 |
-
|
145 |
-
.config-code {
|
146 |
-
font-family: 'JetBrains Mono', monospace;
|
147 |
-
font-size: 0.9rem;
|
148 |
-
line-height: 1.7;
|
149 |
-
color: #e1e9f0;
|
150 |
-
white-space: pre;
|
151 |
-
}
|
152 |
-
|
153 |
-
/* Subheading styling */
|
154 |
-
.subheading {color: #00c3ff; font-size: 1.1rem; margin-top: 20px; margin-bottom: 15px; font-weight: 400; border-bottom: 1px dashed rgba(0, 195, 255, 0.3); display: inline-block; text-transform: uppercase; letter-spacing: 1px; font-family: 'Orbitron', sans-serif;}
|
155 |
-
|
156 |
-
/* Links */
|
157 |
-
a {color: #00c3ff; text-decoration: none;}
|
158 |
-
a:hover {text-decoration: underline;}
|
159 |
-
|
160 |
-
/* Container */
|
161 |
-
.container {max-width: 1200px; margin: 0 auto; padding: 40px 20px;}
|
162 |
-
|
163 |
-
/* Cyberpunk grid background */
|
164 |
-
.cyber-grid-bg {position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #05071b; background-image: linear-gradient(rgba(0, 194, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 194, 255, 0.03) 1px, transparent 1px); background-size: 20px 20px; z-index: -1;}
|
165 |
-
</style>
|
166 |
<html lang="en">
|
167 |
<head>
|
168 |
<meta charset="UTF-8">
|
169 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
170 |
<title>GENETIC LEMONADE UNLEASHED v2.1</title>
|
171 |
-
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=JetBrains+Mono:wght@100;300;400;700&display=swap" rel="stylesheet">
|
172 |
</head>
|
173 |
<body>
|
174 |
-
<div class="cyber-grid-bg"></div>
|
175 |
-
|
176 |
<div class="container">
|
177 |
<div class="title-container">
|
178 |
-
<!-- Glitchy overlay -->
|
179 |
-
<div class="glitchy-overlay"></div>
|
180 |
-
<!-- Main title -->
|
181 |
<div class="title-wrapper">
|
182 |
<h1 class="title-main">
|
183 |
<span class="title-prefix">GENETIC</span>
|
184 |
-
<span class="lemonade-text">LEMONADE</span>
|
185 |
</h1>
|
186 |
<div class="title-subtitle">
|
187 |
<span class="subtitle-text">UNLEASHED v2.1</span>
|
188 |
</div>
|
189 |
</div>
|
190 |
</div>
|
191 |
-
|
192 |

|
193 |
-
|
194 |
<div class="section-container">
|
195 |
<div class="section-header">
|
196 |
<div class="section-indicator"></div>
|
@@ -202,7 +36,6 @@ a:hover {text-decoration: underline;}
|
|
202 |
<p>This is a creative model intended to excel at character driven RP / ERP. It has not been tested or trained on adventure stories or any large amounts of creative writing.</p>
|
203 |
</div>
|
204 |
</div>
|
205 |
-
|
206 |
<div class="section-container">
|
207 |
<div class="section-header">
|
208 |
<div class="section-indicator"></div>
|
@@ -234,7 +67,6 @@ a:hover {text-decoration: underline;}
|
|
234 |
</div>
|
235 |
</div>
|
236 |
</div>
|
237 |
-
|
238 |
<div class="section-container">
|
239 |
<div class="section-header">
|
240 |
<div class="section-indicator"></div>
|
@@ -257,7 +89,6 @@ a:hover {text-decoration: underline;}
|
|
257 |
</div>
|
258 |
</div>
|
259 |
</div>
|
260 |
-
|
261 |
<div class="section-container">
|
262 |
<div class="section-header">
|
263 |
<div class="section-indicator"></div>
|
@@ -266,13 +97,12 @@ a:hover {text-decoration: underline;}
|
|
266 |
<div class="section-content">
|
267 |
<p>The model first went through SFT with a small synthetic dataset of 2.9 million tokens, approximately 750 conversations. Primarily RP data with small amounts of random instruct / assistant data and creative writing.</p>
|
268 |
<p>The model then went through DPO training using approx 1100 chosen examples from the SFT dataset that were of exceptional quality or showed verifiable instruction following. Rejected samples were generated using another Llama 3.3 finetune that is known for poor instruction following.</p>
|
269 |
-
<
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
<pre class="config-code">base_model: zerofata/L3.3-GeneticLemonade-Unleashed-70B
|
276 |
model_type: AutoModelForCausalLM
|
277 |
tokenizer_type: AutoTokenizer
|
278 |
special_tokens:
|
@@ -377,12 +207,11 @@ save_safetensors: true
|
|
377 |
# ====================
|
378 |
wandb_project: project_name
|
379 |
# wandb_entity: your_entity # Uncomment and set if needed
|
380 |
-
# wandb_name: your_run_name # Uncomment and set if needed
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
<pre class="config-code"># ====================
|
386 |
# MODEL CONFIGURATION
|
387 |
# ====================
|
388 |
base_model: ApocalypseParty/unleashed-fulldata30
|
@@ -476,11 +305,10 @@ save_safetensors: true
|
|
476 |
# ====================
|
477 |
wandb_project: project_name
|
478 |
# wandb_entity: your_entity # Uncomment and set if needed
|
479 |
-
# wandb_name: your_run_name # Uncomment and set if needed
|
480 |
-
|
481 |
-
</div>
|
482 |
</div>
|
483 |
</div>
|
484 |
</div>
|
485 |
</body>
|
486 |
-
</html>
|
|
|
5 |
license: llama3
|
6 |
---
|
7 |
<!DOCTYPE html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
<html lang="en">
|
9 |
<head>
|
10 |
<meta charset="UTF-8">
|
11 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
12 |
<title>GENETIC LEMONADE UNLEASHED v2.1</title>
|
|
|
13 |
</head>
|
14 |
<body>
|
|
|
|
|
15 |
<div class="container">
|
16 |
<div class="title-container">
|
|
|
|
|
|
|
17 |
<div class="title-wrapper">
|
18 |
<h1 class="title-main">
|
19 |
<span class="title-prefix">GENETIC</span>
|
20 |
+
<span class="lemonade-text">LEMONADE</span>
|
21 |
</h1>
|
22 |
<div class="title-subtitle">
|
23 |
<span class="subtitle-text">UNLEASHED v2.1</span>
|
24 |
</div>
|
25 |
</div>
|
26 |
</div>
|
|
|
27 |

|
|
|
28 |
<div class="section-container">
|
29 |
<div class="section-header">
|
30 |
<div class="section-indicator"></div>
|
|
|
36 |
<p>This is a creative model intended to excel at character driven RP / ERP. It has not been tested or trained on adventure stories or any large amounts of creative writing.</p>
|
37 |
</div>
|
38 |
</div>
|
|
|
39 |
<div class="section-container">
|
40 |
<div class="section-header">
|
41 |
<div class="section-indicator"></div>
|
|
|
67 |
</div>
|
68 |
</div>
|
69 |
</div>
|
|
|
70 |
<div class="section-container">
|
71 |
<div class="section-header">
|
72 |
<div class="section-indicator"></div>
|
|
|
89 |
</div>
|
90 |
</div>
|
91 |
</div>
|
|
|
92 |
<div class="section-container">
|
93 |
<div class="section-header">
|
94 |
<div class="section-indicator"></div>
|
|
|
97 |
<div class="section-content">
|
98 |
<p>The model first went through SFT with a small synthetic dataset of 2.9 million tokens, approximately 750 conversations. Primarily RP data with small amounts of random instruct / assistant data and creative writing.</p>
|
99 |
<p>The model then went through DPO training using approx 1100 chosen examples from the SFT dataset that were of exceptional quality or showed verifiable instruction following. Rejected samples were generated using another Llama 3.3 finetune that is known for poor instruction following.</p>
|
100 |
+
<h3 class="subheading">SFT 1*H200</h3>
|
101 |
+
```yaml
|
102 |
+
# ====================
|
103 |
+
# MODEL CONFIGURATION
|
104 |
+
# ====================
|
105 |
+
base_model: zerofata/L3.3-GeneticLemonade-Unleashed-70B
|
|
|
106 |
model_type: AutoModelForCausalLM
|
107 |
tokenizer_type: AutoTokenizer
|
108 |
special_tokens:
|
|
|
207 |
# ====================
|
208 |
wandb_project: project_name
|
209 |
# wandb_entity: your_entity # Uncomment and set if needed
|
210 |
+
# wandb_name: your_run_name # Uncomment and set if needed
|
211 |
+
```
|
212 |
+
<h3 class="subheading">DPO 2*H200</h3>
|
213 |
+
```yaml
|
214 |
+
# ====================
|
|
|
215 |
# MODEL CONFIGURATION
|
216 |
# ====================
|
217 |
base_model: ApocalypseParty/unleashed-fulldata30
|
|
|
305 |
# ====================
|
306 |
wandb_project: project_name
|
307 |
# wandb_entity: your_entity # Uncomment and set if needed
|
308 |
+
# wandb_name: your_run_name # Uncomment and set if needed
|
309 |
+
```
|
|
|
310 |
</div>
|
311 |
</div>
|
312 |
</div>
|
313 |
</body>
|
314 |
+
</html>
|