Shitqq commited on
Commit
ea432a6
·
verified ·
1 Parent(s): a144e0c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +107 -19
index.html CHANGED
@@ -1,19 +1,107 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
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;
11
+ margin: 20px 0;
12
+ }
13
+ th, td {
14
+ border: 1px solid #ddd;
15
+ padding: 8px;
16
+ text-align: center;
17
+ }
18
+ th {
19
+ background-color: #f2f2f2;
20
+ }
21
+ </style>
22
+ </head>
23
+ <body>
24
+
25
+ <h2>Openness Leaderboard</h2>
26
+
27
+ <table>
28
+ <thead>
29
+ <tr>
30
+ <th>Rank</th>
31
+ <th>Model</th>
32
+ <th>weights</th>
33
+ <th>data</th>
34
+ <th>open source license</th>
35
+ <th>Organization</th>
36
+ </tr>
37
+ </thead>
38
+ <tbody>
39
+ <tr>
40
+ <td>1</td>
41
+ <td>olmo</td>
42
+ <td>✅</td>
43
+ <td>✅</td>
44
+ <td>✅</td>
45
+ <td>AllenAI (AI2)</td>
46
+ </tr>
47
+ <tr>
48
+ <td>2</td>
49
+ <td>phi 3.5</td>
50
+ <td>✅</td>
51
+ <td>❌</td>
52
+ <td>✅</td>
53
+ <td>Microsoft</td>
54
+ </tr>
55
+ <tr>
56
+ <td>3</td>
57
+ <td>yi 1.5</td>
58
+ <td>✅</td>
59
+ <td>❌</td>
60
+ <td>✅</td>
61
+ <td>01.ai</td>
62
+ </tr>
63
+ <tr>
64
+ <td>4</td>
65
+ <td>mixtral8x22b</td>
66
+ <td>✅</td>
67
+ <td>❌</td>
68
+ <td>✅</td>
69
+ <td>Mistral</td>
70
+ </tr>
71
+ <tr>
72
+ <td>5</td>
73
+ <td>qwen2 72b</td>
74
+ <td>✅</td>
75
+ <td>❌</td>
76
+ <td>❌</td>
77
+ <td>Alibaba</td>
78
+ </tr>
79
+ <tr>
80
+ <td>6</td>
81
+ <td>llama 3.1</td>
82
+ <td>✅</td>
83
+ <td>❌</td>
84
+ <td>❌</td>
85
+ <td>Meta</td>
86
+ </tr>
87
+ <tr>
88
+ <td>7</td>
89
+ <td>deepseek 2.5</td>
90
+ <td>✅</td>
91
+ <td>❌</td>
92
+ <td>❌</td>
93
+ <td>Deepseek</td>
94
+ </tr>
95
+ <tr>
96
+ <td>8</td>
97
+ <td>jamba 1.5</td>
98
+ <td>✅</td>
99
+ <td>❌</td>
100
+ <td>❌</td>
101
+ <td>AI21 Labs</td>
102
+ </tr>
103
+ </tbody>
104
+ </table>
105
+ <p><strong>Disclaimer:</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/pdf/2403.13784">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 due to restricted access to training data, training code, the use of custom licenses etc. (also known as open washing). Transparency and accurate representation of AI models openness are crucial.</p>
106
+ </body>
107
+ </html>