`nexyron.model_score`
Generic Description
nexyron.model_score scores one subject with a registered native model using its bound snapshot contract
CALL nexyron.procedures()
YIELD name, description, parameters, output_columns
WHERE name = 'nexyron.model_score'
RETURN name, description, parameters, output_columns
Semantic model procedures score, evaluate, compare, explain, materialize, and inspect registered models that are bound to named datasets or snapshots.
Consumer-Level Explanation
This procedure belongs to the model and feature-serving runtime. Use it when you need feature resolution, scoring, explanation, evaluation, or model-quality analysis from already registered abstraction contracts.
Parameters
name: Model name Required.subject_id: Requested subject identifier Required.at: Optional as-of timestamp in epoch milliseconds for bound snapshot execution Optional.system_at: Optional system-time cutoff in epoch milliseconds for dual-time replay Optional.prefer_materialized: When true, reuse a matching materialized model artifact or bound snapshot before computing on demand Optional.
Output Columns
subject_idsnapshot_tsraw_scorepredictioncalibrated_predictionuncertaintysourcemodel_version
Example Contract Prerequisite
The executable Cypher blocks on this page query nexyron.procedures() so they work in an empty database and stay synchronized with the live procedure registry. A direct CALL nexyron.model_score(...) requires the named abstraction contracts, artifacts, features, snapshots, datasets, models, or policies referenced by that call to exist first; otherwise the runtime correctly fails with an unknown-contract error rather than inventing state.
Conceptual Explanation
The important thing about nexyron.model_score is that it stays inside the same Cypher and abstraction-contract runtime as the rest of Nexyron. That means it can compose with named abstractions, time-aware snapshot contracts, document-style payloads, graph-native identity, and later model or policy layers without forcing you to move into a separate tool first.
More Detailed Explanation
In practical queries, start by deciding the row grain you want after the call: one row per node, one row per path, one row per registry object, one row per artifact, or one row per summary. Then keep that grain explicit with YIELD and named projections. That is the difference between a useful planner-facing example and a vague call that downstream tooling cannot safely compose. For contract-driven abstraction procedures, the executable examples on these pages intentionally inspect procedure metadata unless the required named artifacts are created in the same example.
Advanced Example
CALL nexyron.procedures()
YIELD name, parameters, output_columns
WHERE name = 'nexyron.model_score'
RETURN name,
[p IN parameters | p.name] AS parameter_names,
output_columns
ORDER BY name
Real Use Cases
- Evaluate, compare, and operationalize retention-risk models directly against named abstraction datasets before moving a candidate model into campaign or service decisioning.
- Score live member cohorts from the same feature contract used offline so risk review, calibration review, and production serving stay on one contract path.
Real Limitations And Tradeoffs
- This surface is contract-driven. If the registered feature, snapshot, dataset, model, or policy definition is weak, the procedure will faithfully execute that weak contract rather than silently repairing it.
- Reported quality or causal metrics are only as defensible as the dataset, split, and temporal contract supplied underneath.