Skip to main content

Ordal

Domain-agnostic adaptive experimentation: experiment → measure → judge → propose.

Ordal (Old English ordāl, the root of "ordeal") meant a trial that yields a judgment — which is what every experiment here is for. Formerly adaptive-iteration; see Migrating from adaptive-iteration.

A small Python framework for running an endless loop of A/B experiments in any domain — short videos, emails, proposals — without fooling yourself. It owns the parts that should not depend on your domain or your tools:

  • Judging results honestly. Winners are declared from per-unit data with a confidence interval, at fixed weekly checkpoints, with the false-positive rate controlled across repeated looks. Missing or immature data is excluded, never counted as zero. "No difference" and "don't know yet" are different outcomes.
  • Keeping evidence in one place. An append-only JSONL ledger holds every observation and every decision, so any verdict can be recomputed later.
  • Keeping the vocabulary stable. A variable registry stops the same idea from being tested three times under three names.

New here? Start with the tutorial: a complete first experiment, explained for someone who has never used the framework.

Building an agent? The same operations are available as an MCP server and a JSON CLI, with guardrails an automated loop can't talk its way around (no acting on interim numbers, no moving the goalposts mid-experiment). See docs/agents.md.

It deliberately does not decide where hypotheses come from. You inject a Proposer: a language model, a parameter grid, a rules engine, or a person. Standard statistics (t distribution, Welch intervals) come from scipy; the few methods no library provides are implemented here and checked against published examples and simulated coverage.


Install

uv add ordal      # or: pip install ordal

Python 3.10+. Depends on scipy. For the MCP server: pip install "ordal[mcp]".


The loop

from datetime import timedelta
from pathlib import Path
from ordal import (
    Evaluator, HypothesisEngine, Ledger, MetricSpec, VariableDef, VariableRegistry,
)

ledger = Ledger(Path("data/ledger.jsonl"))
spec = MetricSpec(name="avg_view_pct", min_effect=3.0)   # smallest difference that matters

# 1. Register the variables you know about (proposers may add more, see below)
VariableRegistry(ledger, "shorts").register(
    VariableDef("hook_style", "how the first line grabs attention",
                execution="script prompt: opening sentence template"))

# 2. Ask your proposer for candidates; the engine reviews them against the registry
engine = HypothesisEngine(ledger, proposer=my_proposer)
for r in engine.generate("shorts", spec, n=3):
    print(r.status, r.variable, r.flags, r.reason)
experiment = engine.accept(next(r for r in engine.generate("shorts", spec) if r.accepted))
ledger.start_experiment(experiment.id)

# 3. Produce units, then record what you measure — per unit, not averages
ledger.record_observations(my_adapter.collect_observations(experiment))

# 4. Judge (safe to call daily; it only decides at weekly checkpoints)
decision = Evaluator(ledger).evaluate(experiment.id, spec)
print(decision.outcome, decision.effect, decision.interval, decision.reason)

examples/quickstart.py runs the whole loop on simulated data with no model. examples/inference_benchmark.py judges one-off batches instead: is a config faster, is a quantized model "no worse", and how much of the best-of-many gain is real.


Running it automatically

Loop drives the whole cycle so nobody has to. You plug in three things and call tick() on a schedule:

from ordal import Loop

loop = Loop(ledger, "shorts",
            collect=my_adapter.collect_observations,   # experiment -> observations
            apply=put_into_pipeline,                   # (experiment, variant, decision)
            proposer=my_proposer,
            max_concurrent=1,
            require_start_approval=True,               # new experiments wait for a human
            require_approval=True)                     # so do B-wins before they apply

# while producing each unit: which variant of each running experiment it gets
for a in loop.variant_for(unit_id="video-0412", stratum="cooking"):
    render_with(a.variable, a.variant)

report = loop.tick()          # from cron, daily is fine

Each tick collects fresh observations, judges every running experiment (still only at checkpoints), puts closed verdicts into effect (the winner, or variant A when nothing won), and fills free slots with new proposals. Before a proposal is started it is screened: from the proposer's expected_effect, the domain's own spread and its weekly volume, the loop estimates how long a verdict would take, and turns away proposals that could never be detected in time or aren't worth acting on even if right.

With require_start_approval, accepted proposals hold their slot until loop.approve_start(id) (or loop.reject_start(id)); nothing is assigned or collected before that.

If the pipeline changes under a running experiment (new model, prompt or config), data from before and after can't be compared. loop.restart(id, reason) abandons the experiment and starts the same one again, judged only on data from after the change and under the settings in effect from then on. loop.abandon(id, reason) drops one with no verdict. Neither is ever applied.

A copy of the ledger file plus apply as a no-op and a proposer that returns [] runs the loop in shadow: it judges and reports what it would apply, and changes nothing.

