File size: 14,212 Bytes
bc3f7a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ea5730a
 
 
 
 
 
 
 
 
 
 
 
 
 
bc3f7a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ea5730a
bc3f7a4
 
 
 
 
 
 
 
ea5730a
bc3f7a4
 
 
 
 
 
 
 
ea5730a
bc3f7a4
 
 
 
 
 
 
 
ea5730a
bc3f7a4
 
 
 
 
 
 
 
ea5730a
bc3f7a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
aa05343
 
 
 
 
 
 
 
 
b8c32c9
 
 
 
 
 
 
 
bc3f7a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Polish LLM Benchmarks</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        main {
            padding: 60px 40px;
        }

        .section {
            margin-bottom: 50px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .benchmark-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .benchmark-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .benchmark-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .benchmark-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #667eea;
        }

        .benchmark-link {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            transition: color 0.3s ease;
        }

        .benchmark-link:hover {
            color: #667eea;
        }

        .polish-tag {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-right: 8px;
        }

        .speakleash-tag {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .description {
            color: #666;
            font-size: 0.9rem;
            margin-top: 8px;
            font-style: italic;
        }

        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            h1 {
                font-size: 2rem;
            }

            main {
                padding: 30px 20px;
            }

            .benchmark-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .benchmark-card {
                padding: 20px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>Polish LLM Benchmarks</h1>
            <p class="subtitle">Comprehensive evaluation platforms for Polish language models</p>
        </header>

        <main>
            <section class="section">
                <h2>Polish Language Benchmarks</h2>
                <div class="benchmark-grid">
                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/open_pl_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Open PL LLM Leaderboard
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Comprehensive leaderboard for Polish language models</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/mt-bench-pl" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish MT-Bench
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Multi-turn conversation benchmark for Polish</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/polish_eq-bench" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish EQ-Bench
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Emotional intelligence benchmark for Polish models</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/cptu_bench" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            CPTUB Leaderboard
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Comprehensive Polish Text Understanding Benchmark</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/polish_medical_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish Medical Leaderboard
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Medical domain benchmark for Polish language models</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/sdadas/plcc" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish Linguistic and Cultural Competency Benchmark (PLCC)
                        </a>
                        <span class="polish-tag">Polish</span>
                        <p class="description">Evaluates linguistic and cultural understanding in Polish</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/amu-cai/LLMZSZL_Leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            LLMzSzŁ (LLMs Behind the School Desk)
                        </a>
                        <span class="polish-tag">Polish</span>
                        <p class="description">Educational benchmark for Polish language models</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/Polish_Cultural_Vision_Benchmark" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish Cultural Vision Benchmark
                        </a>
                        <span class="polish-tag">Polish</span>
                        <span class="speakleash-tag">SpeakLeash</span>
                        <p class="description">Vision Language Model benchmark for Polish cultural understanding</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/gaius-lex/pl-legal-rag" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Polish Legal RAG Leaderboard
                        </a>
                        <span class="polish-tag">Polish</span>
                        <p class="description">Explore and compare model performance on Polish legal QA tasks</p>
                    </div>
                </div>
            </section>

            <section class="section">
                <h2>International Benchmarks (Bielik Evaluated)</h2>
                <div class="benchmark-grid">
                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/european_leaderboard_bielik" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            European LLM Leaderboard
                        </a>
                        <p class="description">Multi-language European language model evaluation</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://euroeval.com/leaderboards/Multilingual/european/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            EuroEval
                        </a>
                        <p class="description">European multilingual model evaluation platform</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/open-llm-leaderboard-old/open_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Open LLM Leaderboard
                        </a>
                        <p class="description">Original comprehensive LLM evaluation leaderboard</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Open LLM Leaderboard v2
                        </a>
                        <p class="description">Updated version of the Open LLM Leaderboard</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://mixeval.github.io/" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            MixEval
                        </a>
                        <p class="description">Mixed evaluation benchmark for language models</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://gorilla.cs.berkeley.edu/leaderboard.html" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Berkeley Function-Calling Leaderboard
                        </a>
                        <p class="description">Evaluates function calling capabilities of LLMs</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/speakleash/european_leaderboard_bielik" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            FLORES200 Translation Benchmark
                        </a>
                        <p class="description">Large-scale multilingual translation evaluation</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/CZLC/BenCzechMark" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            BenCzechMark
                        </a>
                        <p class="description">Czech language model benchmark suite</p>
                    </div>

                    <div class="benchmark-card">
                        <a href="https://huggingface.co/spaces/eduagarcia/open_pt_llm_leaderboard" class="benchmark-link" target="_blank" rel="noopener noreferrer">
                            Portuguese Benchmark (Open PT LLM Leaderboard)
                        </a>
                        <p class="description">Portuguese language model evaluation platform</p>
                    </div>
                </div>
            </section>
        </main>

        <footer>
            <p>&copy; 2024 Polish LLM Benchmarks. All benchmarks are maintained by their respective organizations.</p>
        </footer>
    </div>
</body>
</html>