Inferentialist evaluation of LLMs: derive implication frames from a model's endorsement verdicts and measure model–analyst agreement on labeled inference benchmarks. Evidence bearing on inferential-mastery attribution.
Project description
infereval
📖 Documentation: https://www.bradleypallen.org/infereval/
Inferentialist evaluation of LLMs: derive an implication frame from a language model's endorsement verdicts, then measure the model's agreement with an analyst-labeled benchmark via coverage and Cohen's / Fleiss' kappa. The agreement is evidence bearing on an inferential-mastery attribution — not a measurement of mastery itself (per the paper's Remark 8).
infereval is the executable companion to Note on Simonelli's Stop Sign Dialogue: An Implication-Space Instrument for Probing LLM Endorsement of Material Inferential Rules (Allen, 2026), which is maintained as a separate paper. The framework formalizes the procedure β → η → (cov, κ_C, κ_F, κ_F*) for any analyst-supplied benchmark.
Status
Beta (0.x, pre-1.0). The public Python API and CLI surface may shift between minor releases until 1.0. Methodology defaults are locked, and the JSON schemas are versioned independently (schema_version: "1.0") and promised stable from 1.0 onward regardless of the framework version. See the CHANGELOG for the current release.
Documentation
Full docs site: https://www.bradleypallen.org/infereval/.
What's there: a Concepts page (methodology mental model), Authoring benchmarks, Interpreting metrics (κ_C / κ_F / κ_F*, decompositions, sensitivity sweeps), Providers (Anthropic seed handling, DeepSeek reasoning-token budgets, OpenRouter attribution), the Construct-validity workflow end-to-end practitioner's guide, and the Closing the construct-validity gap R1–R21 record. Four executable tutorial notebooks (quickstart, authoring, paraphrase-axis triangulation, pulmonology visualization). Plus an auto-generated API reference, an Architecture dataflow diagram, a Glossary of paper symbols, and a JSON-schema reference.
Findings
A 13-model cross-family sweep (2026-05-18) of the paraphrase-axis experiment is committed at experiments/results/cross_family_2026-05-18.md. Headline: 11 of 13 frontier LLMs across six families reproduce Simonelli's analyst row exactly under the original δ(ra) (κ_C = +1.00) — an eleven-model independent replication of the paper's empirical anchor ten months after publication. The two outliers (Claude Haiku 4.5, Mistral Large) default to a perceptual reading of is red rather than the analyst's intrinsic reading, and the framework localizes this to specific (item, δ-variant) cells in the result tables.
Install
pip install infereval
Provider SDKs are optional extras (the framework runs without them — use the mock or replay providers):
pip install 'infereval[anthropic]' # Anthropic Claude
pip install 'infereval[openai]' # OpenAI + OpenRouter (OpenAI-API-compatible)
pip install 'infereval[all]'
From source (editable):
git clone https://github.com/bradleypallen/infereval
cd infereval
python -m venv .venv
source .venv/bin/activate
pip install -e '.[dev]'
60-second quickstart
Inspect the bundled stop-sign benchmark (Example 1 of the paper), then run an evaluation against the deterministic replay fixture — no API key needed:
# 1. Look at the benchmark.
infereval describe examples/stop_sign/benchmark.json
# 2. Validate it against the JSON schema.
infereval validate examples/stop_sign/benchmark.json
# 3. Run a deterministic evaluation against the committed replay fixture.
infereval evaluate examples/stop_sign/benchmark.json \
--replay-from tests/fixtures/stop_sign_replay.jsonl \
--output /tmp/eta.json \
--n-samples 5 \
--log /tmp/run.jsonl
# 4. Compute metrics.
infereval metrics /tmp/eta.json --benchmark examples/stop_sign/benchmark.json
To run against a real model, replace step 3 with:
export ANTHROPIC_API_KEY=...
infereval evaluate examples/stop_sign/benchmark.json \
--provider anthropic --model claude-haiku-4-5-20251001 \
--output /tmp/eta.json --n-samples 5 --log /tmp/run.jsonl
The JSONL run log under /tmp/run.jsonl records one event per provider call (prompt hash, raw response, parsed verdict, usage, timing) so the evaluation is auditable end to end.
What this is and isn't
This is: a research tool that formalizes Simonelli's stop-sign dialogue into a repeatable evaluation procedure. Given (i) a bearer set, (ii) expression and context-construction functions, (iii) a benchmark of implications labeled by one or more analysts, the framework drives an LLM through endorsement-probing for each implication and reports the resulting agreement with analyst practice along three axes:
- Coverage — how often the model takes a substantive position (
cov(η)). - Cohen's kappa — agreement against a chosen reference (analyst consensus
c_ior a single analystv_{:,j}). - Fleiss' kappa — agreement with the model treated as the
(m+1)th annotator, alongside the inter-analyst baselineκ_F*(β)(Remark 4 of the paper).
Each metric can be decomposed by tag or by RSR target.
This is not: a factuality benchmark, a leaderboard, or an answer to whether LLMs are sapient. The methodology is carving-relative: results depend on the analyst-supplied bearer carving, context construction, and benchmark. The framework provides the machinery; the analyst supplies the practice the machinery is comparing against. See the Discussion in the paper for what carving-relativity buys and costs.
API surface
from infereval import (
Verdict, Bearer, Implication, # core data types
DerivedFrame, # ⟨B, I_M⟩ per Definition 3
)
from infereval.benchmark import Benchmark
from infereval.evaluation import Evaluation, evaluate, EndorsementConfig, ProviderParams
from infereval.providers import get_provider
from infereval.metrics import MetricsReport
bench = Benchmark.load("examples/stop_sign/benchmark.json")
provider = get_provider("anthropic", "claude-haiku-4-5-20251001")
eta = evaluate(bench, provider,
config=EndorsementConfig(n_samples=5),
params=ProviderParams(temperature=1.0),
log_path="/tmp/run.jsonl")
report = MetricsReport(eta=eta, benchmark=bench)
print(report.to_dict())
Locked methodology defaults
These are framework defaults, overridable per evaluation:
| Setting | Default |
|---|---|
n_samples |
5 (odd, clean 3-way majority) |
| Tie-break | abstain (configurable: good, bad, first) |
| Verification prompt | default-v1 (GOOD/BAD/ABSTAIN tokens with brief glosses) |
| TeX in expressions | Stripped at prompt time; LaTeX-source-friendly in benchmark JSON |
| Cohen's kappa reference | Analyst consensus c_i (override with --reference analyst:<id>) |
| Provider seed | Honored by OpenAI; ignored (with one-time warning) by Anthropic |
See CLAUDE.md and the paper for the full list and the rationale behind each choice.
Development
pip install -e '.[dev]'
pytest # all unit + replay tests
pytest -m live # opt-in live provider tests (requires API keys)
mypy src/infereval
ruff check src tests
Live provider tests require RUN_LIVE_PROVIDER_TESTS=1 and the relevant API key in the environment. They are skipped by default.
Citation
@unpublished{allen2026inferential,
author = {Allen, Bradley P.},
title = {Note on {S}imonelli's Stop Sign Dialogue: An Implication-Space Instrument for Probing {LLM} Endorsement of Material Inferential Rules},
year = {2026},
note = {University of Amsterdam}
}
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file infereval-0.5.10.tar.gz.
File metadata
- Download URL: infereval-0.5.10.tar.gz
- Upload date:
- Size: 187.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa38e9bd121d29bc82f0a20a1099feaa23636139be4e2154a3ed2e92826c6b32
|
|
| MD5 |
044eec11bdba29f82b59373dc9af4750
|
|
| BLAKE2b-256 |
9ddc74507344d6edb8a7f0825db7435d8baed8b1dce1516901c404b1906b379b
|
Provenance
The following attestation bundles were made for infereval-0.5.10.tar.gz:
Publisher:
publish.yml on bradleypallen/infereval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
infereval-0.5.10.tar.gz -
Subject digest:
aa38e9bd121d29bc82f0a20a1099feaa23636139be4e2154a3ed2e92826c6b32 - Sigstore transparency entry: 1615902078
- Sigstore integration time:
-
Permalink:
bradleypallen/infereval@2efe10c47b51411a8658b5d56540c44cb9f1bc0a -
Branch / Tag:
refs/tags/v0.5.10 - Owner: https://github.com/bradleypallen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2efe10c47b51411a8658b5d56540c44cb9f1bc0a -
Trigger Event:
release
-
Statement type:
File details
Details for the file infereval-0.5.10-py3-none-any.whl.
File metadata
- Download URL: infereval-0.5.10-py3-none-any.whl
- Upload date:
- Size: 110.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de0f4b06fd73341176b1ca363ec8ccde3f3ec2b31197d8617af07b2195ac1b5c
|
|
| MD5 |
20d0b6e87642301c5a4cee29658a13ff
|
|
| BLAKE2b-256 |
261325bd750231e0fdc7536b5ff18e4c3c5f41f0311af53398267722ed3e7839
|
Provenance
The following attestation bundles were made for infereval-0.5.10-py3-none-any.whl:
Publisher:
publish.yml on bradleypallen/infereval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
infereval-0.5.10-py3-none-any.whl -
Subject digest:
de0f4b06fd73341176b1ca363ec8ccde3f3ec2b31197d8617af07b2195ac1b5c - Sigstore transparency entry: 1615902096
- Sigstore integration time:
-
Permalink:
bradleypallen/infereval@2efe10c47b51411a8658b5d56540c44cb9f1bc0a -
Branch / Tag:
refs/tags/v0.5.10 - Owner: https://github.com/bradleypallen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2efe10c47b51411a8658b5d56540c44cb9f1bc0a -
Trigger Event:
release
-
Statement type: