Spaces:
Sleeping
Sleeping
File size: 34,440 Bytes
1c6c43e 54cbbe8 1c6c43e 54cbbe8 1c6c43e 54cbbe8 1c6c43e 54cbbe8 1c6c43e | 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 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | """
TSM β Text Similarity Maker
Streamlit pipeline for building VOSviewer-compatible paper networks.
"""
import csv
import io
import json
import os
import tempfile
import uuid
from pathlib import Path
import numpy as np
import streamlit as st
# ββ page config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="TSM Text Similarity Maker",
page_icon="π¬",
layout="wide",
)
st.title("π¬ TSM β Text Similarity Maker")
st.header("Create a text similarity science map")
st.write("Generate embeddings of your documents' titles and abstracts β a numerical representation of their semantic content. Then use those embeddings to build a science map. Two map types are available: a text similarity network map, and an embedding space reduction map.")
st.markdown("Built by [Juan Pablo Bascur](https://jpbascur.com) β Problems? Contact [juanpablobascurcifuentes@gmail.com](mailto:juanpablobascurcifuentes@gmail.com)")
st.markdown("Source code: [github.com/jpbascur/text-similarity-maker](https://github.com/jpbascur/text-similarity-maker)")
# ββ helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def array_to_csv_bytes(arr: np.ndarray, ids: list[str] | None = None) -> bytes:
buf = io.StringIO()
if ids is not None:
for row_id, row in zip(ids, arr):
buf.write(row_id + "," + ",".join(f"{v:.8f}" for v in row) + "\n")
else:
np.savetxt(buf, arr, delimiter=",", fmt="%.8f")
return buf.getvalue().encode()
def csv_bytes_to_array(data: bytes) -> np.ndarray:
"""Parse an embeddings CSV. First column is always the paper ID and is dropped.
No header row is expected or supported."""
lines = [l for l in data.decode("utf-8").splitlines() if l.strip()]
if not lines:
raise ValueError("The embeddings file is empty.")
first_cells = lines[0].split(",")
try:
float(first_cells[1])
except (ValueError, IndexError):
raise ValueError(
"The embeddings file appears to have a header row. "
"This file must not have a header β the first row should be data."
)
rows = []
for line in lines:
cells = line.split(",")
rows.append([float(c) for c in cells[1:]])
arr = np.array(rows, dtype=np.float32)
if arr.shape[1] != 768:
raise ValueError(
f"Expected 768 embedding dimensions per row, got {arr.shape[1]}. "
"This file does not look like a SPECTER2 embeddings file."
)
return arr
def show_array_info(arr: np.ndarray, label: str = "Array"):
st.caption(f"{label}: {arr.shape[0]} papers Γ {arr.shape[1]} dimensions")
def parse_pubmed_export(text: str) -> list[dict]:
"""Parse a PubMed .txt or .nbib export into [{id, title, abstract}]."""
import re
records, current, current_tag = [], {}, None
for line in text.splitlines():
if re.match(r'^ER\s*-', line):
if current:
records.append(current)
current, current_tag = {}, None
continue
m = re.match(r'^([A-Z]+)\s*-\s+(.*)', line)
if m:
current_tag = m.group(1)
val = m.group(2).strip()
current[current_tag] = (current[current_tag] + " " + val) if current_tag in current else val
elif line.startswith(" ") and current_tag:
current[current_tag] += " " + line.strip()
elif not line.strip():
if current:
records.append(current)
current, current_tag = {}, None
if current:
records.append(current)
return [
{"id": r["PMID"].strip(), "title": r["TI"].strip(), "abstract": r.get("AB", "").strip()}
for r in records if "PMID" in r and "TI" in r
]
def parse_ris_export(text: str) -> list[dict]:
"""Parse a RIS (.ris) export into [{id, title, abstract}]."""
import re
records, current, current_tag = [], {}, None
for line in text.splitlines():
if re.match(r'^ER\s*-', line):
if current:
records.append(current)
current, current_tag = {}, None
continue
m = re.match(r'^([A-Z][A-Z0-9])\s+-\s+(.*)', line)
if m:
current_tag = m.group(1)
val = m.group(2).strip()
current[current_tag] = (current[current_tag] + " " + val) if current_tag in current else val
elif line.startswith(" ") and current_tag:
current[current_tag] += " " + line.strip()
elif not line.strip():
if current:
records.append(current)
current, current_tag = {}, None
if current:
records.append(current)
result = []
for i, r in enumerate(records):
id_ = r.get("ID") or r.get("AN") or r.get("UT") or r.get("DO") or str(i + 1)
title = r.get("TI") or r.get("T1", "")
abstract = r.get("AB") or r.get("N2", "")
if title:
result.append({"id": id_.strip(), "title": title.strip(), "abstract": abstract.strip()})
return result
def parse_bibtex_export(text: str) -> list[dict]:
"""Parse a BibTeX (.bib) export into [{id, title, abstract}]."""
import re
result = []
for entry in re.split(r'(?=@\w+\{)', text):
key_m = re.match(r'@\w+\{([^,\n]+),', entry)
if not key_m:
continue
key = key_m.group(1).strip()
def _field(name):
m = re.search(rf'\b{name}\s*=\s*\{{([^{{}}]*(?:\{{[^{{}}]*\}}[^{{}}]*)*)\}}', entry, re.IGNORECASE)
if not m:
m = re.search(rf'\b{name}\s*=\s*"([^"]*)"', entry, re.IGNORECASE)
if m:
return re.sub(r'\{([^{}]*)\}', r'\1', m.group(1)).strip()
return ""
title = _field("title")
abstract = _field("abstract")
if title:
result.append({"id": key, "title": title, "abstract": abstract})
return result
def save_upload(file_obj, state_key: str):
if file_obj is not None:
st.session_state[state_key] = (file_obj.name, file_obj.read())
# Session-unique ID for static file naming (avoids collisions between users)
if "session_id" not in st.session_state:
st.session_state["session_id"] = uuid.uuid4().hex
if "running" not in st.session_state:
st.session_state["running"] = False
_is_running = st.session_state["running"]
if _is_running:
st.warning("A job is already running in this session. Please wait for it to finish.")
try:
def _read_cgroup_mem():
"""Read container memory limits from cgroup (accurate inside Docker)."""
# Try cgroups v2 first
try:
limit = int(Path("/sys/fs/cgroup/memory.max").read_text().strip())
usage = int(Path("/sys/fs/cgroup/memory.current").read_text().strip())
return usage, limit
except Exception:
pass
# Fall back to cgroups v1
limit = int(Path("/sys/fs/cgroup/memory/memory.limit_in_bytes").read_text().strip())
usage = int(Path("/sys/fs/cgroup/memory/memory.usage_in_bytes").read_text().strip())
return usage, limit
_mem_used, _mem_limit = _read_cgroup_mem()
_mem_used_gb = _mem_used / 1024**3
_mem_total_gb = _mem_limit / 1024**3
_mem_free_gb = (_mem_limit - _mem_used) / 1024**3
_mem_pct = _mem_used / _mem_limit * 100
_mem_caption = (
f"Container memory: {_mem_used_gb:.1f} GB used / {_mem_total_gb:.1f} GB total β "
f"{_mem_free_gb:.1f} GB free ({100 - _mem_pct:.0f}% available). "
"This tool has limited memory shared across all users. "
"If memory is low, please wait for it to be released by another user."
)
except Exception:
_mem_caption = None
_STATIC_DIR = Path(__file__).parent / "static"
_STATIC_DIR.mkdir(exist_ok=True)
def _write_static_json(filename: str, data: dict) -> str:
"""Write a VOSviewer JSON to the static directory and return its public URL."""
path = _STATIC_DIR / filename
path.write_text(json.dumps(data), encoding="utf-8")
space_id = os.environ.get("SPACE_ID", "")
if space_id:
slug = space_id.replace("/", "-").lower()
return f"https://{slug}.hf.space/app/static/{filename}"
return f"http://localhost:8501/app/static/{filename}"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROOT β EMBEDDINGS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("Text to Embeddings", expanded=True):
st.subheader("Text to Embeddings")
st.caption("Encodes each paper into a numerical vector that captures its semantic meaning. Uses [SPECTER2](https://github.com/allenai/SPECTER2) with the proximity adapter, a transformer model optimized to generate embeddings of paper titles and abstracts such that semantically similar papers end up with similar embeddings.")
st.caption("Requirements: CSV columns: id, title, abstract. Avoid including papers without a title or abstract β they will produce poor-quality embeddings.")
save_upload(
st.file_uploader("Upload papers file", type=["csv"], key="s1_upload"),
"s1_file",
)
ignore_incomplete = st.checkbox("Ignore documents without title or abstract", value=True, key="s1_ignore_incomplete")
if "s1_file" in st.session_state and "step1_papers" not in st.session_state:
from pipeline.embed import load_papers
fname, raw = st.session_state["s1_file"]
suffix = Path(fname).suffix
with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as tmp:
tmp.write(raw)
tmp_path = Path(tmp.name)
try:
st.session_state["step1_papers"] = load_papers(tmp_path)
except Exception as e:
st.error(f"Could not load papers: {e}")
finally:
tmp_path.unlink(missing_ok=True)
if "step1_papers" in st.session_state:
st.caption(f"{len(st.session_state['step1_papers'])} papers loaded.")
col_run, col_fallback = st.columns([3, 2])
s1_run = col_run.button("Run Embeddings", key="run_embed",
disabled=_is_running or "step1_papers" not in st.session_state)
use_fallback = col_fallback.checkbox(
"Use fallback resources", key="use_fallback", value=False,
help=(
"By default, embeddings are computed on your GPU using WebGPU β fast and uses no server resources. "
"Check this to use the web server instead, which runs on CPU and is much slower. "
"Use this if your browser does not support WebGPU "
"(Chrome, Edge and Opera support it by default; Firefox and Safari need additional configuration)."
),
)
if _mem_caption:
st.caption(_mem_caption)
has_papers_to_run = "step1_papers" in st.session_state
if s1_run and has_papers_to_run:
papers = st.session_state["step1_papers"]
if ignore_incomplete:
papers = [p for p in papers if p.get("title", "").strip() and p.get("abstract", "").strip()]
if use_fallback:
from pipeline.embed import embed_papers
st.session_state["running"] = True
prog = st.progress(0, text="Loading SPECTER2 modelβ¦")
def _cb(cur, tot):
prog.progress(cur / tot, text=f"Encoding {cur}/{tot}β¦")
try:
embeddings = embed_papers(papers, progress_callback=_cb)
prog.progress(1.0, text="Done.")
st.session_state["step1_embeddings"] = embeddings
finally:
st.session_state["running"] = False
st.session_state["use_step1_net"] = True
st.session_state["use_step1_umap"] = True
st.session_state["use_step1_meta"] = True
st.session_state["use_step1_vos_map_meta"] = True
st.rerun()
else:
st.session_state["webgpu_papers"] = papers
st.session_state["webgpu_run"] = True
# WebGPU component (only shown when not using fallback)
if not use_fallback and has_papers_to_run:
from component import webgpu_embed
papers_for_gpu = st.session_state.get("webgpu_papers", [])
run_flag = st.session_state.get("webgpu_run", False)
try:
result = webgpu_embed(papers=papers_for_gpu, run=run_flag, key="webgpu_embedder")
if result is not None:
st.session_state["step1_embeddings"] = result
st.session_state["webgpu_run"] = False
st.session_state["use_step1_net"] = True
st.session_state["use_step1_umap"] = True
st.session_state["use_step1_meta"] = True
st.session_state["use_step1_vos_map_meta"] = True
st.rerun()
except RuntimeError as e:
if str(e) != "webgpu_not_supported":
st.error(f"Embedding error: {e}")
has_embed_dl = "step1_embeddings" in st.session_state
if has_embed_dl:
embeddings = st.session_state["step1_embeddings"]
papers = st.session_state["step1_papers"]
show_array_info(embeddings, "Embeddings ready")
embed_dl_data = array_to_csv_bytes(embeddings, ids=[p["id"] for p in papers])
else:
embed_dl_data = b""
st.download_button(
"Download embeddings (.csv)", embed_dl_data,
"embeddings.csv", mime="text/csv", key="dl_embed_csv",
disabled=not has_embed_dl,
)
with st.expander("Transform file to supported format", expanded=False):
st.caption("Converts reference exports to the CSV format the app needs. Supported formats:")
st.caption("**PubMed** (.txt, .nbib) β Send to β File β Format: PubMed \n**RIS** (.ris) β exported by Scopus, Web of Science, Zotero, Mendeley, EndNote \n**BibTeX** (.bib) β exported by Google Scholar, Zotero, most reference managers")
ref_file = st.file_uploader("Upload export file", type=["txt", "nbib", "ris", "bib"], key="ref_upload")
if ref_file:
try:
text = ref_file.read().decode("utf-8", errors="replace")
ext = Path(ref_file.name).suffix.lower()
if ext == ".bib":
papers_ref = parse_bibtex_export(text)
elif ext == ".ris":
papers_ref = parse_ris_export(text)
else:
papers_ref = parse_pubmed_export(text)
n_total = len(papers_ref)
n_abstract = sum(1 for p in papers_ref if p["abstract"])
st.caption(f"{n_total} papers found β {n_abstract} with abstracts, {n_total - n_abstract} without.")
if n_total > 0:
buf = io.StringIO()
w = csv.DictWriter(buf, fieldnames=["id", "title", "abstract"])
w.writeheader()
w.writerows(papers_ref)
csv_bytes = buf.getvalue().encode()
col_a, col_b = st.columns(2)
if col_a.button("Load into app", key="load_ref"):
st.session_state["s1_file"] = ("papers.csv", csv_bytes)
st.session_state.pop("step1_papers", None)
st.session_state.pop("step1_embeddings", None)
st.rerun()
col_b.download_button(
"Download as CSV", csv_bytes,
"papers.csv", mime="text/csv", key="dl_ref",
)
except Exception as e:
st.error(f"Could not parse file: {e}")
with st.expander("Don't have data? Try the demo data to start", expanded=False):
st.caption("500 sample papers to try the tool without your own data.")
demo_path = Path(__file__).parent / "sample_papers.csv"
demo_bytes = demo_path.read_bytes()
col_a, col_b = st.columns(2)
if col_a.button("Load demo data", key="load_demo"):
st.session_state["s1_file"] = ("sample_papers.csv", demo_bytes)
st.session_state.pop("step1_papers", None)
st.session_state.pop("step1_embeddings", None)
st.rerun()
col_b.download_button(
"Download demo data", demo_bytes,
"sample_papers.csv", mime="text/csv", key="dl_demo",
)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# BRANCH A β NETWORK MAP (VOSviewer)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("Text Similarity Network Map", expanded=False):
st.header("Text Similarity Network Map")
st.caption("Traditional science map. Builds a cosine similarity network and exports it to VOSviewer β emulating the citation-based approach used in bibliometrics.")
st.caption("Each document is connected to its most similar documents based on cosine similarity of their embeddings. The resulting network can be visualized and explored in VOSviewer.")
# ββ Create Network ββ
with st.container(border=True):
st.subheader("Create Network")
embed_src = None
has_embeddings = "step1_embeddings" in st.session_state
st.caption("Requirements: CSV with no header. First column: paper ID. Remaining 768 columns: embedding values. Generated by the Text to Embeddings step.")
use_above_net = st.checkbox("Use embeddings from Text to Embeddings", value=has_embeddings, key="use_step1_net", disabled=not has_embeddings)
if use_above_net and has_embeddings:
embed_src = st.session_state["step1_embeddings"]
save_upload(
st.file_uploader("Or upload an embeddings file (.csv)", type=["csv"], key="s2_upload"),
"s2_file",
)
if not use_above_net and "s2_file" in st.session_state:
try:
embed_src = csv_bytes_to_array(st.session_state["s2_file"][1])
except Exception as e:
st.error(f"Could not load file: {e}")
n_papers = len(embed_src) if embed_src is not None else None
c1, c2 = st.columns(2)
c1.caption("A document connects to its most similar documents. Higher values produce a denser network.")
top_k = c1.number_input(
"Maximum number of connections per document", min_value=1, max_value=n_papers - 1 if n_papers else None,
value=20, step=1, key="top_k",
)
c2.caption("Minimum similarity required to keep a connection. Higher values produce a sparser network.")
min_sim = c2.slider("Min similarity", 0.0, 1.0, 0.0, 0.01, key="min_sim")
s2_run = st.button("Build Network", key="run_network", disabled=_is_running or embed_src is None)
if s2_run and embed_src is not None:
from pipeline.network import build_edge_list
st.session_state["running"] = True
prog = st.progress(0, text="Building edge listβ¦")
def _cb(cur, tot):
prog.progress(cur / tot, text=f"Processing {cur}/{tot} papersβ¦")
try:
with st.spinner("Computing cosine similaritiesβ¦"):
edges = build_edge_list(embed_src, top_k=int(top_k), min_similarity=float(min_sim), progress_callback=_cb)
prog.progress(1.0, text="Done.")
st.session_state["step2_edges"] = edges
finally:
st.session_state["running"] = False
st.session_state["use_step2_edges"] = True
st.rerun()
has_edges_dl = "step2_edges" in st.session_state
if has_edges_dl:
edges = st.session_state["step2_edges"]
st.caption(f"{len(edges)} edges ready.")
edge_buf = io.StringIO()
ew = csv.writer(edge_buf)
ew.writerow(["source", "target", "weight"])
ew.writerows(edges)
edge_dl_data = edge_buf.getvalue().encode()
else:
edge_dl_data = b""
st.download_button(
"Download edge list (.csv)", edge_dl_data,
"network.csv", mime="text/csv", key="dl_network",
disabled=not has_edges_dl,
)
# ββ VOSviewer Export ββ
with st.container(border=True):
st.subheader("Visualize Network with VOSviewer")
edges_src = None
has_edges = "step2_edges" in st.session_state
st.caption("Requirements: CSV columns: source, target, weight. Generated by the Create Network step.")
use_above_edges = st.checkbox("Use edge list from Create Network", value=has_edges, key="use_step2_edges", disabled=not has_edges)
if use_above_edges and has_edges:
edges_src = st.session_state["step2_edges"]
save_upload(
st.file_uploader("Or upload an edge list CSV", type=["csv"], key="s3_edges_upload"),
"s3_edges_file",
)
if not use_above_edges and "s3_edges_file" in st.session_state:
_, raw = st.session_state["s3_edges_file"]
edges_src = [
(int(r["source"]), int(r["target"]), float(r["weight"]))
for r in csv.DictReader(io.StringIO(raw.decode()))
]
papers_src = None
has_papers = "step1_papers" in st.session_state
st.caption("Requirements: CSV columns: id, title. Your original papers CSV works here β it already has these columns.")
use_above_meta = st.checkbox("Use papers from Text to Embeddings", value=has_papers, key="use_step1_meta", disabled=not has_papers)
if use_above_meta and has_papers:
papers_src = st.session_state["step1_papers"]
save_upload(
st.file_uploader("Or upload a papers CSV (id, title)", type=["csv"], key="s3_meta_upload"),
"s3_meta_file",
)
if not use_above_meta and "s3_meta_file" in st.session_state:
_, raw = st.session_state["s3_meta_file"]
papers_src = list(csv.DictReader(io.StringIO(raw.decode())))
s3_run = st.button("Generate VOSviewer Map", key="run_vos",
disabled=(edges_src is None or papers_src is None))
if s3_run and edges_src is not None and papers_src is not None:
with st.spinner("Generating VOSviewer mapβ¦"):
items = []
for idx, paper in enumerate(papers_src):
items.append({
"id": str(idx + 1),
"label": paper.get("title", paper.get("id", str(idx + 1))),
"description": str(paper.get("id", "")),
})
items_no_cluster = [{**item, "cluster": 1} for item in items]
links = [
{"source_id": str(i + 1), "target_id": str(j + 1), "strength": round(w, 6)}
for i, j, w in edges_src
]
sid = st.session_state["session_id"]
vos_data_auto = {"network": {"items": items, "links": links}}
vos_data_fixed = {"network": {"items": items_no_cluster, "links": links}}
st.session_state["vos_json_auto"] = json.dumps(vos_data_auto, indent=2)
st.session_state["vos_json_fixed"] = json.dumps(vos_data_fixed, indent=2)
st.session_state["vos_json_url_auto"] = _write_static_json(f"{sid}_network_auto.json", vos_data_auto)
st.session_state["vos_json_url_fixed"] = _write_static_json(f"{sid}_network_fixed.json", vos_data_fixed)
st.session_state["vos_do_cluster"] = True
st.rerun()
has_vos_json = "vos_json_auto" in st.session_state
do_cluster = st.checkbox(
"Open and cluster (may be slow in dense networks)",
key="vos_do_cluster", value=True, disabled=not has_vos_json,
)
vos_dl_data = st.session_state["vos_json_auto" if do_cluster else "vos_json_fixed"].encode() if has_vos_json else b""
vos_url = (
f"https://app.vosviewer.com/?json={st.session_state['vos_json_url_auto' if do_cluster else 'vos_json_url_fixed']}&max_n_links=0"
if has_vos_json else "https://app.vosviewer.com/"
)
st.download_button(
"Download VOSviewer map (.json)", vos_dl_data,
"vosviewer_network.json", mime="application/json", key="dl_vos_json",
disabled=not has_vos_json,
)
st.link_button("πΊοΈ Open in VOSviewer Online", vos_url, type="primary", use_container_width=True, disabled=not has_vos_json)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# BRANCH B β EMBEDDING SPACE MAP (UMAP)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("Embedding Space Reduction Map", expanded=False):
st.header("Embedding Space Reduction Map")
st.caption("Alternative science map. Projects embeddings directly into 2D space with UMAP β more faithful to the semantic structure of the embeddings.")
st.caption("UMAP finds a 2D layout that preserves the high-dimensional relationships between documents as faithfully as possible. Similar documents end up close together; dissimilar ones far apart.")
# ββ UMAP ββ
with st.container(border=True):
st.subheader("Generate 2D Coordinates")
viz_embed_src = None
viz_embed_ids = []
has_embeddings_umap = "step1_embeddings" in st.session_state
st.caption("Requirements: CSV with no header. First column: paper ID. Remaining 768 columns: embedding values. Generated by the Text to Embeddings step.")
use_above_umap = st.checkbox("Use embeddings from Text to Embeddings", value=has_embeddings_umap, key="use_step1_umap", disabled=not has_embeddings_umap)
if use_above_umap and has_embeddings_umap:
viz_embed_src = st.session_state["step1_embeddings"]
viz_embed_ids = [p["id"] for p in st.session_state["step1_papers"]]
save_upload(
st.file_uploader("Or upload an embeddings file (.csv)", type=["csv"], key="viz_embed_upload"),
"viz_embed_file",
)
if not use_above_umap and "viz_embed_file" in st.session_state:
_, raw = st.session_state["viz_embed_file"]
try:
viz_embed_src = csv_bytes_to_array(raw)
viz_embed_ids = [l.split(",")[0] for l in raw.decode("utf-8").splitlines() if l.strip()]
except Exception as e:
st.error(f"Could not load file: {e}")
c1, c2 = st.columns(2)
c1.caption("Number of documents to consider at a time when preserving the embedding space structure. Low values keep local structure, high values keep global structure.")
umap_n_neighbors = c1.number_input(
"n_neighbors", min_value=2, value=15, step=1, key="umap_n_neighbors",
)
c2.caption("Minimum distance between documents in the 2D projection. Low values place similar documents into tight clumps, high values spread them more uniformly.")
umap_min_dist = c2.slider(
"min_dist", 0.0, 1.0, 0.1, 0.01, key="umap_min_dist",
)
if viz_embed_src is not None:
n = len(viz_embed_src)
estimate = "a few seconds" if n < 500 else "~30 seconds" if n < 2000 else "a few minutes"
st.caption(f"Expected time: {estimate} ({n} papers)")
sa_run = st.button("Run UMAP", key="run_umap", disabled=_is_running or viz_embed_src is None)
if sa_run and viz_embed_src is not None:
from pipeline.reduce import umap_reduce
st.session_state["running"] = True
try:
with st.spinner(f"Running UMAP on {n} papers⦠({estimate})"):
coords = umap_reduce(viz_embed_src, n_neighbors=int(umap_n_neighbors), min_dist=float(umap_min_dist))
st.session_state["viz_coords"] = coords
st.session_state["viz_ids"] = viz_embed_ids
finally:
st.session_state["running"] = False
st.session_state["use_viz_coords_vos"] = True
st.rerun()
has_coords_dl = "viz_coords" in st.session_state
if has_coords_dl:
st.caption(f"{len(st.session_state['viz_coords'])} points projected.")
coords_buf = io.StringIO()
coords_buf.write("id,x,y\n")
for pid, (x, y) in zip(st.session_state["viz_ids"], st.session_state["viz_coords"]):
coords_buf.write(f"{pid},{x:.6f},{y:.6f}\n")
coords_dl_data = coords_buf.getvalue().encode()
else:
coords_dl_data = b""
st.download_button(
"Download coords (.csv)", coords_dl_data,
"coords.csv", mime="text/csv", key="dl_coords",
disabled=not has_coords_dl,
)
# ββ VOSviewer Map Export ββ
with st.container(border=True):
st.subheader("Visualize with VOSviewer")
st.caption("Generates a VOSviewer map file with UMAP coordinates, so VOSviewer positions nodes according to the projection.")
vos_coords = None
vos_coord_ids = []
has_coords = "viz_coords" in st.session_state
st.caption("Requirements: CSV columns: id, x, y. Generated by the Generate 2D Coordinates step.")
use_above_vos_coords = st.checkbox("Use coordinates from Generate 2D Coordinates", value=has_coords, key="use_viz_coords_vos", disabled=not has_coords)
if use_above_vos_coords and has_coords:
vos_coords = st.session_state["viz_coords"]
vos_coord_ids = st.session_state["viz_ids"]
save_upload(
st.file_uploader("Or upload a coordinates CSV (id, x, y)", type=["csv"], key="vos_coords_upload"),
"vos_coords_file",
)
if not use_above_vos_coords and "vos_coords_file" in st.session_state:
_, raw = st.session_state["vos_coords_file"]
rows = list(csv.DictReader(io.StringIO(raw.decode())))
vos_coord_ids = [r["id"] for r in rows]
vos_coords = np.array([[float(r["x"]), float(r["y"])] for r in rows], dtype=np.float32)
vos_map_papers = None
has_papers_vos = "step1_papers" in st.session_state
st.caption("Requirements: CSV columns: id, title. Your original papers CSV works here β it already has these columns.")
use_above_vos_meta = st.checkbox("Use papers from Text to Embeddings", value=has_papers_vos, key="use_step1_vos_map_meta", disabled=not has_papers_vos)
if use_above_vos_meta and has_papers_vos:
vos_map_papers = st.session_state["step1_papers"]
save_upload(
st.file_uploader("Or upload a papers CSV (id, title)", type=["csv"], key="vos_map_meta_upload"),
"vos_map_meta_file",
)
if not use_above_vos_meta and "vos_map_meta_file" in st.session_state:
_, raw = st.session_state["vos_map_meta_file"]
vos_map_papers = list(csv.DictReader(io.StringIO(raw.decode())))
sc_run = st.button("Generate VOSviewer Map", key="run_vos_map",
disabled=(vos_coords is None or vos_map_papers is None))
if sc_run and vos_coords is not None and vos_map_papers is not None:
with st.spinner("Generating VOSviewer mapβ¦"):
coord_lookup = {pid: (float(x), float(y)) for pid, (x, y) in zip(vos_coord_ids, vos_coords)}
items = []
for idx, paper in enumerate(vos_map_papers):
pid = str(paper.get("id", idx + 1))
label = paper.get("title", pid)
x, y = coord_lookup.get(pid, (0.0, 0.0))
items.append({
"id": str(idx + 1),
"label": label,
"description": pid,
"x": round(x, 6),
"y": round(y, 6),
"cluster": 1,
})
vos_data = {"network": {"items": items, "links": []}}
sid = st.session_state["session_id"]
url = _write_static_json(f"{sid}_umap.json", vos_data)
st.session_state["viz_vos_json"] = json.dumps(vos_data, indent=2)
st.session_state["viz_vos_json_url"] = url
st.rerun()
has_viz_vos_json = "viz_vos_json" in st.session_state
viz_vos_dl_data = st.session_state["viz_vos_json"].encode() if has_viz_vos_json else b""
viz_vos_url = f"https://app.vosviewer.com/?json={st.session_state['viz_vos_json_url']}" if has_viz_vos_json else "https://app.vosviewer.com/"
st.download_button(
"Download VOSviewer map (.json)", viz_vos_dl_data,
"vosviewer_umap.json", mime="application/json", key="dl_viz_vos_json",
disabled=not has_viz_vos_json,
)
st.link_button("πΊοΈ Open in VOSviewer Online", viz_vos_url, type="primary", use_container_width=True, disabled=not has_viz_vos_json)
|