Shitqq commited on
Commit
6efb845
1 Parent(s): 220fb8a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +226 -17
index.html CHANGED
@@ -5,6 +5,26 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Openness Leaderboard</title>
7
  <style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  table {
9
  width: 50%;
10
  border-collapse: collapse;
@@ -28,18 +48,28 @@
28
 
29
  <h2>Openness Leaderboard</h2>
30
 
31
- <table>
32
- <thead>
33
- <tr>
34
- <th>Rank</th>
35
- <th>Model</th>
36
- <th>weights</th>
37
- <th>data</th>
38
- <th>open source license</th>
39
- <th>Organization</th>
40
- </tr>
41
- </thead>
42
- <tbody>
 
 
 
 
 
 
 
 
 
 
43
  <tr>
44
  <td>1</td>
45
  <td>K2-65B</td>
@@ -121,14 +151,193 @@
121
  <td>❌</td>
122
  <td>Deepseek</td>
123
  </tr>
124
-
125
- </tbody>
126
- </table>
127
- <div class="image-container">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  <img src="https://blog.mozilla.org/wp-content/blogs.dir/278/files/2024/05/columbia-convening.png" alt="Image" style="width: 500px; height: auto;"> <!-- Resize the image to 300px wide -->
129
  </div>
130
 
131
- <p style="clear: both;"><strong>🚨:</strong> This is an oversimplified leaderboard, there are so much more other than the weights, training data and license for a large language model such as the code to train the model, the model architecture, data preprocessing code etc. Please refer to the <a href="https://arxiv.org/abs/2403.13784" target="_blank">MOF paper</a> to learn more. Future updates will include a more detailed leaderboard with more models and components added. The purpose of this leaderboard is to let the world know that there are certain models claiming to be "open" despite falling short of openness standards (also known as open washing) due to restricted access to training data, training code, the use of custom licenses etc. Transparency and accurate representation of AI models openness are crucial.</p>
132
  <p style="clear: both;">image source: <a href="https://arxiv.org/abs/2405.15802" target="_blank">https://arxiv.org/abs/2405.15802</a></p>
133
  </body>
134
  </html>
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Openness Leaderboard</title>
7
  <style>
8
+ /* Add some basic styling for the tabs and tables */
9
+ .tabs {
10
+ margin-bottom: 20px;
11
+ }
12
+ .tabs ul {
13
+ list-style: none;
14
+ padding: 0;
15
+ margin: 0;
16
+ }
17
+ .tabs li {
18
+ display: inline-block;
19
+ margin-right: 10px;
20
+ }
21
+ .tabs a {
22
+ text-decoration: none;
23
+ color: #337ab7;
24
+ }
25
+ .tabs a.active {
26
+ color: #23527c;
27
+ }
28
  table {
29
  width: 50%;
30
  border-collapse: collapse;
 
48
 
49
  <h2>Openness Leaderboard</h2>
50
 
51
+ <div class="tabs">
52
+ <ul>
53
+ <li><a href="#" class="active" data-tab="language-models">Language Models</a></li>
54
+ <li><a href="#" data-tab="text-to-image-models">Text-to-Image Models</a></li>
55
+ <li><a href="#" data-tab="text-to-speech-models">Text-to-Speech Models</a></li>
56
+ </ul>
57
+ </div>
58
+
59
+ <div id="leaderboard">
60
+ <!-- Language Models leaderboard will be displayed here by default -->
61
+ <table id="language-models">
62
+ <thead>
63
+ <tr>
64
+ <th>Rank</th>
65
+ <th>Model</th>
66
+ <th>weights</th>
67
+ <th>data</th>
68
+ <th>open source license</th>
69
+ <th>Organization</th>
70
+ </tr>
71
+ </thead>
72
+ <tbody>
73
  <tr>
74
  <td>1</td>
75
  <td>K2-65B</td>
 
151
  <td>❌</td>
152
  <td>Deepseek</td>
153
  </tr>
154
+ </tbody>
155
+ </table>
156
+
157
+ <!-- Text-to-Image Models leaderboard will be displayed when the tab is clicked -->
158
+ <table id="text-to-image-models" style="display: none;">
159
+ <thead>
160
+ <tr>
161
+ <th>Rank</th>
162
+ <th>Model</th>
163
+ <th>weights</th>
164
+ <th>data</th>
165
+ <th>open source license</th>
166
+ <th>Organization</th>
167
+ </tr>
168
+ </thead>
169
+ <tbody>
170
+ <!-- text-to-image model data -->
171
+ <tr>
172
+ <td>1</td>
173
+ <td>flux-schnell</td>
174
+ <td>✅</td>
175
+ <td>❌</td>
176
+ <td>✅</td>
177
+ <td>blackforestlabs</td>
178
+ </tr>
179
+ <tr>
180
+ <td>2</td>
181
+ <td>Aura-flow 0.3</td>
182
+ <td>✅</td>
183
+ <td>❌</td>
184
+ <td>✅</td>
185
+ <td>falai</td>
186
+ </tr>
187
+ <tr>
188
+ <td>3</td>
189
+ <td>flux-dev</td>
190
+ <td>✅</td>
191
+ <td>❌</td>
192
+ <td>❌</td>
193
+ <td>blackforestlabs</td>
194
+ </tr>
195
+ <tr>
196
+ <td>4</td>
197
+ <td>StableDiffusion medium 3</td>
198
+ <td>✅</td>
199
+ <td>❌</td>
200
+ <td>❌</td>
201
+ <td>StabilityAI</td>
202
+ </tr>
203
+ <tr>
204
+ <td>5</td>
205
+ <td>flux-pro</td>
206
+ <td>❌</td>
207
+ <td>❌</td>
208
+ <td>❌</td>
209
+ <td>blackforestlabs</td>
210
+ </tr>
211
+ <tr>
212
+ <td>6</td>
213
+ <td>Midjourney v6.1</td>
214
+ <td>❌</td>
215
+ <td>❌</td>
216
+ <td>❌</td>
217
+ <td>Midjourney</td>
218
+ </tr>
219
+ <tr>
220
+ <td>7</td>
221
+ <td>Dalle 3</td>
222
+ <td>❌</td>
223
+ <td>❌</td>
224
+ <td>❌</td>
225
+ <td>OpenAI</td>
226
+ </tr>
227
+ </tbody>
228
+ </table>
229
+
230
+ <!-- Text-to-Speech Models leaderboard will be displayed when the tab is clicked -->
231
+ <table id="text-to-speech-models" style="display: none;">
232
+ <thead>
233
+ <tr>
234
+ <th>Rank</th>
235
+ <th>Model</th>
236
+ <th>weights</th>
237
+ <th>data</th>
238
+ <th>open source license</th>
239
+ <th>Organization</th>
240
+ </tr>
241
+ </thead>
242
+ <tbody>
243
+ <!-- text-to-speech model data -->
244
+ <tr>
245
+ <td>1</td>
246
+ <td>Parler-TTS</td>
247
+ <td>✅</td>
248
+ <td>✅</td>
249
+ <td>✅</td>
250
+ <td>huggingface</td>
251
+ </tr>
252
+ <tr>
253
+ <td>2</td>
254
+ <td>metavoice</td>
255
+ <td>✅</td>
256
+ <td>❌</td>
257
+ <td>✅</td>
258
+ <td>metavoiceio</td>
259
+ </tr>
260
+ <tr>
261
+ <td>3</td>
262
+ <td>openvoicev2</td>
263
+ <td>✅</td>
264
+ <td>❌</td>
265
+ <td>✅</td>
266
+ <td>myshell-ai</td>
267
+ </tr>
268
+ <tr>
269
+ <td>4</td>
270
+ <td>styletts2</td>
271
+ <td>✅</td>
272
+ <td>❌</td>
273
+ <td>✅</td>
274
+ <td>styletts2</td>
275
+ </tr>
276
+ <tr>
277
+ <td>5</td>
278
+ <td>melo-tts</td>
279
+ <td>✅</td>
280
+ <td>❌</td>
281
+ <td>✅</td>
282
+ <td>myshell-ai</td>
283
+ </tr>
284
+ <tr>
285
+ <td>6</td>
286
+ <td>fish-speech 1.4</td>
287
+ <td>✅</td>
288
+ <td>❌</td>
289
+ <td>❌</td>
290
+ <td>fish-audio</td>
291
+ </tr>
292
+ <tr>
293
+ <td>7</td>
294
+ <td>Elevenlabs</td>
295
+ <td>❌</td>
296
+ <td>❌</td>
297
+ <td>❌</td>
298
+ <td>Elevenlabs</td>
299
+ </tr>
300
+ </tbody>
301
+ </table>
302
+ </div>
303
+
304
+ <script>
305
+ const tabs = document.querySelectorAll('.tabs li a');
306
+ const leaderboard = document.getElementById('leaderboard');
307
+ const languageModelsTable = document.getElementById('language-models');
308
+ const textToImageModelsTable = document.getElementById('text-to-image-models');
309
+ const textToSpeechModelsTable = document.getElementById('text-to-speech-models');
310
+ tabs.forEach((tab, index) => {
311
+ tab.addEventListener('click', (e) => {
312
+ e.preventDefault();
313
+ const tabId = tab.getAttribute('data-tab');
314
+ if (tabId === 'language-models') {
315
+ languageModelsTable.style.display = 'table';
316
+ textToImageModelsTable.style.display = 'none';
317
+ textToSpeechModelsTable.style.display = 'none';
318
+ tabs.forEach((t) => t.classList.remove('active'));
319
+ tab.classList.add('active');
320
+ } else if (tabId === 'text-to-image-models') {
321
+ languageModelsTable.style.display = 'none';
322
+ textToImageModelsTable.style.display = 'table';
323
+ textToSpeechModelsTable.style.display = 'none';
324
+ tabs.forEach((t) => t.classList.remove('active'));
325
+ tab.classList.add('active');
326
+ } else if (tabId === 'text-to-speech-models') {
327
+ languageModelsTable.style.display = 'none';
328
+ textToImageModelsTable.style.display = 'none';
329
+ textToSpeechModelsTable.style.display = 'table';
330
+ tabs.forEach((t) => t.classList.remove('active'));
331
+ tab.classList.add('active');
332
+ }
333
+ });
334
+ });
335
+ </script>
336
+ <div class="image-container">
337
  <img src="https://blog.mozilla.org/wp-content/blogs.dir/278/files/2024/05/columbia-convening.png" alt="Image" style="width: 500px; height: auto;"> <!-- Resize the image to 300px wide -->
338
  </div>
339
 
340
+ <p style="clear: both;"><strong>🚨:</strong> This is an oversimplified leaderboard, there are so much more other than the weights, training data and license for a model such as the code to train the model, the model architecture, data preprocessing code etc. Please refer to the <a href="https://arxiv.org/abs/2403.13784" target="_blank">MOF paper</a> to learn more. Future updates will include a more detailed leaderboard with more models and components added. The purpose of this leaderboard is to let the world know that there are certain models claiming to be "open" despite falling short of openness standards (also known as open washing) due to restricted access to training data, training code, the use of custom licenses etc. Transparency and accurate representation of AI models openness are crucial.</p>
341
  <p style="clear: both;">image source: <a href="https://arxiv.org/abs/2405.15802" target="_blank">https://arxiv.org/abs/2405.15802</a></p>
342
  </body>
343
  </html>