Winner's-curse correction. The experiments that get declared winners are disproportionately the ones noise happened to push upward, so their measured effects overstate the truth. Once a domain has five or more closed experiments, evidence() also reports a corrected effect for each: the measured one pulled toward zero by how noisy it is (empirical Bayes, with the spread of true effects estimated from the domain's own history). In simulation, declared winners measured +8.2 on average against a true +5.2; corrected, +5.3. Verdicts are never changed.

Nobody can know in advance whether a hypothesis is right, but a proposer's record shows over time. evidence() keeps one per proposer: how its experiments ended, what they cost, and how its expected effects compared with what was measured.

A simulated pipeline (60 units a week, noisy, topic-skewed) run for 16 weeks with no human involved, 200 times: a real +15 improvement was adopted every time; changes with no real effect were adopted 1.8% of the time.


Judging

Evaluator decides when and which data; a DecisionRule decides what the data says.

Setting Default Meaning
window 7 days judge once per window after the experiment starts
maturity 72 hours a unit counts only if observed this long after it was produced
max_windows 4 at the 4th checkpoint an undecided experiment closes

The default rule, WelchIntervalRule, builds a confidence interval for the difference B − A (Welch t for interleaved experiments, paired t for paired ones) and compares it with the region of practical equivalence ±min_effect:

Outcome When
B_BETTER / A_BETTER the interval excludes 0 and the estimated effect is at least min_effect
EQUIVALENT the whole interval lies inside ±min_effect
INSUFFICIENT anything else before the last checkpoint (with an estimate of how many more units are needed)
NO_DETECTABLE_DIFF anything else at the last checkpoint

WelchIntervalRule(superiority="margin") is a stricter variant that requires the whole interval to clear min_effect. Replayed on real production data (see replay below), both kept false positives under 5%, but the stricter variant caught real effects far less often, so it is not the default.

Alpha is split across the checkpoints (Bonferroni), so looking every week keeps the experiment-wide false-positive rate under 5%. Closing one experiment never stops the loop — the next hypothesis is always generated.

0/1 metrics (replied, clicked, converted) should use ProportionIntervalRule, which builds Newcombe's interval for the difference in proportions. It stays honest when events are rare: zero successes in both arms gives a wide interval, not a false "equivalent".

Evaluator(ledger, rule=ProportionIntervalRule())

Paired 0/1 outcomes (the same item scored under A and under B: a fact recalled or not after two policies, one email in two versions) use PairedProportionRule, Newcombe's paired score interval. Units are matched by pair_id, and a small sample where A and B always agree reads as "not enough evidence", never as "equivalent". ProportionIntervalRule switches to it automatically for paired experiments.

Groups of units that differ a lot on their own (topics, audience segments) can be tagged with Observation(..., stratum="cooking"). WelchIntervalRule then compares the arms within each group and combines the results, so an uneven mix of groups between the arms cannot pose as an effect.

Judging a finished batch in one look. For offline experiments (every unit already scored, no weekly schedule), call a rule directly and skip the Evaluator:

from ordal import DecisionContext, MetricSpec, PairedProportionRule, Sample

ids = ("fact1", "fact2", ...)                    # same order in both arms
a = Sample(values=(1.0, 0.0, ...), pair_ids=ids)  # policy A: recalled?
b = Sample(values=(1.0, 1.0, ...), pair_ids=ids)  # policy B
r = PairedProportionRule().decide(
    a, b, MetricSpec(name="recalled", min_effect=0.10),
    DecisionContext("batch-1", paired=True, checkpoint=1, max_checkpoints=1))
print(r.outcome, r.effect, r.interval, r.reason)

max_checkpoints=1 means the full alpha is spent on this single look. If you will look again after adding more data, set it to the total number of looks you plan.

A predictor known in advance (CUPED). If each unit comes with a number known before its variant was assigned that predicts the metric (a topic's historical average, a baseline model's score on the same item), pass it as Observation(..., covariate=...). WelchIntervalRule removes the part of each value the covariate predicts before comparing, which cuts the noise by about the squared correlation: with a correlation of 0.7, a true effect that was detected 58% of the time was detected 86% of the time on the same data, with false positives still under 5%. The adjustment is skipped, and the verdict says why, if any unit lacks a covariate or if the covariate differs between arms more than random assignment allows (a sign it was affected by the variant).

To use a different rule (Bayesian, sequential, domain-specific), pass any object with name and decide(a, b, spec, ctx) -> RuleResult:

Evaluator(ledger, rule=MyBayesianRule())

Judging the judge: replay

Before trusting a rule — or switching to a new one — test it on your own data. Adapted from the replay idea in Dream-RSI: recorded history becomes a simulator, and a candidate is adopted only if it is not worse than the incumbent.

from ordal.replay import calibrate, gate, replay

