djstrong commited on
Commit
bc3f7a4
·
verified ·
1 Parent(s): b65d097

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +326 -19
index.html CHANGED
@@ -1,19 +1,326 @@
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>Polish LLM Benchmarks</title>
7
+ <style>
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ body {
15
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16
+ line-height: 1.6;
17
+ color: #333;
18
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
19
+ min-height: 100vh;
20
+ padding: 20px;
21
+ }
22
+
23
+ .container {
24
+ max-width: 1200px;
25
+ margin: 0 auto;
26
+ background: white;
27
+ border-radius: 20px;
28
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
29
+ overflow: hidden;
30
+ }
31
+
32
+ header {
33
+ background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
34
+ color: white;
35
+ text-align: center;
36
+ padding: 60px 20px;
37
+ }
38
+
39
+ h1 {
40
+ font-size: 3rem;
41
+ font-weight: 700;
42
+ margin-bottom: 10px;
43
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
44
+ }
45
+
46
+ .subtitle {
47
+ font-size: 1.2rem;
48
+ opacity: 0.9;
49
+ font-weight: 300;
50
+ }
51
+
52
+ main {
53
+ padding: 60px 40px;
54
+ }
55
+
56
+ .section {
57
+ margin-bottom: 50px;
58
+ }
59
+
60
+ .section:last-child {
61
+ margin-bottom: 0;
62
+ }
63
+
64
+ h2 {
65
+ font-size: 2rem;
66
+ color: #2c3e50;
67
+ margin-bottom: 30px;
68
+ text-align: center;
69
+ position: relative;
70
+ padding-bottom: 15px;
71
+ }
72
+
73
+ h2::after {
74
+ content: '';
75
+ position: absolute;
76
+ bottom: 0;
77
+ left: 50%;
78
+ transform: translateX(-50%);
79
+ width: 60px;
80
+ height: 3px;
81
+ background: linear-gradient(135deg, #667eea, #764ba2);
82
+ border-radius: 3px;
83
+ }
84
+
85
+ .benchmark-grid {
86
+ display: grid;
87
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
88
+ gap: 20px;
89
+ margin-top: 30px;
90
+ }
91
+
92
+ .benchmark-card {
93
+ background: #f8f9fa;
94
+ border-radius: 15px;
95
+ padding: 25px;
96
+ transition: all 0.3s ease;
97
+ border: 2px solid transparent;
98
+ position: relative;
99
+ overflow: hidden;
100
+ }
101
+
102
+ .benchmark-card::before {
103
+ content: '';
104
+ position: absolute;
105
+ top: 0;
106
+ left: 0;
107
+ width: 100%;
108
+ height: 4px;
109
+ background: linear-gradient(135deg, #667eea, #764ba2);
110
+ }
111
+
112
+ .benchmark-card:hover {
113
+ transform: translateY(-5px);
114
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
115
+ border-color: #667eea;
116
+ }
117
+
118
+ .benchmark-link {
119
+ text-decoration: none;
120
+ color: #2c3e50;
121
+ font-weight: 600;
122
+ font-size: 1.1rem;
123
+ display: block;
124
+ transition: color 0.3s ease;
125
+ }
126
+
127
+ .benchmark-link:hover {
128
+ color: #667eea;
129
+ }
130
+
131
+ .polish-tag {
132
+ display: inline-block;
133
+ background: linear-gradient(135deg, #e74c3c, #c0392b);
134
+ color: white;
135
+ padding: 4px 12px;
136
+ border-radius: 20px;
137
+ font-size: 0.8rem;
138
+ font-weight: 600;
139
+ margin-top: 10px;
140
+ text-transform: uppercase;
141
+ letter-spacing: 0.5px;
142
+ }
143
+
144
+ .description {
145
+ color: #666;
146
+ font-size: 0.9rem;
147
+ margin-top: 8px;
148
+ font-style: italic;
149
+ }
150
+
151
+ footer {
152
+ background: #2c3e50;
153
+ color: white;
154
+ text-align: center;
155
+ padding: 30px 20px;
156
+ font-size: 0.9rem;
157
+ }
158
+
159
+ @media (max-width: 768px) {
160
+ body {
161
+ padding: 10px;
162
+ }
163
+
164
+ h1 {
165
+ font-size: 2rem;
166
+ }
167
+
168
+ main {
169
+ padding: 30px 20px;
170
+ }
171
+
172
+ .benchmark-grid {
173
+ grid-template-columns: 1fr;
174
+ gap: 15px;
175
+ }
176
+
177
+ .benchmark-card {
178
+ padding: 20px;
179
+ }
180
+ }
181
+ </style>
182
+ </head>
183
+ <body>
184
+ <div class="container">
185
+ <header>
186
+ <h1>Polish LLM Benchmarks</h1>
187
+ <p class="subtitle">Comprehensive evaluation platforms for Polish language models</p>
188
+ </header>
189
+
190
+ <main>
191
+ <section class="section">
192
+ <h2>Polish Language Benchmarks</h2>
193
+ <div class="benchmark-grid">
194
+ <div class="benchmark-card">
195
+ <a href="https://huggingface.co/spaces/speakleash/open_pl_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
196
+ Open PL LLM Leaderboard
197
+ </a>
198
+ <span class="polish-tag">Polish</span>
199
+ <p class="description">Comprehensive leaderboard for Polish language models</p>
200
+ </div>
201
+
202
+ <div class="benchmark-card">
203
+ <a href="https://huggingface.co/spaces/speakleash/mt-bench-pl" class="benchmark-link" target="_blank" rel="noopener noreferrer">
204
+ Polish MT-Bench
205
+ </a>
206
+ <span class="polish-tag">Polish</span>
207
+ <p class="description">Multi-turn conversation benchmark for Polish</p>
208
+ </div>
209
+
210
+ <div class="benchmark-card">
211
+ <a href="https://huggingface.co/spaces/speakleash/polish_eq-bench" class="benchmark-link" target="_blank" rel="noopener noreferrer">
212
+ Polish EQ-Bench
213
+ </a>
214
+ <span class="polish-tag">Polish</span>
215
+ <p class="description">Emotional intelligence benchmark for Polish models</p>
216
+ </div>
217
+
218
+ <div class="benchmark-card">
219
+ <a href="https://huggingface.co/spaces/speakleash/cptu_bench" class="benchmark-link" target="_blank" rel="noopener noreferrer">
220
+ CPTUB Leaderboard
221
+ </a>
222
+ <span class="polish-tag">Polish</span>
223
+ <p class="description">Comprehensive Polish Text Understanding Benchmark</p>
224
+ </div>
225
+
226
+ <div class="benchmark-card">
227
+ <a href="https://huggingface.co/spaces/speakleash/polish_medical_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
228
+ Polish Medical Leaderboard
229
+ </a>
230
+ <span class="polish-tag">Polish</span>
231
+ <p class="description">Medical domain benchmark for Polish language models</p>
232
+ </div>
233
+
234
+ <div class="benchmark-card">
235
+ <a href="https://huggingface.co/spaces/sdadas/plcc" class="benchmark-link" target="_blank" rel="noopener noreferrer">
236
+ Polish Linguistic and Cultural Competency Benchmark (PLCC)
237
+ </a>
238
+ <span class="polish-tag">Polish</span>
239
+ <p class="description">Evaluates linguistic and cultural understanding in Polish</p>
240
+ </div>
241
+
242
+ <div class="benchmark-card">
243
+ <a href="https://huggingface.co/spaces/amu-cai/LLMZSZL_Leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
244
+ LLMzSzŁ (LLMs Behind the School Desk)
245
+ </a>
246
+ <span class="polish-tag">Polish</span>
247
+ <p class="description">Educational benchmark for Polish language models</p>
248
+ </div>
249
+ </div>
250
+ </section>
251
+
252
+ <section class="section">
253
+ <h2>International Benchmarks (Bielik Evaluated)</h2>
254
+ <div class="benchmark-grid">
255
+ <div class="benchmark-card">
256
+ <a href="https://huggingface.co/spaces/speakleash/european_leaderboard_bielik" class="benchmark-link" target="_blank" rel="noopener noreferrer">
257
+ European LLM Leaderboard
258
+ </a>
259
+ <p class="description">Multi-language European language model evaluation</p>
260
+ </div>
261
+
262
+ <div class="benchmark-card">
263
+ <a href="https://euroeval.com/leaderboards/Multilingual/european/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
264
+ EuroEval
265
+ </a>
266
+ <p class="description">European multilingual model evaluation platform</p>
267
+ </div>
268
+
269
+ <div class="benchmark-card">
270
+ <a href="https://huggingface.co/spaces/open-llm-leaderboard-old/open_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
271
+ Open LLM Leaderboard
272
+ </a>
273
+ <p class="description">Original comprehensive LLM evaluation leaderboard</p>
274
+ </div>
275
+
276
+ <div class="benchmark-card">
277
+ <a href="https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
278
+ Open LLM Leaderboard v2
279
+ </a>
280
+ <p class="description">Updated version of the Open LLM Leaderboard</p>
281
+ </div>
282
+
283
+ <div class="benchmark-card">
284
+ <a href="https://mixeval.github.io/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
285
+ MixEval
286
+ </a>
287
+ <p class="description">Mixed evaluation benchmark for language models</p>
288
+ </div>
289
+
290
+ <div class="benchmark-card">
291
+ <a href="https://gorilla.cs.berkeley.edu/leaderboard.html" class="benchmark-link" target="_blank" rel="noopener noreferrer">
292
+ Berkeley Function-Calling Leaderboard
293
+ </a>
294
+ <p class="description">Evaluates function calling capabilities of LLMs</p>
295
+ </div>
296
+
297
+ <div class="benchmark-card">
298
+ <a href="https://huggingface.co/spaces/speakleash/european_leaderboard_bielik" class="benchmark-link" target="_blank" rel="noopener noreferrer">
299
+ FLORES200 Translation Benchmark
300
+ </a>
301
+ <p class="description">Large-scale multilingual translation evaluation</p>
302
+ </div>
303
+
304
+ <div class="benchmark-card">
305
+ <a href="https://huggingface.co/spaces/CZLC/BenCzechMark" class="benchmark-link" target="_blank" rel="noopener noreferrer">
306
+ BenCzechMark
307
+ </a>
308
+ <p class="description">Czech language model benchmark suite</p>
309
+ </div>
310
+
311
+ <div class="benchmark-card">
312
+ <a href="https://huggingface.co/spaces/eduagarcia/open_pt_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
313
+ Portuguese Benchmark (Open PT LLM Leaderboard)
314
+ </a>
315
+ <p class="description">Portuguese language model evaluation platform</p>
316
+ </div>
317
+ </div>
318
+ </section>
319
+ </main>
320
+
321
+ <footer>
322
+ <p>&copy; 2024 Polish LLM Benchmarks. All benchmarks are maintained by their respective organizations.</p>
323
+ </footer>
324
+ </div>
325
+ </body>
326
+ </html>