File size: 9,065 Bytes
8ab5f33
85d7e36
2e8df58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d599135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2e8df58
 
 
 
 
 
 
 
 
 
 
 
681c3a2
2e8df58
 
 
 
 
4e9f3ae
8ab5f33
2e8df58
 
 
 
681c3a2
2e8df58
 
 
 
 
 
 
 
 
 
 
 
c5c6da9
d599135
c5c6da9
 
f487e4f
c5c6da9
2e8df58
f487e4f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208151a
f487e4f
 
2e8df58
f487e4f
c5c6da9
f487e4f
c5c6da9
 
 
 
f487e4f
c5c6da9
f487e4f
 
 
 
 
 
 
 
 
 
 
 
 
 
c5c6da9
 
2e8df58
c5c6da9
2e8df58
 
d599135
 
 
208151a
2e8df58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Leaderboards</title>
    <link
      href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap"
      rel="stylesheet"
    />
    <style>
      body {
        font-family: "Source Sans Pro", system-ui, -apple-system, sans-serif;
        margin: 0;
        padding: 20px;
        background: linear-gradient(
          135deg,
          rgb(245, 245, 245) 0%,
          #ffffff 100%
        );
        min-height: 100vh;
      }

      .container {
        max-width: 768px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      @media (min-width: 768px) {
        .container {
          max-width: 1200px;
          padding: 0 2rem;
        }
      }

      .header {
        text-align: center;
        margin-bottom: 2rem;
        color: #111827;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgb(228, 228, 228);
      }

      .summary {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border: 1px solid rgb(228, 228, 228);
      }

      .summary p {
        font-size: 1.1rem;
        color: rgb(107, 114, 128);
        margin: 0;
      }

      .grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      .card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        border: 1px solid rgb(228, 228, 228);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #007bff;
        border-bottom: 1px solid rgb(228, 228, 228);
        padding-bottom: 0.5rem;
      }

      .iframe-container {
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }

      .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
      }

      .loading {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid rgb(228, 228, 228);
        border-radius: 50%;
        border-top-color: #007bff;
        border-right-color: #007bff;
        animation: spin 1s ease-in-out infinite;
        margin-right: 10px;
        vertical-align: middle;
        opacity: 0.8;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .error {
        color: #dc2626;
        padding: 1rem;
        background: #fee2e2;
        border-radius: 8px;
        margin: 1rem 0;
      }

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

        .card {
          padding: 1rem;
        }

        .iframe-container {
          padding-bottom: 75%;
        }
      }

      @media (min-width: 768px) {
        .grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
        }
      }

      .summary p strong {
        color: #007bff;
        font-size: 1.2em;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <header class="header">
        <h1>๐Ÿ† FineWeb2-C Leaderboard</h1>
        <p>
          <em
            >Helping build better language models by rating educational quality
            of texts across different languages!</em
          >
        </p>

        <p>
          Contribute to the dataset:
          <a
            href="https://huggingface.co/spaces/data-is-better-together/fineweb-c"
            target="_blank"
          >
            here
          </a>
        </p>
        <p>
          Check out the current version of the dataset:
          <a
            href="https://huggingface.co/datasets/data-is-better-together/fineweb-c"
            target="_blank"
          >
            here
          </a>
        </p>
        <p>
          See this
          <a
            href="https://huggingface.co/blog/davanstrien/fineweb2-community"
            target="_blank"
            >blog post</a
          >
          for more information.
        </p>
      </header>

      <div class="summary" id="total-annotations">
        <div class="loading"></div>
        <span>Loading annotation data...</span>
      </div>

      <div class="grid">
        <div class="card">
          <div class="card-title">Language Leaderboard</div>
          <div class="iframe-container">
            <iframe
              src="https://huggingface.co/datasets/data-is-better-together/fineweb-c-progress/embed/sql-console/dhn8hw-"
              frameborder="0"
              width="100%"
              height="560px"
            ></iframe>
          </div>
        </div>

        <div class="card">
          <div class="card-title">User Leaderboard</div>
          <div class="iframe-container">
            <iframe
              src="https://huggingface.co/datasets/data-is-better-together/fineweb-c-progress/embed/sql-console/DJ2n1Z0"
              frameborder="0"
              width="100%"
              height="560px"
            ></iframe>
          </div>
        </div>
      </div>
    </div>

    <script>
      async function fetchTotalAnnotations() {
        try {
          const stats = { total: 0, languages: new Set(), users: new Set() };

          document.getElementById("total-annotations").innerHTML = `
            <div class="loading"></div>
            <p>Loading data...</p>
          `;

          const response = await fetch(
            "https://huggingface.co/datasets/data-is-better-together/fineweb-c-progress/resolve/main/argilla_progress.ndjson"
          );
          if (!response.ok)
            throw new Error(`HTTP error! status: ${response.status}`);

          const reader = response.body.getReader();
          const decoder = new TextDecoder();
          let buffer = "";

          while (true) {
            const { value, done } = await reader.read();
            if (done) break;

            buffer += decoder.decode(value, { stream: true });
            const lines = buffer.split("\n");
            buffer = lines.pop() || ""; // Keep the last incomplete line in buffer

            for (const line of lines) {
              if (!line.trim()) continue;
              try {
                const row = JSON.parse(line);
                const submissions = parseInt(row.submitted) || 0;
                stats.total += submissions;
                if (submissions > 0) {
                  stats.languages.add(row.language_dataset_name);
                  if (row.username) {
                    stats.users.add(row.username);
                  }
                }
              } catch (e) {
                console.error("Error parsing line:", e);
              }
            }

            // Update progress periodically
            document.getElementById("total-annotations").innerHTML = `
              <div class="loading"></div>
              <p>Processing... Current count: <strong>${stats.total.toLocaleString()}</strong></p>
            `;
          }

          // Process any remaining data in buffer
          if (buffer.trim()) {
            try {
              const row = JSON.parse(buffer);
              const submissions = parseInt(row.submitted) || 0;
              stats.total += submissions;
              if (submissions > 0) {
                stats.languages.add(row.language_dataset_name);
                if (row.username) {
                  stats.users.add(row.username);
                }
              }
            } catch (e) {
              console.error("Error parsing final line:", e);
            }
          }

          // Final update
          document.getElementById("total-annotations").innerHTML = `
            <p>Total annotations submitted: <strong>${stats.total.toLocaleString()}</strong></p>
            <p>Languages with annotations: <strong>${
              stats.languages.size
            }</strong></p>
            <p>Total contributors: <strong>${stats.users.size}</strong></p>
          `;
        } catch (error) {
          console.error("Error fetching total annotations:", error);
          document.getElementById("total-annotations").innerHTML = `
            <div class="error">
              Error loading annotations: ${error.message}
            </div>
          `;
        }
      }

      // Start fetching when the page loads
      if (document.readyState === "loading") {
        document.addEventListener("DOMContentLoaded", fetchTotalAnnotations);
      } else {
        fetchTotalAnnotations();
      }
    </script>
  </body>
</html>