-
Notifications
You must be signed in to change notification settings - Fork 89
/
__init__.py
136 lines (129 loc) · 5.65 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
from obp.ope.classification_model import ImportanceWeightEstimator
from obp.ope.classification_model import PropensityScoreEstimator
from obp.ope.estimators import BalancedInverseProbabilityWeighting
from obp.ope.estimators import BaseOffPolicyEstimator
from obp.ope.estimators import DirectMethod
from obp.ope.estimators import DoublyRobust
from obp.ope.estimators import DoublyRobustWithShrinkage
from obp.ope.estimators import InverseProbabilityWeighting
from obp.ope.estimators import ReplayMethod
from obp.ope.estimators import SelfNormalizedDoublyRobust
from obp.ope.estimators import SelfNormalizedInverseProbabilityWeighting
from obp.ope.estimators import SubGaussianDoublyRobust
from obp.ope.estimators import SubGaussianInverseProbabilityWeighting
from obp.ope.estimators import SwitchDoublyRobust
from obp.ope.estimators_continuous import (
KernelizedSelfNormalizedInverseProbabilityWeighting,
)
from obp.ope.estimators_continuous import BaseContinuousOffPolicyEstimator
from obp.ope.estimators_continuous import cosine_kernel
from obp.ope.estimators_continuous import epanechnikov_kernel
from obp.ope.estimators_continuous import gaussian_kernel
from obp.ope.estimators_continuous import KernelizedDoublyRobust
from obp.ope.estimators_continuous import KernelizedInverseProbabilityWeighting
from obp.ope.estimators_continuous import triangular_kernel
from obp.ope.estimators_embed import (
SelfNormalizedMarginalizedInverseProbabilityWeighting,
)
from obp.ope.estimators_embed import MarginalizedInverseProbabilityWeighting
from obp.ope.estimators_multi import BaseMultiLoggersOffPolicyEstimator
from obp.ope.estimators_multi import MultiLoggersBalancedDoublyRobust
from obp.ope.estimators_multi import MultiLoggersBalancedInverseProbabilityWeighting
from obp.ope.estimators_multi import MultiLoggersNaiveDoublyRobust
from obp.ope.estimators_multi import MultiLoggersNaiveInverseProbabilityWeighting
from obp.ope.estimators_multi import MultiLoggersWeightedDoublyRobust
from obp.ope.estimators_multi import MultiLoggersWeightedInverseProbabilityWeighting
from obp.ope.estimators_slate import SelfNormalizedSlateIndependentIPS
from obp.ope.estimators_slate import SelfNormalizedSlateRewardInteractionIPS
from obp.ope.estimators_slate import SelfNormalizedSlateStandardIPS
from obp.ope.estimators_slate import SlateCascadeDoublyRobust
from obp.ope.estimators_slate import SlateIndependentIPS
from obp.ope.estimators_slate import SlateRewardInteractionIPS
from obp.ope.estimators_slate import SlateStandardIPS
from obp.ope.estimators_tuning import DoublyRobustTuning
from obp.ope.estimators_tuning import DoublyRobustWithShrinkageTuning
from obp.ope.estimators_tuning import InverseProbabilityWeightingTuning
from obp.ope.estimators_tuning import SubGaussianDoublyRobustTuning
from obp.ope.estimators_tuning import SubGaussianInverseProbabilityWeightingTuning
from obp.ope.estimators_tuning import SwitchDoublyRobustTuning
from obp.ope.meta import OffPolicyEvaluation
from obp.ope.meta_continuous import ContinuousOffPolicyEvaluation
from obp.ope.meta_multi import MultiLoggersOffPolicyEvaluation
from obp.ope.meta_slate import SlateOffPolicyEvaluation
from obp.ope.regression_model import RegressionModel
from obp.ope.regression_model_slate import SlateRegressionModel
__all__ = [
"BaseOffPolicyEstimator",
"ReplayMethod",
"InverseProbabilityWeighting",
"SelfNormalizedInverseProbabilityWeighting",
"DirectMethod",
"DoublyRobust",
"SelfNormalizedDoublyRobust",
"SwitchDoublyRobust",
"DoublyRobustWithShrinkage",
"SubGaussianInverseProbabilityWeighting",
"SubGaussianDoublyRobust",
"InverseProbabilityWeightingTuning",
"DoublyRobustTuning",
"SwitchDoublyRobustTuning",
"DoublyRobustWithShrinkageTuning",
"SubGaussianInverseProbabilityWeightingTuning",
"SubGaussianDoublyRobustTuning",
"MarginalizedInverseProbabilityWeighting",
"SelfNormalizedMarginalizedInverseProbabilityWeighting",
"BaseMultiLoggersOffPolicyEstimator",
"MultiLoggersNaiveInverseProbabilityWeighting",
"MultiLoggersWeightedInverseProbabilityWeighting",
"MultiLoggersBalancedInverseProbabilityWeighting",
"MultiLoggersNaiveDoublyRobust",
"MultiLoggersBalancedDoublyRobust",
"MultiLoggersWeightedDoublyRobust",
"OffPolicyEvaluation",
"SlateOffPolicyEvaluation",
"ContinuousOffPolicyEvaluation",
"MultiLoggersOffPolicyEvaluation",
"RegressionModel",
"SlateRegressionModel",
"SlateStandardIPS",
"SlateIndependentIPS",
"SlateRewardInteractionIPS",
"SlateCascadeDoublyRobust",
"SelfNormalizedSlateRewardInteractionIPS",
"SelfNormalizedSlateIndependentIPS",
"SelfNormalizedSlateStandardIPS",
"BalancedInverseProbabilityWeighting",
"ImportanceWeightEstimator",
"PropensityScoreEstimator",
"BaseContinuousOffPolicyEstimator",
"KernelizedInverseProbabilityWeighting",
"KernelizedSelfNormalizedInverseProbabilityWeighting",
"KernelizedDoublyRobust",
"triangular_kernel",
"gaussian_kernel",
"epanechnikov_kernel",
"cosine_kernel",
]
__all_estimators__ = [
"ReplayMethod",
"InverseProbabilityWeighting",
"SelfNormalizedInverseProbabilityWeighting",
"DirectMethod",
"DoublyRobust",
"DoublyRobustWithShrinkage",
"SwitchDoublyRobust",
"SelfNormalizedDoublyRobust",
"SubGaussianInverseProbabilityWeighting",
"SubGaussianDoublyRobust",
"BalancedInverseProbabilityWeighting",
]
__all_estimators_tuning__ = [
"InverseProbabilityWeightingTuning",
"DoublyRobustTuning",
"SwitchDoublyRobustTuning",
"DoublyRobustWithShrinkageTuning",
]
__all_estimators_tuning_sg__ = [
"SubGaussianInverseProbabilityWeightingTuning",
"SubGaussianDoublyRobustTuning",
]