- current state -> selected action -> next state
- later reward or terminal outcome
- earlier action value is revised
- a later selection can change
Choose the acquisition schedule separately. Sequential Discovery supports learning across episodes from empty state, separate acquisition before frozen use, and continued learning from an acquired checkpoint. State carried from earlier episodes inside one zero-start run remains within-run state. The wider Domain can use discovered, authored, or mixed structure.
When to use it
Use Sequential Discovery when all of these conditions hold:
Use direct policy feedback for independent choices with an immediate attributable outcome.
How the Discovery paths fit together
A Domain can use one path or combine compatible paths inside the same public task boundary.
The paths can share observations while keeping their targets and diagnostics distinct. A transition result predicts what follows. Sequential policy state changes which action receives support because of later reward.
Learning contract
Each eligible sequential transition supplies this logical tuple:- query current state
- Core selects one permitted policy
- application executes that exact policy
- application observes next state and reward
- feedback binds the consequence to the decision
- later queries use retained sequential state
decision_id gives the strongest binding to the earlier selection.
Starting declaration excerpt
Declare policies as public action identities. Adapt-1 learns action quality and trajectory value from interaction. Numeric settings below are example parameters.learning.context.feature_paths list admits eligible structured leaves. Review that surface for identifiers, post-outcome values, and target leakage. Use explicit paths when the approved state representation must stay fixed.
Feedback shape
Return the observed successor state and reward after executing the selected policy:episode_id at the real reset boundary. Steps must be ordered inside each episode.
Opaque-action sequential environment
A Domain can expose public observations and legal opaque actions while leaving their useful task structure unresolved:- public observation fields
- an action from the declared legal set
- observable next state and native reward
- retained transition and sequential evidence
- later action selection
Inspect the result
Inspect the feedback response for policy admission, then check sequential sample counts and learner versions alongside the policy model report. When the sequential candidate trains and passes validation, the feedback-policy report can exposemodel_type: "sequential_q_mlp".
Bounded transition scoring can operate in the same Discovery Domain through learning.sequential.bound_transition. It forms action-conditioned state-change evidence for a declared bounded objective. Preserve its score and attribution separately from the sequential return model.
Discovery overview
Configure the public boundary and choose the Discovery paths that fit the task.
Sequential learning, advanced
Configure rewards, exploration, training, validation, attribution, and frozen evaluation.
Transition Discovery
Discover stable transition inputs and compatible causal bindings.
Structure Discovery
Discover useful fields, combinations, lags, and predictive rules.
