Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Implementing Continuous OPE Estimators #113

Merged
merged 15 commits into from
Aug 14, 2021
20 changes: 20 additions & 0 deletions obp/ope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,19 @@
from obp.ope.estimators_slate import SlateStandardIPS
from obp.ope.estimators_slate import SlateIndependentIPS
from obp.ope.estimators_slate import SlateRewardInteractionIPS
from obp.ope.estimators_continuous import BaseContinuousOffPolicyEstimator
from obp.ope.estimators_continuous import KernelizedInverseProbabilityWeighting
from obp.ope.estimators_continuous import (
KernelizedSelfNormalizedInverseProbabilityWeighting,
)
from obp.ope.estimators_continuous import triangular_kernel
from obp.ope.estimators_continuous import gaussian_kernel
from obp.ope.estimators_continuous import epanechnikov_kernel
from obp.ope.estimators_continuous import cosine_kernel
from obp.ope.estimators_continuous import KernelizedDoublyRobust
from obp.ope.meta import OffPolicyEvaluation
from obp.ope.meta_slate import SlateOffPolicyEvaluation
from obp.ope.meta_continuous import ContinuousOffPolicyEvaluation
from obp.ope.regression_model import RegressionModel

__all__ = [
Expand All @@ -26,10 +37,19 @@
"DoublyRobustWithShrinkage",
"OffPolicyEvaluation",
"SlateOffPolicyEvaluation",
"ContinuousOffPolicyEvaluation",
"RegressionModel",
"SlateStandardIPS",
"SlateIndependentIPS",
"SlateRewardInteractionIPS",
"BaseContinuousOffPolicyEstimator",
"KernelizedInverseProbabilityWeighting",
"KernelizedSelfNormalizedInverseProbabilityWeighting",
"KernelizedDoublyRobust",
"triangular_kernel",
"gaussian_kernel",
"epanechnikov_kernel",
"cosine_kernel",
]

__all_estimators__ = [
Expand Down
Loading