forked from st-tech/zr-obp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevaluate_off_policy_estimators.py
More file actions
214 lines (199 loc) · 7.59 KB
/
evaluate_off_policy_estimators.py
File metadata and controls
214 lines (199 loc) · 7.59 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import argparse
from pathlib import Path
from joblib import delayed
from joblib import Parallel
import numpy as np
from pandas import DataFrame
from sklearn.datasets import load_breast_cancer
from sklearn.datasets import load_digits
from sklearn.datasets import load_iris
from sklearn.datasets import load_wine
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.ensemble import RandomForestClassifier
from sklearn.linear_model import LogisticRegression
import yaml
from obp.dataset import MultiClassToBanditReduction
from obp.ope import DirectMethod
from obp.ope import DoublyRobust
from obp.ope import DoublyRobustWithShrinkageTuning
from obp.ope import InverseProbabilityWeighting
from obp.ope import OffPolicyEvaluation
from obp.ope import RegressionModel
from obp.ope import SelfNormalizedDoublyRobust
from obp.ope import SelfNormalizedInverseProbabilityWeighting
from obp.ope import SwitchDoublyRobustTuning
# hyperparameters of the regression model used in model dependent OPE estimators
with open("./conf/hyperparams.yaml", "rb") as f:
hyperparams = yaml.safe_load(f)
dataset_dict = dict(
breast_cancer=load_breast_cancer(return_X_y=True),
digits=load_digits(return_X_y=True),
iris=load_iris(return_X_y=True),
wine=load_wine(return_X_y=True),
)
base_model_dict = dict(
logistic_regression=LogisticRegression,
lightgbm=GradientBoostingClassifier,
random_forest=RandomForestClassifier,
)
# compared OPE estimators
ope_estimators = [
DirectMethod(),
InverseProbabilityWeighting(),
SelfNormalizedInverseProbabilityWeighting(),
DoublyRobust(),
SelfNormalizedDoublyRobust(),
SwitchDoublyRobustTuning(lambdas=[10, 50, 100, 500, 1000, 5000, 10000, np.inf]),
DoublyRobustWithShrinkageTuning(
lambdas=[10, 50, 100, 500, 1000, 5000, 10000, np.inf]
),
]
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="evaluate off-policy estimators with multi-class classification data."
)
parser.add_argument(
"--n_runs", type=int, default=1, help="number of simulations in the experiment."
)
parser.add_argument(
"--dataset_name",
type=str,
choices=["breast_cancer", "digits", "iris", "wine"],
required=True,
help="the name of the multi-class classification dataset.",
)
parser.add_argument(
"--eval_size",
type=float,
default=0.7,
help="the proportion of the dataset to include in the evaluation split.",
)
parser.add_argument(
"--base_model_for_behavior_policy",
type=str,
choices=["logistic_regression", "lightgbm", "random_forest"],
required=True,
help="base ML model for behavior policy, logistic_regression, random_forest or lightgbm.",
)
parser.add_argument(
"--alpha_b",
type=float,
default=0.8,
help="the ratio of a uniform random policy when constructing an behavior policy.",
)
parser.add_argument(
"--base_model_for_evaluation_policy",
type=str,
choices=["logistic_regression", "lightgbm", "random_forest"],
required=True,
help="base ML model for evaluation policy, logistic_regression, random_forest or lightgbm.",
)
parser.add_argument(
"--alpha_e",
type=float,
default=0.9,
help="the ratio of a uniform random policy when constructing an evaluation policy.",
)
parser.add_argument(
"--base_model_for_reg_model",
type=str,
choices=["logistic_regression", "lightgbm", "random_forest"],
required=True,
help="base ML model for regression model, logistic_regression, random_forest or lightgbm.",
)
parser.add_argument(
"--n_jobs",
type=int,
default=1,
help="the maximum number of concurrently running jobs.",
)
parser.add_argument("--random_state", type=int, default=12345)
args = parser.parse_args()
print(args)
# configurations
n_runs = args.n_runs
dataset_name = args.dataset_name
eval_size = args.eval_size
base_model_for_behavior_policy = args.base_model_for_behavior_policy
alpha_b = args.alpha_b
base_model_for_evaluation_policy = args.base_model_for_evaluation_policy
alpha_e = args.alpha_e
base_model_for_reg_model = args.base_model_for_reg_model
n_jobs = args.n_jobs
random_state = args.random_state
np.random.seed(random_state)
# load raw data
X, y = dataset_dict[dataset_name]
# convert the raw classification data into a logged bandit dataset
dataset = MultiClassToBanditReduction(
X=X,
y=y,
base_classifier_b=base_model_dict[base_model_for_behavior_policy](
**hyperparams[base_model_for_behavior_policy]
),
alpha_b=alpha_b,
dataset_name=dataset_name,
)
def process(i: int):
# split the original data into training and evaluation sets
dataset.split_train_eval(eval_size=eval_size, random_state=i)
# obtain logged bandit feedback generated by behavior policy
bandit_feedback = dataset.obtain_batch_bandit_feedback(random_state=i)
# obtain action choice probabilities by an evaluation policy
action_dist = dataset.obtain_action_dist_by_eval_policy(
base_classifier_e=base_model_dict[base_model_for_evaluation_policy](
**hyperparams[base_model_for_evaluation_policy]
),
alpha_e=alpha_e,
)
# calculate the ground-truth performance of the evaluation policy
ground_truth_policy_value = dataset.calc_ground_truth_policy_value(
action_dist=action_dist
)
# estimate the reward function of the evaluation set of multi-class classification data with ML model
regression_model = RegressionModel(
n_actions=dataset.n_actions,
base_model=base_model_dict[base_model_for_reg_model](
**hyperparams[base_model_for_reg_model]
),
)
estimated_rewards_by_reg_model = regression_model.fit_predict(
context=bandit_feedback["context"],
action=bandit_feedback["action"],
reward=bandit_feedback["reward"],
n_folds=3, # 3-fold cross-fitting
random_state=random_state,
)
# evaluate estimators' performances using relative estimation error (relative-ee)
ope = OffPolicyEvaluation(
bandit_feedback=bandit_feedback,
ope_estimators=ope_estimators,
)
metric_i = ope.evaluate_performance_of_estimators(
ground_truth_policy_value=ground_truth_policy_value,
action_dist=action_dist,
estimated_rewards_by_reg_model=estimated_rewards_by_reg_model,
metric="relative-ee",
)
return metric_i
processed = Parallel(
n_jobs=n_jobs,
verbose=50,
)([delayed(process)(i) for i in np.arange(n_runs)])
metric_dict = {est.estimator_name: dict() for est in ope_estimators}
for i, metric_i in enumerate(processed):
for (
estimator_name,
relative_ee_,
) in metric_i.items():
metric_dict[estimator_name][i] = relative_ee_
result_df = DataFrame(metric_dict).describe().T.round(6)
print("=" * 45)
print(f"random_state={random_state}")
print("-" * 45)
print(result_df[["mean", "std"]])
print("=" * 45)
# save results of the evaluation of off-policy estimators in './logs' directory.
log_path = Path(f"./logs/{dataset_name}")
log_path.mkdir(exist_ok=True, parents=True)
result_df.to_csv(log_path / "evaluation_of_ope_results.csv")