zerofata commited on
Commit
b482ab4
·
verified ·
1 Parent(s): 4c8484e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +118 -3
README.md CHANGED
@@ -5,26 +5,140 @@ library_name: transformers
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
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65b19c6c638328850e12d38c/0GTX4-erpPflLOkfH5sU5.png)
 
28
  <div class="section-container">
29
  <div class="section-header">
30
  <div class="section-indicator"></div>
@@ -98,7 +212,7 @@ license: llama3
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
  # ====================
@@ -209,8 +323,9 @@ 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
  # ====================
 
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
+ /* Subheading styling */
102
+ .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;}
103
+
104
+ /* Links */
105
+ a {color: #00c3ff; text-decoration: none;}
106
+ a:hover {text-decoration: underline;}
107
+
108
+ /* Container */
109
+ .container {max-width: 1200px; margin: 0 auto; padding: 40px 20px;}
110
+
111
+ /* Cyberpunk grid background */
112
+ .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;}
113
+ </style>
114
  <html lang="en">
115
  <head>
116
  <meta charset="UTF-8">
117
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
118
  <title>GENETIC LEMONADE UNLEASHED v2.1</title>
119
+ <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">
120
  </head>
121
  <body>
122
+ <div class="cyber-grid-bg"></div>
123
+
124
  <div class="container">
125
  <div class="title-container">
126
+ <!-- Glitchy overlay -->
127
+ <div class="glitchy-overlay"></div>
128
+ <!-- Main title -->
129
  <div class="title-wrapper">
130
  <h1 class="title-main">
131
  <span class="title-prefix">GENETIC</span>
132
+ <span class="lemonade-text">LEMONADE</span> <!-- Static text with glow -->
133
  </h1>
134
  <div class="title-subtitle">
135
  <span class="subtitle-text">UNLEASHED v2.1</span>
136
  </div>
137
  </div>
138
  </div>
139
+
140
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65b19c6c638328850e12d38c/0GTX4-erpPflLOkfH5sU5.png)
141
+
142
  <div class="section-container">
143
  <div class="section-header">
144
  <div class="section-indicator"></div>
 
212
  <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>
213
  <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>
214
  <h3 class="subheading">SFT 1*H200</h3>
215
+ ```yml
216
  # ====================
217
  # MODEL CONFIGURATION
218
  # ====================
 
323
  # wandb_entity: your_entity # Uncomment and set if needed
324
  # wandb_name: your_run_name # Uncomment and set if needed
325
  ```
326
+
327
  <h3 class="subheading">DPO 2*H200</h3>
328
+ ```yml
329
  # ====================
330
  # MODEL CONFIGURATION
331
  # ====================