This Machine Learning concept is the current idea: keep the same invariant visible across Intuition, Math, Code, Interactive Demo.
Machine Learning
Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit
Optimize a curriculum policy by ranking candidate tasks with learner state, graph bottlenecks, spacing, uncertainty, exploration, evaluation, and guardrail evidence.
Concept Structure
Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit
Start with the picture, metaphor, or geometric mechanism.
Make the objects explicit and connect them with notation.
Mirror the equations with runnable implementation details.
Manipulate the mechanism and watch the idea respond.
Learner Contract
What this page should let you do.
3 prerequisites listed; refresh them before leaning on the math or code.
Explain the mechanism, trace the main notation, and test one prediction in the live demo.
Read the intuition before the notation; the math should name a mechanism you already felt.
Follow this edge after making one prediction here; the next page should reuse the result, not restart the route.
Claim/source review status
Substantive review recorded
2/2 claims have bounded review metadata; still check caveats and source scope.Metadata-derived; review may be AI-assisted. Not a human certification.01
Intuition
Build the mental picture first so the rest of the page has something to attach to.
An autonomous learning lab decides what should happen in one session. Adaptive curriculum optimization decides what should happen across many learners, many sessions, and many possible next activities.
That changes the problem. A good curriculum policy must ask:
- what does this learner probably know right now?
- which concepts are prerequisites or bottlenecks?
- which task is likely to produce the most durable mastery gain?
- which old concept is due for retrieval practice?
- which candidate has uncertain value and deserves exploration?
- which task is too risky because a prerequisite, assessment, or safety gate is weak?
- how will we know whether the new policy is actually better than the old one?
The policy is not a magic recommender. It is an inspectable ranking system with a ledger. The learner should be able to ask why a task was selected. The builder should be able to audit which alternatives were rejected, whether the system explored enough, whether spacing was respected, and whether a holdout stream supports the change.
For Continuous Function, this matters because the product should not merely show beautiful explanations. It should improve the route a learner takes through concepts: when to repair, when to review, when to generate a visual lab, when to explore a new activity type, and when to hold back because the evidence is not good enough.
02
Math
Translate the story into symbols, assumptions, and a derivation you can inspect.
Let the learner state at time be a vector
where is estimated mastery for concept , is uncertainty, and is recency since a successful recall.
For a candidate activity , define a compact utility score:
The selected activity is
unless a guardrail blocks it.
Exploration can be represented as an upper-confidence bonus:
Spacing can be represented as a due score:
Evaluation should not use the same learner stream that trained the policy. With logged propensities and a candidate policy , an inverse-propensity estimate has the shape
The formula is not a deployment certificate. It is a reminder that policy improvement needs logged context, action, propensity, reward, and a separate evaluation lane.
03
Code
Keep the implementation aligned with the notation so the algorithm is legible.
tasks = [
{
"name": "repair prerequisite",
"gain": 0.18,
"spacing": 0.10,
"uncertainty": 0.06,
"difficulty": 0.32,
"risk": 0.10,
"prereq_gap": 0.00,
},
{
"name": "new visual lab",
"gain": 0.22,
"spacing": 0.00,
"uncertainty": 0.18,
"difficulty": 0.54,
"risk": 0.22,
"prereq_gap": 0.20,
},
{
"name": "retrieval review",
"gain": 0.12,
"spacing": 0.40,
"uncertainty": 0.04,
"difficulty": 0.22,
"risk": 0.04,
"prereq_gap": 0.00,
},
]
weights = {
"spacing": 0.55,
"uncertainty": 0.35,
"difficulty": 0.25,
"risk": 0.70,
"prereq_gap": 0.90,
}
def utility(task):
return (
task["gain"]
+ weights["spacing"] * task["spacing"]
+ weights["uncertainty"] * task["uncertainty"]
- weights["difficulty"] * task["difficulty"]
- weights["risk"] * task["risk"]
- weights["prereq_gap"] * task["prereq_gap"]
)
ranked = sorted(tasks, key=utility, reverse=True)
print(ranked[0]["name"], round(utility(ranked[0]), 3))
The witness chooses retrieval review because spacing is due and risk is low. If a prerequisite gap were active, the policy would hold back even if a new visual lab had a larger raw gain estimate.
04
Interactive Demo
Use direct manipulation to connect the explanation to a moving system.
Use the policy lab to predict the curriculum move before the proof unlocks:
- Objective: decide whether the policy should optimize mastery gain, spacing, exploration, or safety.
- Task ranking: decide which candidate should win the next-task slot.
- Exploration: decide whether uncertainty deserves an exploration budget.
- Evaluation: decide whether the policy can be trusted or needs holdout evidence.
Before reveal, exact task IDs, utility scores, learner-state estimates, exploration budget, selected task, guardrail reason, and holdout estimate stay locked. After reveal, inspect the policy audit and ask whether the selected move is justified by the evidence.
Live Concept Demo
Explore Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit
The stage is code-native and interactive. Use it to test the explanation against the mechanism.
Manipulate one control and predict the visible change.
Commit to what Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit should make visible before reading the result.
After The First Pass
Turn the concept into an inspected object.
Once the invariant is visible in the intuition, math, code, and demo, use these panels to inspect the mechanism visually, check source support, practice the idea, and attach a grounded research question.
Mechanism Storyboard
See the idea move before the page explains it
Optimize a curriculum policy by ranking candidate tasks with learner state, graph bottlenecks, spacing, uncertainty, exploration, evaluation, and guardrail evidence.
Start with the picture, metaphor, or geometric mechanism.
Before reading further, choose the kind of change Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit should make visible.
Visual Inquiry
Make the image answer a mathematical question
Optimize a curriculum policy by ranking candidate tasks with learner state, graph bottlenecks, spacing, uncertainty, exploration, evaluation, and guardrail evidence.
Which visible object should carry the first intuition?
Pick the cue that should make Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit easier to reason about before the page gives the answer.
Source Grounding
Canonical references for the mechanism on this page.
Primary support for using bandit-style activity selection in tutoring systems with exploration/exploitation and learning-progress estimates.
Open sourceSupport for contextual action selection, uncertainty-aware personalization, and offline evaluation from logged random traffic.
Open sourceSupport for tracking latent learner mastery from practice evidence.
Open sourceSupport for sequence-based learner modeling and curriculum-structure discovery from interaction histories.
Open sourceSupport for retrieval practice as an instructional activity, not only an assessment event.
Open sourceClaim Review
Optimize a curriculum policy by ranking candidate tasks with learner state, graph bottlenecks, spacing, uncertainty, exploration, evaluation, and guardrail evidence.
Claims without a substantive review badge still need exact source-support review.
clement-2015-bandits-tutoring, li-2010-contextual-bandit-news, corbett-1994-knowledge-tracing, piech-2015-deep-knowledge-tracing, roediger-2006-test-enhanced-learning
Use equations, runnable code, and demos to check whether the source support is operational.
The references support learner-state estimation, context-conditioned action selection, exploration/exploitation, and educational activity ranking by learning progress.
Sources: Multi-Armed Bandits for Intelligent Tutoring Systems, A Contextual-Bandit Approach to Personalized News Article Recommendation, Knowledge Tracing: Modeling the Acquisition of Procedural Knowledge, Deep Knowledge TracingThe page teaches a compact inspectable policy, not a guarantee of optimal teaching, causal impact, fairness, or production psychometric validity.A bounded review summary is present; still check caveats and exact reference scope.Checked tutoring bandit work for activity selection from learning progress under exploration/exploitation, contextual-bandit work for context-conditioned action choice and offline evaluation, and knowledge-tracing work for learner-state estimates from practice evidence. Oracle/GPT Pro review remains pending because the correct Chrome/Oracle lane was not attachable from this workstation.
Reviewer: codex-local-primary-reference-audit; reviewed 2026-07-05The references support retrieval practice, adaptive activity selection under learner constraints, and evaluation of logged policies before trusting a new policy.
Sources: Test-Enhanced Learning: Taking Memory Tests Improves Long-Term Retention, A Contextual-Bandit Approach to Personalized News Article Recommendation, Multi-Armed Bandits for Intelligent Tutoring SystemsThe holdout calculation is a teaching witness with known logging propensities; it is not a complete causal experiment, fairness audit, or deployment approval.A bounded review summary is present; still check caveats and exact reference scope.Checked retrieval-practice evidence for tests as learning events, contextual-bandit work for logged-policy/offline-evaluation framing, and tutoring-bandit work for limited time/motivation constraints. The local demo exposes these as distinct policy-audit lanes instead of one generic ranking score.
Reviewer: codex-local-primary-reference-audit; reviewed 2026-07-05Source support candidates
paper 2015Multi-Armed Bandits for Intelligent Tutoring SystemsPrimary support for using bandit-style activity selection in tutoring systems with exploration/exploitation and learning-progress estimates.
paper 2010A Contextual-Bandit Approach to Personalized News Article RecommendationSupport for contextual action selection, uncertainty-aware personalization, and offline evaluation from logged random traffic.
paper 1994Knowledge Tracing: Modeling the Acquisition of Procedural KnowledgeSupport for tracking latent learner mastery from practice evidence.
paper 2015Deep Knowledge TracingSupport for sequence-based learner modeling and curriculum-structure discovery from interaction histories.
Practice Loop
Try the idea before it explains itself
Optimize a curriculum policy by ranking candidate tasks with learner state, graph bottlenecks, spacing, uncertainty, exploration, evaluation, and guardrail evidence.
Before touching the demo, predict one visible change that should happen in Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
A concrete answer is on the canvas.
The answer names why the claim should hold.
It touches the page context or a neighboring idea.
Research Room
Attach the question to a claim, equation, code, or demo
Pick the concept, equation, source, runnable code, claim, misconception, or demo state before asking for help. The handoff keeps that page item in context.Open the draft below to save one note and next action in this browser.
Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit
What is the smallest example that makes Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit click without losing the math?
Local action draftNo local draft saved yetExpand only when ready to capture one local next action
This draft stays in this browser, attached to the selected learning item.
- References to inspect: attached references on this page.
- Definition, prerequisite, and contrast concept links
- The equation or runnable code that makes the concept operational
- One demo state that shows the invariant instead of a slogan
- The learner can state the mechanism in their own words
- The learner can name the prerequisite that would repair confusion
- The learner can predict how the mechanism changes under one perturbation
I am working in Continuous Function's research reading room. Object: concept - Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit Selected item key: recorded for copy. Context: Machine Learning Page anchor: recorded for copy. Open question: What is the smallest example that makes Adaptive Curriculum Optimization: Policy, Utility, Exploration, Audit click without losing the math? Evidence to inspect: - References to inspect: attached references on this page. - Definition, prerequisite, and contrast concept links - The equation or runnable code that makes the concept operational - One demo state that shows the invariant instead of a slogan What would resolve this: - The learner can state the mechanism in their own words - The learner can name the prerequisite that would repair confusion - The learner can predict how the mechanism changes under one perturbation Answer as a careful research tutor: stay source-grounded, separate verified evidence from assumptions, name the relevant math objects, and end with one next action.
concept/concept-notebook/machine-learning/adaptive-curriculum-optimization
concept:machine-learning/adaptive-curriculum-optimization