scope_rl.ope.weight_value_learning.base#

Abstract base class for weight and value learning.

Classes

BaseWeightValueLearner

Base class for weight/value learning.

class scope_rl.ope.weight_value_learning.base.BaseWeightValueLearner[source]#

Base class for weight/value learning.

Imported as: scope_rl.ope.weight_value_learning.BaseWeightValueLearner

Methods

fit()

Fit function approximation models.

load()

Load models.

predict()

Predict weights/values for the given state/state-action pair.

save()

Save models.

abstract save()[source]#

Save models.

abstract load()[source]#

Load models.

abstract fit()[source]#

Fit function approximation models.

abstract predict()[source]#

Predict weights/values for the given state/state-action pair.