Instructions to use Clementio/PLRS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Clementio/PLRS with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Clementio/PLRS", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 25,587 Bytes
a30026f | 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 | """
PLRS β Logic Engine
HuggingFace Space entry point.
Loads SAKT model weights from HF Hub (Clementio/PLRS).
Bundles the plrs package inline (until PyPI release).
"""
import json
import sys
from pathlib import Path
import numpy as np
import streamlit as st
import torch
ROOT = Path(__file__).resolve().parent
sys.path.insert(0, str(ROOT))
from plrs.curriculum.loader import load_dag
from plrs.pipeline import PLRSPipeline
# ββ Page config βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="PLRS Β· Logic Engine",
page_icon="π§ ",
layout="wide",
initial_sidebar_state="expanded",
)
# ββ Styling βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Syne:wght@400;600;700;800&display=swap');
html, body, [class*="css"] {
font-family: 'Syne', sans-serif;
background-color: #0a0e1a;
color: #c8d0e0;
}
#MainMenu, footer, header { visibility: hidden; }
.block-container { padding: 1.5rem 2rem 2rem 2rem; max-width: 1400px; }
[data-testid="stSidebar"] {
background: #0d1221;
border-right: 1px solid #1e2a40;
}
[data-testid="stSidebar"] .stMarkdown p {
font-family: 'DM Mono', monospace;
font-size: 0.75rem;
color: #4a5568;
letter-spacing: 0.08em;
}
.plrs-header {
display: flex; align-items: baseline; gap: 1rem;
padding-bottom: 1rem; border-bottom: 1px solid #1e2a40; margin-bottom: 1.5rem;
}
.plrs-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: #e8edf5; }
.plrs-sub {
font-family: 'DM Mono', monospace; font-size: 0.7rem; color: #3d8bcd;
letter-spacing: 0.12em; text-transform: uppercase; padding: 2px 8px;
border: 1px solid #1e3a5f; border-radius: 2px;
}
.stat-row { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.stat-card {
flex: 1; background: #0d1221; border: 1px solid #1e2a40;
border-radius: 4px; padding: 0.9rem 1rem; position: relative; overflow: hidden;
}
.stat-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0;
height: 2px; background: var(--accent, #3d8bcd);
}
.stat-card.green::before { --accent: #22c55e; }
.stat-card.amber::before { --accent: #f59e0b; }
.stat-card.red::before { --accent: #ef4444; }
.stat-card.blue::before { --accent: #3d8bcd; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: #4a5568; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.25rem; }
.stat-value { font-size: 1.6rem; font-weight: 700; color: #e8edf5; line-height: 1; }
.stat-sub { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: #4a5568; margin-top: 0.2rem; }
.rec-card {
background: #0d1221; border: 1px solid #1e2a40; border-radius: 4px;
padding: 0.9rem 1rem; margin-bottom: 0.5rem;
}
.rec-card.approved { border-left: 3px solid #22c55e; }
.rec-card.challenging { border-left: 3px solid #f59e0b; }
.rec-card.vetoed { border-left: 3px solid #ef4444; opacity: 0.6; }
.rec-title { font-size: 0.95rem; font-weight: 700; color: #e8edf5; margin-bottom: 0.15rem; }
.rec-meta { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: #4a5568; letter-spacing: 0.06em; }
.rec-reason { font-size: 0.75rem; color: #8899aa; margin-top: 0.35rem; padding-top: 0.35rem; border-top: 1px solid #1e2a40; }
.score-bar-wrap { background: #131a2e; border-radius: 2px; height: 3px; margin-top: 0.5rem; overflow: hidden; }
.score-bar { height: 100%; border-radius: 2px; background: var(--bar-color, #3d8bcd); }
.section-label {
font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.14em;
text-transform: uppercase; color: #4a5568; border-bottom: 1px solid #1e2a40;
padding-bottom: 0.4rem; margin-bottom: 0.75rem; margin-top: 1.25rem;
}
.unlock-chip {
display: inline-block; font-family: 'DM Mono', monospace; font-size: 0.65rem;
background: #131a2e; border: 1px solid #1e3a5f; border-radius: 2px;
padding: 2px 7px; margin: 2px 3px 2px 0; color: #3d8bcd;
}
.blocked-chip {
display: inline-block; font-family: 'DM Mono', monospace; font-size: 0.65rem;
background: #1a1010; border: 1px solid #3f1e1e; border-radius: 2px;
padding: 2px 7px; margin: 2px 3px 2px 0; color: #ef4444;
}
.stTabs [data-baseweb="tab-list"] { gap: 0; border-bottom: 1px solid #1e2a40; background: transparent; }
.stTabs [data-baseweb="tab"] { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em; color: #4a5568; padding: 0.5rem 1.25rem; border-bottom: 2px solid transparent; }
.stTabs [aria-selected="true"] { color: #3d8bcd; border-bottom-color: #3d8bcd; background: transparent; }
</style>
""", unsafe_allow_html=True)
# ββ Model + pipeline loading ββββββββββββββββββββββββββββββββββββββββββββββββββ
@st.cache_resource(show_spinner="Loading curriculum & model from HuggingFace...")
def load_pipelines():
from plrs.model.model_loader import load_model_from_hub
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
maps = ROOT / "data" / "knowledge_maps"
# Load model (tries decay, vanilla, then base)
model, model_type = load_model_from_hub(device=str(device))
pipelines = {}
for domain, fname in [("math", "math_dag.json"), ("cs", "cs_dag.json")]:
path = maps / fname
if path.exists():
curriculum = load_dag(path)
pipeline = PLRSPipeline(curriculum)
if model:
pipeline._model = model
pipelines[domain] = pipeline
return pipelines, model is not None, model_type
@st.cache_data
def load_skill_encoder():
import pandas as pd
path = ROOT / "data" / "skill_encoder_v2.csv"
if path.exists():
return pd.read_csv(path)
return None
pipelines, has_model, model_type = load_pipelines()
skill_encoder = load_skill_encoder()
# ββ Sidebar βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.sidebar:
st.markdown("### π§ PLRS")
st.markdown('<p style="font-family:\'DM Mono\',monospace;font-size:0.65rem;color:#4a5568;letter-spacing:0.1em;">LOGIC ENGINE v0.2.0</p>', unsafe_allow_html=True)
if has_model:
st.markdown(f'<p style="color:#22c55e;font-size:0.7rem;font-family:\'DM Mono\',monospace;">β {model_type} LOADED</p>', unsafe_allow_html=True)
else:
st.markdown('<p style="color:#f59e0b;font-size:0.7rem;font-family:\'DM Mono\',monospace;">β MANUAL MODE</p>', unsafe_allow_html=True)
st.markdown("---")
domain_label = st.selectbox("Curriculum", ["Nigerian SS Mathematics", "CS Fundamentals"])
domain_key = "math" if "Mathematics" in domain_label else "cs"
pipeline = pipelines[domain_key]
curriculum = pipeline.curriculum
st.markdown("---")
threshold = st.slider("Mastery threshold", 0.50, 0.90, 0.70, 0.05)
soft_threshold = st.slider("Challenging threshold", 0.20, 0.65, 0.50, 0.05)
top_n = st.slider("Top N recommendations", 3, 10, 5)
pipeline.threshold = threshold
pipeline.soft_threshold = soft_threshold
pipeline.top_n = top_n
st.markdown("---")
st.markdown(f'<p style="font-family:\'DM Mono\',monospace;font-size:0.65rem;color:#4a5568;">NODES: <span style="color:#e8edf5;">{curriculum.num_nodes}</span></p>', unsafe_allow_html=True)
st.markdown(f'<p style="font-family:\'DM Mono\',monospace;font-size:0.65rem;color:#4a5568;">EDGES: <span style="color:#e8edf5;">{curriculum.num_edges}</span></p>', unsafe_allow_html=True)
st.markdown(f'<p style="font-family:\'DM Mono\',monospace;font-size:0.65rem;color:#4a5568;">MODEL: <span style="color:#e8edf5;">{model_type}</span></p>', unsafe_allow_html=True)
st.markdown(f'<p style="font-family:\'DM Mono\',monospace;font-size:0.65rem;color:#4a5568;">VIOLATION RATE: <span style="color:#22c55e;">0.0%</span></p>', unsafe_allow_html=True)
st.markdown("---")
st.markdown('<p style="font-family:\'DM Mono\',monospace;font-size:0.6rem;color:#2a3a50;">github.com/clementina-tom/plrs</p>', unsafe_allow_html=True)
# ββ Header ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("""
<div class="plrs-header">
<span class="plrs-title">Logic Engine</span>
<span class="plrs-sub">Personalized Learning Β· Constraint-Aware Β· SAKT + DAG</span>
</div>
""", unsafe_allow_html=True)
# ββ Tabs ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
tab1, tab2, tab3 = st.tabs(["RECOMMENDATIONS", "WHAT-IF SIMULATOR", "CURRICULUM MAP"])
ACTIVITY_TO_DOMAIN = {
"math": {
"oucontent": "algebraic_expressions", "forumng": "statistics_basic",
"homepage": "whole_numbers", "subpage": "plane_shapes",
"resource": "indices", "url": "number_bases",
"ouwiki": "proportion_variation", "glossary": "algebraic_factorization",
"quiz": "quadratic_equations",
},
"cs": {
"oucontent": "programming_concepts", "forumng": "ethics_technology",
"homepage": "computer_basics", "subpage": "html_basics",
"resource": "networking_fundamentals", "url": "internet_basics",
"ouwiki": "cloud_basics", "glossary": "intro_databases",
"quiz": "python_basics",
},
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TAB 1 β RECOMMENDATIONS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with tab1:
col_left, col_right = st.columns([1, 1.4], gap="large")
with col_left:
st.markdown('<div class="section-label">Learner Profile</div>', unsafe_allow_html=True)
mode = st.radio("Input mode", ["Manual sliders", "Simulate student"], horizontal=True, label_visibility="collapsed")
mastery_scores = {}
if mode == "Manual sliders":
for node in curriculum.nodes:
label = curriculum.label(node)
level = curriculum.level(node)
val = st.slider(
f"{label}",
0.0, 1.0, 0.0, 0.05,
key=f"mastery_{node}",
help=f"Level: {level}"
)
mastery_scores[node] = val
else:
seq_len = st.slider("Sequence length", 10, 200, 50)
seed = st.number_input("Student seed", 1, 9999, 42)
np.random.seed(int(seed))
activity_types = list(ACTIVITY_TO_DOMAIN[domain_key].keys())
activity_probs = [0.38, 0.20, 0.15, 0.10, 0.06, 0.04, 0.03, 0.02, 0.02]
mapping = ACTIVITY_TO_DOMAIN[domain_key]
# Use skill_encoder to simulate skills that actually exist in the mapping
if skill_encoder is not None:
available_skills = skill_encoder["skill_id"].tolist()
sim_skills = np.random.choice(available_skills, seq_len).tolist()
else:
n_skills = 5736
sim_skills = np.random.randint(0, n_skills, seq_len).tolist()
sim_corrects = np.random.randint(0, 2, seq_len).tolist()
topic_scores: dict = {}
# Map simulated skills back to topics using the CSV work you did
for skill_id in sim_skills:
# If we have the encoder, find the activity type
if skill_encoder is not None:
row = skill_encoder[skill_encoder["skill_id"] == skill_id]
if not row.empty:
act = row["activity_type"].values[0]
topic_id = mapping.get(act)
if topic_id and topic_id in curriculum.nodes:
# Generate a mastery signal based on frequency/success
score = topic_scores.get(topic_id, 0.1)
# Every time they see this topic, increase mastery slightly
topic_scores[topic_id] = min(1.0, score + np.random.random() * 0.2)
else:
# Fallback to the old simple mapping if CSV is missing
act_idx = skill_id % 100
cumulative = 0
thresholds = [int(p * 100) for p in activity_probs]
thresholds[-1] += 100 - sum(thresholds)
act = activity_types[-1]
for a, thresh in zip(activity_types, thresholds):
cumulative += thresh
if act_idx < cumulative:
act = a
break
topic_id = mapping.get(act)
if topic_id and topic_id in curriculum.nodes:
topic_scores[topic_id] = 0.5 + np.random.random() * 0.4
mastery_scores = {n: 0.0 for n in curriculum.nodes}
mastery_scores.update(topic_scores)
st.success(f"Simulated {seq_len} interactions β {len(topic_scores)} topics mapped")
if topic_scores:
st.markdown('<div class="section-label">Mapped Mastery Signal</div>', unsafe_allow_html=True)
for tid, score in sorted(topic_scores.items(), key=lambda x: -x[1]):
pct = int(score * 100)
color = "#22c55e" if score >= threshold else "#f59e0b" if score >= soft_threshold else "#ef4444"
st.markdown(f"""
<div style="margin-bottom:6px;">
<div style="display:flex;justify-content:space-between;font-size:0.72rem;color:#8899aa;margin-bottom:2px;">
<span>{curriculum.label(tid)}</span>
<span style="font-family:'DM Mono',monospace;">{pct}%</span>
</div>
<div class="score-bar-wrap">
<div class="score-bar" style="width:{pct}%;--bar-color:{color};"></div>
</div>
</div>
""", unsafe_allow_html=True)
run = st.button("β‘ Generate Recommendations", type="primary", use_container_width=True)
with col_right:
if run or mode == "Simulate student":
# Enable cascading for simulation to ensure prerequisites are also "mastered"
is_sim = (mode == "Simulate student")
results = pipeline.recommend_from_mastery(mastery_scores, cascade=is_sim)
summary = results["mastery_summary"]
stats = results["stats"]
mastery_pct = int(summary["mastery_rate"] * 100)
vrate_pct = int(stats["prerequisite_violation_rate"] * 100)
st.markdown(f"""
<div class="stat-row">
<div class="stat-card blue">
<div class="stat-label">Mastered</div>
<div class="stat-value">{summary['mastered']}<span style="font-size:0.9rem;color:#4a5568;">/{summary['total_topics']}</span></div>
<div class="stat-sub">{mastery_pct}% rate</div>
</div>
<div class="stat-card green">
<div class="stat-label">Approved</div>
<div class="stat-value">{stats['approved_count']}</div>
<div class="stat-sub">ready to learn</div>
</div>
<div class="stat-card amber">
<div class="stat-label">Challenging</div>
<div class="stat-value">{stats['challenging_count']}</div>
<div class="stat-sub">partial prereqs</div>
</div>
<div class="stat-card red">
<div class="stat-label">Violation rate</div>
<div class="stat-value">{vrate_pct}<span style="font-size:0.9rem;color:#4a5568;">%</span></div>
<div class="stat-sub">blocked topics</div>
</div>
</div>
""", unsafe_allow_html=True)
if results["approved"]:
st.markdown('<div class="section-label">β
Approved Recommendations</div>', unsafe_allow_html=True)
for i, rec in enumerate(results["approved"]):
score_pct = int(rec["score"] * 100)
st.markdown(f"""
<div class="rec-card approved">
<div class="rec-title">{i+1}. {rec['topic_label']}</div>
<div class="rec-meta">score: {rec['score']:.3f} Β· mastery: {int(rec['mastery']*100)}% Β· unlocks: {rec['downstream_count']}</div>
<div class="rec-reason">{rec['reasoning']}</div>
<div class="score-bar-wrap"><div class="score-bar" style="width:{score_pct}%;--bar-color:#22c55e;"></div></div>
</div>
""", unsafe_allow_html=True)
else:
st.info("No approved topics β lower the mastery threshold or set some mastery levels.")
if results["challenging"]:
st.markdown('<div class="section-label">β οΈ Challenging</div>', unsafe_allow_html=True)
for rec in results["challenging"]:
score_pct = int(rec["score"] * 100)
unmet = ", ".join(rec["unmet_prerequisites"]) or "β"
st.markdown(f"""
<div class="rec-card challenging">
<div class="rec-title">{rec['topic_label']}</div>
<div class="rec-meta">score: {rec['score']:.3f} Β· strengthen: {unmet}</div>
<div class="rec-reason">{rec['reasoning']}</div>
<div class="score-bar-wrap"><div class="score-bar" style="width:{score_pct}%;--bar-color:#f59e0b;"></div></div>
</div>
""", unsafe_allow_html=True)
if results["vetoed"]:
with st.expander(f"β Vetoed topics ({stats['vetoed_count']} total β prerequisite check failed)"):
for rec in results["vetoed"]:
unmet = ", ".join(rec["unmet_prerequisites"]) or "β"
st.markdown(f"""
<div class="rec-card vetoed">
<div class="rec-title">{rec['topic_label']}</div>
<div class="rec-meta">blocked by: {unmet}</div>
</div>
""", unsafe_allow_html=True)
else:
st.markdown("""
<div style="height:280px;display:flex;align-items:center;justify-content:center;
border:1px dashed #1e2a40;border-radius:4px;color:#2a3a50;">
<div style="text-align:center;">
<div style="font-size:2rem;margin-bottom:0.5rem;">β‘</div>
<div style="font-family:'DM Mono',monospace;font-size:0.7rem;letter-spacing:0.1em;">
SET MASTERY LEVELS Β· THEN GENERATE
</div>
</div>
</div>
""", unsafe_allow_html=True)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TAB 2 β WHAT-IF SIMULATOR
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with tab2:
st.markdown('<div class="section-label">Prerequisite Impact Simulator</div>', unsafe_allow_html=True)
st.markdown('<p style="font-size:0.8rem;color:#8899aa;">Select any topic to see what it unlocks and what currently blocks it.</p>', unsafe_allow_html=True)
node_options = {curriculum.label(n): n for n in curriculum.nodes}
selected_label = st.selectbox("Select topic", list(node_options.keys()))
selected_id = node_options[selected_label]
wi = pipeline.what_if(selected_id)
col_a, col_b = st.columns(2, gap="large")
with col_a:
st.markdown('<div class="section-label">π What This Unlocks</div>', unsafe_allow_html=True)
if wi["direct_unlocks"]:
st.markdown("**Directly unlocks:**")
st.markdown("".join(f'<span class="unlock-chip">{u["label"]}</span>' for u in wi["direct_unlocks"]), unsafe_allow_html=True)
else:
st.markdown('<span style="color:#4a5568;font-size:0.8rem;">Leaf node β no further topics.</span>', unsafe_allow_html=True)
if wi["all_unlocks"]:
st.markdown(f"**All downstream ({wi['total_unlocked']}):**")
st.markdown("".join(f'<span class="unlock-chip">{u["label"]}</span>' for u in wi["all_unlocks"]), unsafe_allow_html=True)
st.markdown(f"""
<div class="stat-card blue" style="margin-top:1rem;max-width:180px;">
<div class="stat-label">Total Unlocked</div>
<div class="stat-value">{wi['total_unlocked']}</div>
</div>
""", unsafe_allow_html=True)
with col_b:
st.markdown('<div class="section-label">π What Blocks This</div>', unsafe_allow_html=True)
if wi["blocked_by"]:
st.markdown("**Prerequisites:**")
st.markdown("".join(f'<span class="blocked-chip">{b["label"]}</span>' for b in wi["blocked_by"]), unsafe_allow_html=True)
else:
st.markdown('<span style="color:#22c55e;font-size:0.8rem;font-family:\'DM Mono\',monospace;">Root topic β no prerequisites.</span>', unsafe_allow_html=True)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TAB 3 β CURRICULUM MAP
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with tab3:
st.markdown('<div class="section-label">Curriculum Knowledge Graph</div>', unsafe_allow_html=True)
col_info, col_table = st.columns([1, 2], gap="large")
with col_info:
roots = [n for n in curriculum.nodes if not curriculum.prerequisites(n)]
leaves = [n for n in curriculum.nodes if not curriculum.successors(n)]
st.markdown(f"""
<div class="stat-card blue" style="margin-bottom:0.75rem;">
<div class="stat-label">Domain</div>
<div style="font-size:0.85rem;font-weight:700;color:#e8edf5;">{curriculum.domain}</div>
</div>
<div class="stat-card green" style="margin-bottom:0.75rem;">
<div class="stat-label">Topics</div><div class="stat-value">{curriculum.num_nodes}</div>
</div>
<div class="stat-card amber">
<div class="stat-label">Prerequisite Edges</div><div class="stat-value">{curriculum.num_edges}</div>
</div>
""", unsafe_allow_html=True)
st.markdown('<div class="section-label">Root Topics</div>', unsafe_allow_html=True)
st.markdown("".join(f'<span class="unlock-chip">{curriculum.label(r)}</span>' for r in roots), unsafe_allow_html=True)
st.markdown('<div class="section-label">Leaf Topics</div>', unsafe_allow_html=True)
st.markdown("".join(f'<span class="blocked-chip">{curriculum.label(l)}</span>' for l in leaves), unsafe_allow_html=True)
with col_table:
import pandas as pd
st.markdown('<div class="section-label">All Topics</div>', unsafe_allow_html=True)
rows = []
for node in curriculum.nodes:
rows.append({
"Topic": curriculum.label(node),
"Level": curriculum.level(node),
"Prerequisites": len(curriculum.prerequisites(node)),
"Unlocks (direct)": len(curriculum.successors(node)),
"Total Downstream": len(curriculum.descendants(node)),
})
df = pd.DataFrame(rows).sort_values("Total Downstream", ascending=False)
st.dataframe(df, use_container_width=True, height=480, hide_index=True)
|