-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexp_nuisance.py
More file actions
executable file
·300 lines (261 loc) · 13.3 KB
/
exp_nuisance.py
File metadata and controls
executable file
·300 lines (261 loc) · 13.3 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
from absl import app
from absl import flags
from absl import logging
import numpy as np
import pandas as pd
import time
import itertools
import csv
import tensorflow as tf
from sklearn.metrics import mean_squared_error
from mdc import exp_mdc, exp_mi, exp_mf, exp_mean, exp_complete
from generate_data import gen_lrmf, gen_dlvm, ampute
from utils import compute_rv
FLAGS = flags.FLAGS
flags.DEFINE_string('exp_name', 'exp_nuisance_test', 'Experiment name.')
flags.DEFINE_string('output', None, 'Output path.')
flags.DEFINE_string('log_path', None, 'Filepath to save the execution state.')
flags.DEFINE_enum('model', None, ['dlvm', 'lrmf'],
'Data model class, can be `dlvm` or `lrmf`.')
flags.DEFINE_integer('n_observations', None, 'Number of observations.')
flags.DEFINE_integer('p_ambient', None, 'Dimesion of the ambient space.')
flags.DEFINE_float('snr', None, 'SNR in outcome generation (y0, y1).')
flags.DEFINE_float('prop_miss', None, 'Proportion of MCAR missing values.')
flags.DEFINE_bool('regularize', None, 'Regularize ATE.')
flags.DEFINE_integer('n_seeds', 5, 'Number of seed replications.')
flags.DEFINE_float('d_over_p', None, 'Ratio of d over p.')
flags.DEFINE_integer('n_imputations', None, 'Number of imputations.')
flags.DEFINE_integer('miwae_d_offset', None,
'proxy of dim. of latent space given by d + offset.')
flags.DEFINE_float('miwae_sig_prior', None,
'Variance of prior distribution on Z for MIWAE.')
flags.DEFINE_integer('miwae_n_samples_zmul', None,
'Number of samples from posterior Z|X* for MIWAE.')
flags.DEFINE_float('miwae_learning_rate', None, 'MIWAE learning rate.')
flags.DEFINE_integer('miwae_n_epochs', None,
'Number of training epochs for MIWAE.')
# Column names
## Method parameters
l_method_params = ['m','r', 'd_miwae', 'sig_prior',
'num_samples_zmul', 'learning_rate',
'n_epochs', 'elbo']
## ATE estimator names
l_tau = ['tau_dr', 'tau_ols', 'tau_ols_ps', 'tau_resid']
## Nuisance parameter estimation errors
l_nu = ['ps_hat_mse', 'y0_hat_mse', 'y1_hat_mse']
## RV coefficient for Zhat
l_zhat = ['zhat_rv']
def log_res(path, results, keys):
write_header = False
if not tf.io.gfile.exists(path):
write_header=True
with tf.io.gfile.GFile(path, 'a') as f:
csv_writer = csv.DictWriter(f, fieldnames=keys)
if write_header:
csv_writer.writeheader()
for res in results:
csv_writer.writerow(res)
def main(unused_argv):
# Data generating process parameters
exp_parameter_grid = {
'model': ["dlvm", "lrmf"] if FLAGS.model is None else [FLAGS.model],
'citcio': [False, ],
'nuisance':[True,],
'n': [500] if FLAGS.n_observations is None else [FLAGS.n_observations],
'p': [5, 10] if FLAGS.p_ambient is None else [FLAGS.p_ambient],
'snr': [1., 5.] if FLAGS.snr is None else [FLAGS.snr],
'prop_miss': [0.0, 0.3] if FLAGS.prop_miss is None else [FLAGS.prop_miss],
'regularize': [False, True] if FLAGS.regularize is None else [FLAGS.regularize],
'seed': np.arange(FLAGS.n_seeds),
}
range_d_over_p = [0.002, 0.01, 0.1] if FLAGS.d_over_p is None else [FLAGS.d_over_p]
# MDC parameters
range_d_offset = [0, 1] if FLAGS.miwae_d_offset is None else [FLAGS.miwae_d_offset]
mdc_parameter_grid = {
'sig_prior': [0.1, 1, 10] if FLAGS.miwae_sig_prior is None else [FLAGS.miwae_sig_prior],
'num_samples_zmul': [50] if FLAGS.miwae_n_samples_zmul is None else [FLAGS.miwae_n_samples_zmul],
'learning_rate': [0.0001,] if FLAGS.miwae_learning_rate is None else [FLAGS.miwae_learning_rate],
'n_epochs': [50,] if FLAGS.miwae_n_epochs is None else [FLAGS.miwae_n_epochs],
}
# MI parameters
range_m = [10,] if FLAGS.n_imputations is None else [FLAGS.n_imputations]
# Experiment and output file name
output = f'results/{FLAGS.exp_name}.csv' if FLAGS.output is None else FLAGS.output
logging.info('*'*20)
logging.info(f'Starting exp: {FLAGS.exp_name}')
logging.info('*'*20)
exp_arguments = [dict(zip(exp_parameter_grid.keys(), vals))
for vals in itertools.product(*exp_parameter_grid.values())]
previous_runs = set()
if tf.io.gfile.exists(output):
with tf.io.gfile.GFile(output, mode='r') as f:
reader = csv.DictReader(f)
for row in reader:
# Note: we need to do this conversion because DictReader creates an
# OrderedDict, and reads all values as str instead of bool or int.
previous_runs.add(str({
'model': row['model'],
'citcio': row['citcio'] == 'True',
'n': int(row['n']),
'p': int(row['p']),
'snr': float(row['snr']),
'prop_miss': float(row['prop_miss']),
'regularize': row['regularize'] == 'True',
'seed': int(row['seed']),
'd': int(row['d']),
}))
logging.info('Previous runs')
logging.info(previous_runs)
for args in exp_arguments:
## For given p, create range for d such that 1 < d < p
## starting with given ratios for d/p
#range_d = [np.maximum(2, int(np.floor(args['p']*x))) for x in range_d_over_p]
#range_d = np.unique(np.array(range_d)[np.array(range_d)<args['p']].tolist())
range_d = [1,2,]
exp_time = time.time()
for args['d'] in range_d:
res = []
if str(args) in previous_runs:
logging.info(f'Skipped {args}')
continue
else:
logging.info(f'running exp with {args}')
if args['model'] == "lrmf":
Z, X, w, y, ps, mu0, mu1 = gen_lrmf(n=args['n'], d=args['d'], p=args['p'],
y_snr=args['snr'], citcio=args['citcio'],
prop_miss=args['prop_miss'],
seed=args['seed'])
elif args['model'] == "dlvm":
Z, X, w, y, ps, mu0, mu1 = gen_dlvm(n=args['n'], d=args['d'], p=args['p'],
y_snr=args['snr'], citcio=args['citcio'],
prop_miss=args['prop_miss'],
seed=args['seed'])
X_miss = ampute(X, prop_miss = args['prop_miss'], seed = args['seed'])
# On complete data
t0 = time.time()
if args['nuisance']:
tau, nu = exp_complete(Z, X, w, y, args['regularize'], args['nuisance'])
else:
tau = exp_complete(Z, X, w, y, args['regularize'], args['nuisance'])
args['time'] = int(time.time() - t0)
row = {'Method': 'Z'}
row.update(args)
row.update(tau['Z'])
print(tau['Z'])
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['Z']['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['Z']['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['Z']['y1_hat'])})
res.append(row)
row = {'Method': 'X'}
row.update(args)
row.update(tau['X'])
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['X']['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['X']['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['X']['y1_hat'])})
res.append(row)
# Mean-imputation
t0 = time.time()
if args['nuisance']:
tau, nu = exp_mean(X_miss, w, y, args['regularize'], args['nuisance'])
else:
tau = exp_mean(X_miss, w, y, args['regularize'])
args['time'] = int(time.time() - t0)
row = {'Method': 'Mean_imp'}
row.update(args)
row.update(tau)
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['y1_hat'])})
res.append(row)
# Multiple imputation
for m in range_m:
t0 = time.time()
if args['nuisance']:
tau, nu = exp_mi(X_miss, w, y, regularize=args['regularize'], m=m, nuisance=args['nuisance'])
else:
tau = exp_mi(X_miss, w, y, regularize=args['regularize'], m=m)
args['time'] = int(time.time() - t0)
row = {'Method': 'MI', 'm': m}
row.update(args)
row.update(tau)
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['y1_hat'])})
res.append(row)
# Matrix Factorization
t0 = time.time()
if args['nuisance']:
tau, nu, r, zhat = exp_mf(X_miss, w, y, args['regularize'], args['nuisance'], return_zhat=True)
else:
tau, r = exp_mf(X_miss, w, y, args['regularize'])
args['time'] = int(time.time() - t0)
row = {'Method': 'MF', 'r': r}
row.update(args)
row.update(tau)
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['y1_hat'])})
row.update({'zhat_rv': compute_rv(Z, zhat)})
res.append(row)
# MissDeepCausal
mdc_parameter_grid['d_miwae'] = [args['d']+x for x in range_d_offset]
mdc_arguments = [dict(zip(mdc_parameter_grid.keys(), vals))
for vals in itertools.product(*mdc_parameter_grid.values())]
for mdc_arg in mdc_arguments:
t0 = time.time()
if args['nuisance']:
tau, nu, elbo, zhat, zhat_mul = exp_mdc(X_miss, w, y,
d_miwae=mdc_arg['d_miwae'],
sig_prior=mdc_arg['sig_prior'],
num_samples_zmul=mdc_arg['num_samples_zmul'],
learning_rate=mdc_arg['learning_rate'],
n_epochs=mdc_arg['n_epochs'],
regularize=args['regularize'],
nuisance=args['nuisance'],
return_zhat = True)
else:
tau, elbo, zhat, zhat_mul = exp_mdc(X_miss, w, y,
d_miwae=mdc_arg['d_miwae'],
sig_prior=mdc_arg['sig_prior'],
num_samples_zmul=mdc_arg['num_samples_zmul'],
learning_rate=mdc_arg['learning_rate'],
n_epochs=mdc_arg['n_epochs'],
regularize=args['regularize'],
return_zhat = True)
args['time'] = int(time.time() - t0)
row = {'Method': 'MDC.process', 'elbo': elbo}
row.update(args)
row.update(mdc_arg)
row.update(tau['MDC.process'])
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['MDC.process']['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['MDC.process']['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['MDC.process']['y1_hat'])})
row.update({'zhat_rv': compute_rv(Z, zhat)})
res.append(row)
row = {'Method': 'MDC.mi', 'elbo': elbo}
row.update(args)
row.update(mdc_arg)
row.update(tau['MDC.mi'])
if args['nuisance']:
row.update({'ps_hat_mse': mean_squared_error(ps, nu['MDC.mi']['ps_hat'])})
row.update({'y0_hat_mse': mean_squared_error(mu0, nu['MDC.mi']['y0_hat'])})
row.update({'y1_hat_mse': mean_squared_error(mu1, nu['MDC.mi']['y1_hat'])})
zhat_rv = []
for zhat_b in zhat_mul:
zhat_rv.append(compute_rv(Z, zhat_b))
row.update({'zhat_rv': np.mean(zhat_rv)})
res.append(row)
log_res(output, res, ['Method'] + list(args.keys()) + l_method_params + l_tau + l_nu + l_zhat)
logging.info('........... DONE')
logging.info(f'in {time.time() - exp_time} s \n\n')
logging.info('*'*20)
logging.info(f'Exp: {FLAGS.exp_name} succesfully ended.')
logging.info('*'*20)
if __name__ == "__main__":
app.run(main)