Skip to main content

Glossary

This glossary defines the terms used across public docs, developer docs, package READMEs, and issue work.

Core terms

TermMeaning
LimenVaquum's Bitcoin research engine for manifest-driven experiments, logged analytics, backtests, and decoder cohorts.
YAML manifestThe default operator-facing experiment definition consumed by the limen CLI.
ManifestThe abstract experiment-pipeline interface. Runnable pipelines use MLManifest or RuleBasedManifest.
MLManifestManifest implementation for trainable reference architectures.
RuleBasedManifestManifest implementation for predicate-driven, non-learned strategies.
Single-File DecoderA Python experiment unit that exposes a parameter surface and either a manifest or custom prep/model functions. Previously called Single File Model.
SFDShort form of Single-File Decoder. Previously called SFM.
Foundational SFDA packaged SFD under limen.sfd.foundational_sfd; most have a matching YAML template.
Reference ArchitectureA class-based model implementation and function wrapper used by foundational manifests.
Universal Experiment LoopThe experiment engine that executes parameter rounds.
UELShort form of Universal Experiment Loop.
round / permutationOne concrete parameter combination executed by UEL.
experiment artifactA persisted run output such as metadata.json, results.csv, round_data.jsonl, checkpoint.json, or audit.jsonl.
TrainerReconstructs and replays selected artifact-backed rounds, validates metrics, and returns Sensors.
SensorA validated model plus manifest, fitted preprocessing state, round parameters, and inference methods.
CohortA bound set of Sensors with one aggregation mode and cohort identity.
selectorA callable that chooses string permutation IDs for a Cohort.
HistoricalDataStateful data-access class for Limen's supported market-data sources and files.
reducerA PruningStrategy that analyzes completed rounds and returns declarative search interventions.
MSQMutable Search Queue used by advanced search and feedback dispatch.
LogAnalysis wrapper over an experiment log and retained round artifacts.
benchmarkConfusion-oriented outcome analysis; not an independent public benchmark suite or leaderboard.
backtestLong/flat per-bar research ledger with basis-point outputs; not an execution simulator.

Implementation names

limen.experiment.manifest_core contains the manifest implementations, and limen.experiment.experiment_core contains Universal Experiment Loop. These are module names, not a general *_core naming promise for other domains.