pool = [...]  # every real per-unit value of the metric you have

# How often does a rule crown a winner when nothing differs? How often does it
# catch a real 10-point effect, and after how many weeks?
calibrate(pool, WelchIntervalRule(), spec, effect=0,  per_window=20)
calibrate(pool, WelchIntervalRule(), spec, effect=10, per_window=20)

# Adopt only if false positives stay ≤ 5% and detection is not worse
gate(candidate_rule, current_rule, pool, spec, effects=(5, 10, 20), per_window=20)

# 0/1 metrics can't be shifted: give B its own pool instead
calibrate(clicks, ProportionIntervalRule(), spec, effect=0.05, pool_b=clicks_plus_5,
          per_window=200)

# What would the Evaluator have said, week by week, on a recorded experiment?
replay(experiment, observations, spec, rule=candidate_rule)

Replay only reuses outcomes that were actually observed. It can evaluate how you judge and schedule experiments; it cannot predict how an untested hypothesis would have done.


Proposers

class Proposer(Protocol):
    def propose(self, evidence: EvidenceSummary, n: int) -> list[Proposal]: ...

EvidenceSummary is plain data: every variable's status (untested, open, concluded, equivalent, no_detectable_diff, legacy_unverified), best variant, effect and interval, units still needed for open experiments, plus the registry, metric dispersion, data-quality counts, and the cost of judging so far (units spent per decisive result) — so a proposer can prefer hypotheses that resolve quickly. evidence.to_markdown() renders it for a prompt if you want one.

examples/llm_proposer.py shows a model-backed proposer that takes any (system, user) -> str function, so the model, client and prompt stay yours.

Review

HypothesisEngine.generate() reviews each proposal before you see it:

Status Meaning
known uses a registered variable (aliases are normalised to the canonical name)
merged proposed as new, but duplicates a registered variable — mapped onto it
new a genuinely new variable; flagged needs_execution if it says nothing about how to run it
rejected unregistered without a definition, or the variable already has an open experiment

Nothing is written until accept(), so unused proposals never pollute the registry. The default duplicate check compares name tokens; inject your own DuplicateDetector for semantic matching, or merge by hand:

VariableRegistry(ledger, "shorts").merge("intro_visual_style", into="opening_visual_style")

Adapters

The only layer that talks to your systems:

class DomainAdapter(Protocol):
    def collect_observations(self, experiment: Experiment) -> list[Observation]: ...

Report unavailable metrics as None, never 0. See adapters/short_video.py.


Migrating from adaptive-iteration

The package was renamed in 0.11: pip install ordal, import ordal, and the core subpackage is gone (adaptive_iteration.core.decision → ordal.decision). The command is ordal, its environment variable ORDAL_LEDGER (the old ADAPTIVE_ITERATION_LEDGER still works), and the MCP server is started with ordal --ledger … mcp. Ledgers need no conversion.

adaptive-iteration 0.11 is a thin wrapper that installs ordal and keeps the old import paths working with a deprecation warning; switch at your convenience.

Migrating from 0.1

0.1 ledgers stored per-arm averages and a caller-supplied winner flag, which cannot be re-judged. A 0.1 file opens read-only; convert it with:

from ordal.migrate import v1_to_v2
v1_to_v2(Path("data/adaptive_ledger.json"), Path("data/ledger.jsonl"))

Old results become legacy_unverified evidence and their variable names are registered. Analyzer, DomainAdapter.get_signals/format_context and the built-in OpenAI call are gone; write a proposer instead.


Design

See docs/design/v0.2.md.

Release files for ordal 0.11.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ordal 0.11.0
File Size Uploaded
ordal-0.11.0.tar.gz 241.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ordal 0.11.0
File Interpreter ABI Platform
ordal-0.11.0-py3-none-any.whl Python 3 none any Details

Total release size: 305.7 kB

Release files / ordal-0.11.0.tar.gz

Download URL ordal-0.11.0.tar.gz
Size 241.0 kB
Tags Source
SHA-256 checksum
How to use checksums
e2ff33d1476b283ba6a488972ce617b8fc537cea2d15862f16d1c820eb428713
BLAKE2b-256 checksum
How to use checksums
82d717151404b561bdd0ba334ea00d4e7b9b7df2d213dde02f6bb30643d2829c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ordal-0.11.0-py3-none-any.whl

Download URL ordal-0.11.0-py3-none-any.whl
Size 64.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
69b3a88f16981d2fadc829677dbd7621733c96d1f564ff0d971c8ad494b0b8f2
BLAKE2b-256 checksum
How to use checksums
dbcc33b4b3ffc9efd1a847acd7725573f7d8fa1cabf574624ee6e1ad044376c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release history Release notifications | RSS feed

0.12.0

2 release files

This release

0.11.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page