Spaces:
Sleeping
Sleeping
File size: 25,898 Bytes
a81861d | 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 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 | /* ============================================================
Text Vectorization Lab — frontend logic
Talks to the real Flask/sklearn/gensim backend in app.py and
animates the response stage by stage along each pipeline tape.
============================================================ */
(() => {
"use strict";
const PALETTE = {
amber: "242,169,59",
teal: "52,214,184",
pink: "239,93,168",
violet: "155,140,242",
};
// ---------------------------------------------------------- utilities
const $ = (sel, root = document) => root.querySelector(sel);
const $$ = (sel, root = document) => Array.from(root.querySelectorAll(sel));
function escapeHtml(str) {
return String(str)
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """);
}
function formatNum(v) {
if (typeof v !== "number") return escapeHtml(v);
if (Number.isInteger(v)) return String(v);
return v.toFixed(3).replace(/0+$/, "").replace(/\.$/, ".0");
}
function heat(colorKey, v, max) {
if (!v || v <= 0) return "transparent";
const rgb = PALETTE[colorKey] || PALETTE.teal;
const alpha = max > 0 ? 0.16 + 0.55 * (v / max) : 0.2;
return `rgba(${rgb}, ${alpha.toFixed(2)})`;
}
function chipList(items, colorClass = "", delayStep = 0.04) {
return `<div class="chip-row">${items
.map(
(t, i) =>
`<span class="chip ${colorClass}" style="animation-delay:${(i * delayStep).toFixed(2)}s">${escapeHtml(t)}</span>`
)
.join("")}</div>`;
}
function matrixTable(rowLabels, colLabels, matrix, opts = {}) {
let max = 0;
matrix.forEach((row) => row.forEach((v) => { if (typeof v === "number" && v > max) max = v; }));
let html = `<div class="table-wrap"><table class="matrix"><thead><tr><th>${escapeHtml(opts.corner || "")}</th>`;
colLabels.forEach((c) => (html += `<th>${escapeHtml(c)}</th>`));
html += "</tr></thead><tbody>";
matrix.forEach((row, ri) => {
html += `<tr><td class="row-head">${escapeHtml(rowLabels[ri])}</td>`;
row.forEach((v, ci) => {
const idx = ri * row.length + ci;
const bg = opts.heat ? heat(opts.heat, v, max) : "transparent";
html += `<td><span class="cell" style="animation-delay:${(idx * 0.018).toFixed(2)}s"><span class="cell-fill" style="background:${bg}">${formatNum(v)}</span></span></td>`;
});
html += "</tr>";
});
html += "</tbody></table></div>";
return html;
}
function kvList(pairs, colorClass) {
return `<div class="kv-list">${pairs
.map(([k, v]) => `<div class="kv-row"><span class="k">${escapeHtml(k)}</span><span class="v" style="${colorClass ? `color: rgb(${PALETTE[colorClass]})` : ""}">${typeof v === "number" ? formatNum(v) : escapeHtml(v)}</span></div>`)
.join("")}</div>`;
}
// ---------------------------------------------------------- tape control
function resetTape(tape) {
$$(".tape-stage", tape).forEach((s) => s.classList.remove("done", "current"));
}
function setTapeStage(tape, stageIndex) {
$$(".tape-stage", tape).forEach((s) => {
const idx = Number(s.dataset.stage);
s.classList.remove("done", "current");
if (idx < stageIndex) s.classList.add("done");
else if (idx === stageIndex) s.classList.add("current");
});
}
// ---------------------------------------------------------- sequential reveal
function reveal(containerId, tapeId, items) {
const container = document.getElementById(containerId);
const tape = document.getElementById(tapeId);
container.innerHTML = "";
resetTape(tape);
items.forEach((item, i) => {
setTimeout(() => {
setTapeStage(tape, item.stage);
const el = document.createElement("div");
el.className = "step";
el.innerHTML = `<div class="step-label">${escapeHtml(item.label)}</div><div class="step-body">${item.html}</div>`;
container.appendChild(el);
requestAnimationFrame(() => el.classList.add("show"));
}, i * 480);
});
if (items.length) {
setTimeout(() => setTapeStage(tape, items[items.length - 1].stage), items.length * 480);
}
}
function errorBlock(msg) {
return `<div class="callout warn"><strong>Backend error —</strong> ${escapeHtml(msg)}</div>`;
}
function linesFromTextarea(id) {
return $("#" + id).value.split("\n").map((s) => s.trim()).filter(Boolean);
}
async function postJSON(url, body) {
const res = await fetch(url, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(body || {}),
});
if (!res.ok) {
const detail = await res.json().catch(() => ({}));
throw new Error(detail.error || `Request to ${url} failed (${res.status})`);
}
return res.json();
}
function withLoading(btn, fn) {
return async (...args) => {
if (btn.disabled) return;
const originalHtml = btn.innerHTML;
btn.disabled = true;
btn.innerHTML = `<span class="spinner"></span> Running…`;
try {
await fn(...args);
} catch (err) {
console.error(err);
throw err;
} finally {
btn.disabled = false;
btn.innerHTML = originalHtml;
}
};
}
// ============================================================
// 1. ONE-HOT ENCODING
// ============================================================
async function runOnehot() {
const corpus = linesFromTextarea("onehot-corpus");
let data;
try {
data = await postJSON("/api/onehot", { corpus });
} catch (err) {
$("#out-onehot").innerHTML = errorBlock(err.message);
return;
}
const vocab = data.vocabulary;
const identityRows = vocab.map((w) => vocab.map((c) => (data.vectors[w][vocab.indexOf(c)] ? 1 : 0)));
const sentenceHtml = data.sentences
.map(
(s) => `<div style="margin-bottom:10px;">
<div style="color:var(--text-1); margin-bottom:6px;">“${escapeHtml(s.sentence)}”</div>
${chipList(
s.tokens.map((t, i) => `${t} → [${s.vectors[i].join(",")}]`),
"teal"
)}
</div>`
)
.join("");
reveal("out-onehot", "tape-onehot", [
{
stage: 0,
label: "Raw sentences",
html: `<div class="chip-row">${corpus.map((c) => `<span class="chip muted">"${escapeHtml(c)}"</span>`).join("")}</div>`,
},
{
stage: 1,
label: "Tokenize each sentence",
html: data.sentences
.map((s) => `<div style="margin-bottom:8px;">${chipList(s.tokens, "amber")}</div>`)
.join(""),
},
{
stage: 2,
label: `Build vocabulary — ${vocab.length} unique words`,
html:
chipList(vocab.map((w, i) => `${i}: ${w}`), "teal") +
`<div class="callout" style="margin-top:12px;">Vector length will equal the vocabulary size: every word vector here is <strong>${vocab.length}</strong>-dimensional.</div>`,
},
{
stage: 3,
label: "One-hot vectors (identity matrix over the vocabulary)",
html:
matrixTable(vocab, vocab, identityRows, { heat: "amber", corner: "word \\ index" }) +
`<div style="margin-top:14px;">${sentenceHtml}</div>`,
},
{
stage: 4,
label: "Cross-check with sklearn's OneHotEncoder",
html:
matrixTable(
data.sklearnCheck.inputWords.map((w, i) => `${w} (#${i})`),
data.sklearnCheck.categories,
data.sklearnCheck.matrix,
{ heat: "violet", corner: "token" }
) +
`<div class="callout warn" style="margin-top:14px;"><strong>Two real limitations:</strong> the vector size grows with every new word in the vocabulary, and a one-hot vector can't tell you that "cat" and "dog" are more alike than "cat" and "umbrella" — there's no notion of relationship or context.</div>`,
},
]);
}
// ============================================================
// 2. COUNT VECTORIZER
// ============================================================
async function runCount() {
const corpus = linesFromTextarea("count-corpus");
const stopWords = $("#count-stopwords").checked;
const maxFeatures = $("#count-maxfeatures").value || null;
const newDoc = $("#count-newdoc").value.trim();
let data;
try {
data = await postJSON("/api/count-vectorizer", { corpus, stopWords, maxFeatures, newDoc });
} catch (err) {
$("#out-count").innerHTML = errorBlock(err.message);
return;
}
const rowLabels = corpus.map((_, i) => `Doc ${i + 1}`);
const items = [
{
stage: 0,
label: "Raw corpus",
html: `<div class="chip-row">${corpus.map((c) => `<span class="chip muted">"${escapeHtml(c)}"</span>`).join("")}</div>`,
},
{
stage: 1,
label: "Tokenize every document",
html: data.tokenizedDocs
.map((toks, i) => `<div style="margin-bottom:8px;"><span class="card-note">Doc ${i + 1}:</span> ${chipList(toks, "amber")}</div>`)
.join(""),
},
{
stage: 2,
label: `CountVectorizer.fit() → vocabulary (${data.vocabulary.length} terms)`,
html: chipList(data.vocabulary, "teal") +
(data.settings.stopWords ? `<div class="callout" style="margin-top:10px;">English stop words removed before fitting.</div>` : "") +
(data.settings.maxFeatures ? `<div class="callout" style="margin-top:10px;">Limited to the top <strong>${data.settings.maxFeatures}</strong> most frequent terms.</div>` : ""),
},
{
stage: 3,
label: "Document–term count matrix",
html: matrixTable(rowLabels, data.vocabulary, data.matrix, { heat: "teal", corner: "" }),
},
];
if (data.newDocResult) {
items.push({
stage: 4,
label: "Transform a brand-new document with the fitted vocabulary",
html:
`<div class="card-note" style="margin-bottom:8px;">“${escapeHtml(data.newDocResult.doc)}”</div>` +
matrixTable(["New doc"], data.vocabulary, [data.newDocResult.vector], { heat: "pink" }) +
`<div class="callout" style="margin-top:10px;">Any word here that wasn't in the original vocabulary is simply ignored — <code>CountVectorizer.transform()</code> never grows the vocabulary after <code>fit()</code>.</div>`,
});
} else {
items.push({
stage: 4,
label: "Transform a new document",
html: `<div class="empty-hint">Type a sentence into “New document to transform” above and run again to see <code>.transform()</code> applied to text the vectorizer never saw during <code>.fit()</code>.</div>`,
});
}
reveal("out-count", "tape-count", items);
}
// ============================================================
// 3. BAG OF WORDS
// ============================================================
async function runBow() {
const corpus = linesFromTextarea("bow-corpus");
let data;
try {
data = await postJSON("/api/bow", { corpus });
} catch (err) {
$("#out-bow").innerHTML = errorBlock(err.message);
return;
}
const rowLabels = corpus.map((_, i) => `Doc ${i + 1}`);
reveal("out-bow", "tape-bow", [
{
stage: 0,
label: "Raw corpus",
html: `<div class="chip-row">${corpus.map((c) => `<span class="chip muted">"${escapeHtml(c)}"</span>`).join("")}</div>`,
},
{
stage: 1,
label: "Tokenize",
html: data.tokenizedDocs
.map((toks, i) => `<div style="margin-bottom:8px;"><span class="card-note">Doc ${i + 1}:</span> ${chipList(toks, "amber")}</div>`)
.join(""),
},
{
stage: 2,
label: `Build the bag — ${data.vocabulary.length} unique words across the corpus`,
html: chipList(data.vocabulary, "teal"),
},
{
stage: 3,
label: "Bag-of-Words frequency matrix (hand-rolled counter)",
html: matrixTable(rowLabels, data.vocabulary, data.matrix, { heat: "teal" }),
},
{
stage: 4,
label: "Binary BoW — presence (1) vs. absence (0), not raw counts",
html: matrixTable(rowLabels, data.binaryVocabulary, data.binaryMatrix, { heat: "amber" }),
},
{
stage: 5,
label: "Cosine similarity between documents, derived from the BoW vectors",
html:
matrixTable(rowLabels, rowLabels, data.cosineSimilarity, { heat: "pink" }) +
`<div class="callout" style="margin-top:12px;">1.0 means identical word-frequency profiles; 0 means no shared vocabulary at all. Documents that share more frequent words end up closer together.</div>`,
},
]);
}
// ============================================================
// 4. N-GRAMS
// ============================================================
async function runNgrams() {
const sentence = $("#ngrams-sentence").value.trim();
const corpus = linesFromTextarea("ngrams-corpus");
let data;
try {
data = await postJSON("/api/ngrams", { sentence, corpus });
} catch (err) {
$("#out-ngrams").innerHTML = errorBlock(err.message);
return;
}
const rowLabels = data.corpus.map((_, i) => `Doc ${i + 1}`);
const m = data.ngramMatrices;
reveal("out-ngrams", "tape-ngrams", [
{
stage: 0,
label: "Sentence",
html: `<div class="chip-row"><span class="chip muted">"${escapeHtml(data.sentence)}"</span></div>`,
},
{
stage: 1,
label: "Unigrams (N=1) — identical to plain tokenization",
html: chipList(data.manual.unigrams, "teal"),
},
{
stage: 2,
label: "Bigrams (N=2) — consecutive word pairs",
html: chipList(data.manual.bigrams, "amber"),
},
{
stage: 3,
label: "Trigrams (N=3) — consecutive word triples",
html: chipList(data.manual.trigrams, "pink"),
},
{
stage: 4,
label: "N-gram document–term matrices over the corpus",
html: `
<div class="card-note" style="margin-bottom:6px;">${m.unigrams.label} — ${m.unigrams.vocabulary.length} terms</div>
${matrixTable(rowLabels, m.unigrams.vocabulary, m.unigrams.matrix, { heat: "teal" })}
<div class="card-note" style="margin:16px 0 6px;">${m.bigrams.label} — ${m.bigrams.vocabulary.length} terms</div>
${matrixTable(rowLabels, m.bigrams.vocabulary, m.bigrams.matrix, { heat: "amber" })}
<div class="card-note" style="margin:16px 0 6px;">${m.uni_bi.label} — ${m.uni_bi.vocabulary.length} terms</div>
${matrixTable(rowLabels, m.uni_bi.vocabulary, m.uni_bi.matrix, { heat: "pink" })}
<div class="callout" style="margin-top:14px;">Character-level bigrams+trigrams (<code>analyzer='char_wb'</code>) on the same corpus produce <strong>${data.charLevel.vocabularySize}</strong> features. Sample: ${data.charLevel.sample.map((s) => `<code>"${escapeHtml(s)}"</code>`).join(", ")} …</div>
`,
},
]);
}
// ============================================================
// 5. TF-IDF
// ============================================================
async function runTfidf() {
const corpus = linesFromTextarea("tfidf-corpus");
let data;
try {
data = await postJSON("/api/tfidf", { corpus });
} catch (err) {
$("#out-tfidf").innerHTML = errorBlock(err.message);
return;
}
const rowLabels = corpus.map((_, i) => `Doc ${i + 1}`);
const tfHtml = data.manualPerDoc
.map(
(d, i) => `<div style="margin-bottom:14px;">
<div class="card-note" style="margin-bottom:6px;">Doc ${i + 1}: “${escapeHtml(d.doc)}”</div>
${kvList(Object.entries(d.tf), "teal")}
</div>`
)
.join("");
const idfHtml = kvList(Object.entries(data.idf), "amber");
const tfidfHtml = data.manualPerDoc
.map(
(d, i) => `<div style="margin-bottom:14px;">
<div class="card-note" style="margin-bottom:6px;">Doc ${i + 1}: “${escapeHtml(d.doc)}”</div>
${kvList(Object.entries(d.tfidf), "pink")}
</div>`
)
.join("");
const topWordsHtml = data.topWords
.map(
(d) => `<div style="margin-bottom:10px;">
<div class="card-note" style="margin-bottom:6px;">“${escapeHtml(d.doc)}”</div>
${chipList(d.top.map((t) => `${t.word} · ${t.score}`), "amber")}
</div>`
)
.join("");
reveal("out-tfidf", "tape-tfidf", [
{
stage: 0,
label: "Raw corpus",
html: `<div class="chip-row">${corpus.map((c) => `<span class="chip muted">"${escapeHtml(c)}"</span>`).join("")}</div>`,
},
{ stage: 1, label: "Term Frequency — count(t, d) / total words in d", html: `<div class="two-col">${tfHtml}</div>` },
{ stage: 2, label: "Inverse Document Frequency — log(N / (1 + df(t))) + 1, across the whole corpus", html: idfHtml },
{ stage: 3, label: "TF × IDF, computed by hand per document (non-zero terms only)", html: `<div class="two-col">${tfidfHtml}</div>` },
{
stage: 4,
label: "scikit-learn's TfidfVectorizer, for comparison",
html: matrixTable(rowLabels, data.sklearn.vocabulary, data.sklearn.matrix, { heat: "violet" }) +
`<div class="callout" style="margin-top:10px;">sklearn additionally L2-normalizes each row, so the exact numbers differ slightly from the hand-rolled version above — the ranking of important words matches.</div>`,
},
{ stage: 5, label: "Top 3 highest-weighted words per document", html: topWordsHtml },
]);
}
// ============================================================
// 6. WORD EMBEDDINGS
// ============================================================
function renderScatter(points) {
const w = 560, h = 340, pad = 40;
if (!points.length) return `<div class="empty-hint">Not enough plottable words.</div>`;
const xs = points.map((p) => p.x), ys = points.map((p) => p.y);
const minX = Math.min(...xs), maxX = Math.max(...xs);
const minY = Math.min(...ys), maxY = Math.max(...ys);
const spanX = maxX - minX || 1, spanY = maxY - minY || 1;
const colors = [PALETTE.amber, PALETTE.teal, PALETTE.pink, PALETTE.violet];
const sx = (x) => pad + ((x - minX) / spanX) * (w - 2 * pad);
const sy = (y) => h - pad - ((y - minY) / spanY) * (h - 2 * pad);
let svg = `<svg viewBox="0 0 ${w} ${h}" width="100%" height="${h}" xmlns="http://www.w3.org/2000/svg">`;
svg += `<line x1="${pad}" y1="${h / 2}" x2="${w - pad}" y2="${h / 2}" stroke="#283149" stroke-dasharray="4 4"/>`;
svg += `<line x1="${w / 2}" y1="${pad}" x2="${w / 2}" y2="${h - pad}" stroke="#283149" stroke-dasharray="4 4"/>`;
points.forEach((p, i) => {
const cx = sx(p.x), cy = sy(p.y);
const c = colors[i % colors.length];
svg += `<circle cx="${cx}" cy="${cy}" r="6" fill="rgba(${c},0.9)" stroke="#0a0d13" stroke-width="1.5">
<animate attributeName="r" from="0" to="6" dur="0.4s" begin="${i * 0.08}s" fill="freeze"/>
</circle>`;
svg += `<text x="${cx + 9}" y="${cy + 4}" font-size="11.5" fill="#eef1f7">${escapeHtml(p.word)}</text>`;
});
svg += `</svg>`;
return `<div class="scatter-wrap">${svg}</div><div class="legend"><span>PCA reduces the 50-dimensional Word2Vec space to 2D so it can be drawn — distance and direction on this plot are only an approximation of similarity in the real, high-dimensional space.</span></div>`;
}
async function runEmbeddings() {
const sentences = linesFromTextarea("embed-sentences");
let data;
try {
data = await postJSON("/api/embeddings", { sentences });
} catch (err) {
$("#out-embeddings").innerHTML = errorBlock(err.message);
return;
}
const simRows = data.similarities.map((s) =>
s.error
? `<tr><td>${escapeHtml(s.pair.join(" ↔ "))}</td><td colspan="2" class="card-note">${escapeHtml(s.error)}</td></tr>`
: `<tr><td>${escapeHtml(s.pair.join(" ↔ "))}</td><td>${formatNum(s.skipgram)}</td><td>${formatNum(s.cbow)}</td></tr>`
);
const mostSimHtml = Object.entries(data.mostSimilar)
.map(
([word, sims]) => `<div style="margin-bottom:10px;">
<span class="card-note">${escapeHtml(word)} is most similar to:</span>
${chipList(sims.map((s) => `${s.word} · ${s.score}`), "teal")}
</div>`
)
.join("");
const items = [
{
stage: 0,
label: `Training sentences (tokenized) — vocabulary of ${data.vocabSize} words`,
html: chipList(data.sentences, "muted", 0.03),
},
{
stage: 1,
label: `Train Word2Vec (Skip-gram & CBOW) — finished in ${data.trainSeconds}s`,
html: data.sampleWord
? `<div class="card-note" style="margin-bottom:6px;">First 10 of 50 dimensions for “${escapeHtml(data.sampleWord)}”:</div>
<div class="formula">[ ${data.sampleVector.map(formatNum).join(", ")}, … ]</div>`
: `<div class="empty-hint">No vocabulary produced — add a few more training sentences.</div>`,
},
{
stage: 2,
label: "Cosine similarity between word pairs, Skip-gram vs CBOW",
html: `<table class="compare-table"><thead><tr><th>pair</th><th>skip-gram</th><th>cbow</th></tr></thead><tbody>${simRows.join("")}</tbody></table>`,
},
{
stage: 3,
label: "Most similar words (Skip-gram model)",
html: mostSimHtml || `<div class="empty-hint">None of the probe words were found in this vocabulary — try adding "cat", "king" or "paris" to your sentences.</div>`,
},
{
stage: 4,
label: "All trained vectors, projected to 2D with PCA",
html: renderScatter(data.pcaPoints),
},
];
if (data.fastText && !data.fastText.error) {
items.push({
stage: 5,
label: "FastText: vectors for out-of-vocabulary words via character n-grams",
html: `
<div class="two-col">
<div>
<div class="card-note" style="margin-bottom:6px;">“${escapeHtml(data.fastText.inVocabWord)}” — seen during training</div>
<div class="formula">[ ${data.fastText.inVocabVector.map(formatNum).join(", ")}, … ]</div>
</div>
<div>
<div class="card-note" style="margin-bottom:6px;">“${escapeHtml(data.fastText.oovWord)}” — never seen during training</div>
<div class="formula">[ ${data.fastText.oovVector.map(formatNum).join(", ")}, … ]</div>
</div>
</div>
<div class="callout" style="margin-top:12px;"><strong>Why this works:</strong> ${escapeHtml(data.fastText.note)} Word2Vec, by contrast, would raise a <code>KeyError</code> for an unseen word — it has no concept of subword structure.</div>
`,
});
}
reveal("out-embeddings", "tape-embeddings", items);
}
// ============================================================
// Navigation + wiring
// ============================================================
const RUNNERS = {
onehot: runOnehot,
count: runCount,
bow: runBow,
ngrams: runNgrams,
tfidf: runTfidf,
embeddings: runEmbeddings,
};
const DEFAULT_TEXT = {
"onehot-corpus": "I love NLP\nNLP is fun\nI love coding",
"count-corpus": "I love NLP and I love Python\nNLP is amazing and fun\nPython is great for NLP",
"bow-corpus": "the cat sat on the mat\nthe dog sat on the log\nthe cat and the dog are friends",
"ngrams-sentence": "I love studying Natural Language Processing",
"ngrams-corpus": "I love NLP and machine learning\nmachine learning is part of AI\nNLP is a branch of AI",
"tfidf-corpus": "I love NLP and machine learning\nmachine learning is part of AI\nNLP is a branch of AI\nI love AI and deep learning",
"embed-sentences":
"the cat sat on the mat\nthe dog ran on the grass\ncats and dogs are pets\ni love my cat\ni love my dog\nking and queen are royalty\nman and woman are humans\nparis is the capital of france\nberlin is the capital of germany",
};
const autoRan = new Set();
function activateSection(target) {
$$(".section").forEach((s) => s.classList.toggle("active", s.id === `sec-${target}`));
$$(".nav-item").forEach((b) => b.classList.toggle("active", b.dataset.target === target));
window.scrollTo({ top: 0, behavior: "instant" in window ? "instant" : "auto" });
if (RUNNERS[target] && !autoRan.has(target)) {
autoRan.add(target);
RUNNERS[target]();
}
}
function wireNav() {
$$(".nav-item, .tech-card").forEach((btn) => {
btn.addEventListener("click", () => activateSection(btn.dataset.target));
});
}
function wireRunButtons() {
$$("[data-run]").forEach((btn) => {
const key = btn.dataset.run;
btn.addEventListener("click", withLoading(btn, RUNNERS[key]));
});
$$("[data-reset]").forEach((btn) => {
btn.addEventListener("click", () => {
const key = btn.dataset.reset;
Object.keys(DEFAULT_TEXT)
.filter((id) => id.startsWith(key + "-"))
.forEach((id) => {
const el = document.getElementById(id);
if (el) el.value = DEFAULT_TEXT[id];
});
if (key === "count") {
$("#count-maxfeatures").value = "";
$("#count-newdoc").value = "";
$("#count-stopwords").checked = false;
}
RUNNERS[key]();
});
});
}
document.addEventListener("DOMContentLoaded", () => {
wireNav();
wireRunButtons();
});
})();
|