public interface LearnedModel extends FullModel
FullModel
for models that are learned from data. Requires a method for updating the model
and resetting the model.FullModel.Helper
Modifier and Type | Method and Description |
---|---|
void |
resetModel()
Resets the model data so that learning can begin anew.
|
void |
updateModel(EnvironmentOutcome eo)
Updates this model with respect to the observed
EnvironmentOutcome . |
transitions
sample, terminal
void updateModel(EnvironmentOutcome eo)
EnvironmentOutcome
.eo
- The EnvironmentOutcome
specifying the observed interaction with an Environment
.void resetModel()