-
Notifications
You must be signed in to change notification settings - Fork 0
/
mab.jl
1027 lines (737 loc) · 39.4 KB
/
mab.jl
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using SpecialFunctions
using Distributions
using LinearAlgebra
function ep_multi_armed_bandit_simulator(ep, action_function, T, rollout_length, n_episodes, n_rollouts, n_opt_rollouts, bandit_count, a_beta, b_beta, discount, epsilon, global_bandit_param)
#bandit_param = copy(global_bandit_param)
#true_bandit_param = copy(global_bandit_param)
EPREWARDS = zeros(T)
EPOPTREWARDS = zeros(T)
for t in 1:T
action = action_function(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
EPREWARDS[t] = global_bandit_param[action]
EPOPTREWARDS[t] = maximum(global_bandit_param)
#obs = randn() * sqrt(obs_sd^2 + dot(context, bandit_posterior_covs[action,:,:],context)) + true_expected_reward
obs = 1 * (global_bandit_param[action] > rand())
# the order of the below matters for training covariance inverses computation!!!!
a_beta[action] += obs
b_beta[action] += (1-obs)
println("Ep: ", ep, " - ", t, " of ", T, " for ", String(Symbol(action_function)))
flush(stdout)
end
return EPREWARDS, EPOPTREWARDS
end
function multi_armed_bandit_simulator(action_function, T, rollout_length, n_episodes, n_rollouts, n_opt_rollouts, bandit_count, a_beta_prior, b_beta_prior, discount, epsilon)
REWARDS = zeros(T, n_episodes)
OPTREWARDS = zeros(T, n_episodes)
ep_count = 1
## USING BAYESIAN FORMULATION FOR FAIR COMPARISON
#global_bandit_param = [1 0; 0 1; 2 -1]
#threadreps = zeros(Threads.nthreads())
for ep in 1:n_episodes
a_beta = repeat([a_beta_prior], bandit_count)
b_beta = repeat([b_beta_prior], bandit_count)
global_bandit_param = rand.(Beta.(a_beta, b_beta))
EPREWARDS, EPOPTREWARDS = ep_multi_armed_bandit_simulator(ep,action_function, T, rollout_length, n_episodes, n_rollouts, n_opt_rollouts, bandit_count, a_beta, b_beta, discount, epsilon, global_bandit_param)
ep_count += 1
REWARDS[:, ep] = EPREWARDS
OPTREWARDS[:, ep] = EPOPTREWARDS
end
#print(threadreps)
return REWARDS', OPTREWARDS'
end
#########################################################################
# POLICIES
# #######################################################################
function mab_val_greedy_thompson_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim, kernel_scale, kernel_bandwidth, obs_sd, expected_rewards, variance_rewards, training_covariance_inverses)
#BANDIT_VALUES = zeros(bandit_count)
#predictive_rewards = bandit_posterior_means * context
## PREALLOCATION
#roll_context = zeros(context_dim)
roll_true_expected_rewards = zeros(bandit_count)
#roll_CovCon = zeros(context_dim)
#roll_old_cov = zeros(context_dim, context_dim)
#roll_SigInvMu = zeros(context_dim)
#temp_post_means = zeros(bandit_count, context_dim)
#temp_post_covs = zeros(bandit_count, context_dim, context_dim)
#temp_bandit_mean = zeros(context_dim)
#temp_bandit_cov = zeros(context_dim, context_dim)
bandit_param = zeros(bandit_count, context_dim)
#true_expected_rewards = zeros(bandit_count)
#grad_est = zeros(3)
policies = [gp_greedy_policy, gp_thompson_policy]
policy_values = []
println("Context Start: ", context)
flush(stdout)
lambda = [0, 0]
for policy in policies
MEAN_REWARD = 0
for roll in 1:n_opt_rollouts
#copy!(temp_post_means, bandit_posterior_means)
#copy!(temp_post_covs, bandit_posterior_covs)
#bandit_param = zeros(bandit_count, context_dim)
#for bandit in 1:bandit_count
#copy!(temp_bandit_mean, (@view bandit_posterior_means[bandit,:]))
#copy!(temp_bandit_cov, (@view bandit_posterior_covs[bandit,:,:]))
# m, C = jj_posterior_batch(X[A .== bandit,:], y[A .== bandit], prior_mean, prior_cov, .001)
# bandit_param[bandit,:] = rand(MvNormal(m, C))
#end
use_context = true
rollout_value = gp_val_rollout(ep, policy, T-t+1, rollout_length, context, use_context, lambda, context_dim, context_mean,
context_sd, obs_sd, bandit_count, discount, X, y, A, bandit_param,
roll_true_expected_rewards, kernel_scale, kernel_bandwidth, training_covariance_inverses)
A[t:T] .= 0
MEAN_REWARD = ((roll - 1) * MEAN_REWARD + rollout_value) / roll
end
push!(policy_values, MEAN_REWARD)
end
println("Context Finish: ", context)
flush(stdout)
opt_index = findmax(policy_values)[2]
opt_policy = policies[opt_index]
println("GREEDY: ", policy_values[1],", THOMPSON: ", policy_values[2])
flush(stdout)
# END OPTIMIZATION OF LAMBDA
opt_act = opt_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim, kernel_scale, kernel_bandwidth, obs_sd, expected_rewards, variance_rewards, training_covariance_inverses)
println("Optimal Action: ",opt_act)
flush(stdout)
return opt_act
end
function mab_val_greedy_thompson_ucb_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim, kernel_scale, kernel_bandwidth, obs_sd, expected_rewards, variance_rewards, training_covariance_inverses)
#BANDIT_VALUES = zeros(bandit_count)
#predictive_rewards = bandit_posterior_means * context
## PREALLOCATION
#roll_context = zeros(context_dim)
roll_true_expected_rewards = zeros(bandit_count)
#roll_CovCon = zeros(context_dim)
#roll_old_cov = zeros(context_dim, context_dim)
#roll_SigInvMu = zeros(context_dim)
#temp_post_means = zeros(bandit_count, context_dim)
#temp_post_covs = zeros(bandit_count, context_dim, context_dim)
#temp_bandit_mean = zeros(context_dim)
#temp_bandit_cov = zeros(context_dim, context_dim)
bandit_param = zeros(bandit_count, context_dim)
#true_expected_rewards = zeros(bandit_count)
#grad_est = zeros(3)
policies = [gp_greedy_policy, gp_thompson_policy, gp_glm_ucb_policy]
policy_values = []
println("Context Start: ", context)
flush(stdout)
lambda = [0, 0]
for policy in policies
MEAN_REWARD = 0
for roll in 1:n_opt_rollouts
#copy!(temp_post_means, bandit_posterior_means)
#copy!(temp_post_covs, bandit_posterior_covs)
#bandit_param = zeros(bandit_count, context_dim)
#for bandit in 1:bandit_count
#copy!(temp_bandit_mean, (@view bandit_posterior_means[bandit,:]))
#copy!(temp_bandit_cov, (@view bandit_posterior_covs[bandit,:,:]))
# m, C = jj_posterior_batch(X[A .== bandit,:], y[A .== bandit], prior_mean, prior_cov, .001)
# bandit_param[bandit,:] = rand(MvNormal(m, C))
#end
use_context = true
rollout_value = gp_val_rollout(ep, policy, T-t+1, rollout_length, context, use_context, lambda, context_dim, context_mean,
context_sd, obs_sd, bandit_count, discount, X, y, A, bandit_param,
roll_true_expected_rewards, kernel_scale, kernel_bandwidth, training_covariance_inverses)
A[t:T] .= 0
MEAN_REWARD = ((roll - 1) * MEAN_REWARD + rollout_value) / roll
end
push!(policy_values, MEAN_REWARD)
end
println("Context Finish: ", context)
flush(stdout)
opt_index = findmax(policy_values)[2]
opt_policy = policies[opt_index]
println("GREEDY: ", policy_values[1],", THOMPSON: ", policy_values[2])
flush(stdout)
# END OPTIMIZATION OF LAMBDA
opt_act = opt_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim, kernel_scale, kernel_bandwidth, obs_sd, expected_rewards, variance_rewards, training_covariance_inverses)
println("Optimal Action: ",opt_act)
flush(stdout)
return opt_act
end
function mab_val_greedy_thompson_ucb_ids_q_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
if t == 1
return rand(1:bandit_count)
end
roll_true_expected_rewards = zeros(bandit_count)
bandit_param = zeros(bandit_count, context_dim)
policies = [mab_greedy_policy, mab_thompson_policy, mab_bayes_ucb_policy, mab_ids_policy]
policy_values = []
action_samps = [pol(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts) for pol in policies]
#if length(unique(action_samps)) == 1
# println("Agreement Action: ", action_samps[1])
# flush(stdout)
# return action_samps[1]
#end
lambda = [0, 0]
bandit_param_samps = zeros(bandit_count, n_opt_rollouts)
for k in 1:bandit_count
bandit_param_samps[k, :] = rand(Beta(a_beta[k], b_beta[k]), n_opt_rollouts)
end
policy_count = length(policies)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
REWARD_SAMPS = zeros(n_opt_rollouts, length(policies))
halt_vec = repeat([false], length(policies))
rollout_counts = repeat([0], length(policies))
for roll in 1:n_opt_rollouts
MEAN_REWARD = 0
for pol_ind in 1:policy_count
if halt_vec[pol_ind]
continue
end
rollout_counts[pol_ind] += 1
bandit_param = bandit_param_samps[:, roll]
rollout_value = mab_val_rollout(ep, policies[pol_ind], T-t+1, rollout_length, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, pol_ind] = rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
policy_stds = [std(REWARD_SAMPS[1:roll, p] ./ sqrt(roll)) for p in continue_inds]
max_mean, max_ind = findmax(policy_means)
diff_means = max_mean .- policy_means
diff_stds = sqrt.(policy_stds[max_ind]^2 .+ policy_stds.^2)
pol_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(pol_expected_regret_proportions) .< expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
end
if sum(halt_vec .== false) == 1
break
end
end
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:policy_count]
policy_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:policy_count]
opt_index = continue_inds[findmax(policy_means[continue_inds])[2]]
opt_mean = policy_means[opt_index]
opt_std = policy_stds[opt_index]
println("POLICY VALUES: ", policy_means)
println("POLICY STDS: ", policy_stds)
println("OPT VALUE: ", opt_mean)
println("OPT POLICY: ", String(Symbol(policies[opt_index])))
println("POLICY ITERS: ", rollout_counts)
flush(stdout)
opt_policy = policies[opt_index]
ACTION_MEAN_REWARDS = zeros(bandit_count)
ACTION_STD_REWARDS = zeros(bandit_count)
REWARD_SAMPS = zeros(n_opt_rollouts, bandit_count)
halt_vec = repeat([false], bandit_count)
rollout_counts = repeat([0], bandit_count)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
for roll in 1:n_opt_rollouts
for action in 1:bandit_count
if halt_vec[action]
continue
end
rollout_counts[action] += 1
bandit_param = bandit_param_samps[:, roll]
obs = 1 * (bandit_param[action] > rand())
a_beta_rollout[action] += obs
b_beta_rollout[action] += (1-obs)
rollout_value = mab_val_rollout(ep, opt_policy, T-t, rollout_length-1, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, action] = bandit_param[action] + discount * rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
action_stds = [std(REWARD_SAMPS[1:roll, p]) / sqrt(roll) for p in continue_inds]
max_mean, max_ind = findmax(action_means)
diff_means = max_mean .- action_means
diff_stds = sqrt.(action_stds[max_ind]^2 .+ action_stds.^2)
action_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(action_expected_regret_proportions) .< action_expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
if (sum(halt_vec .== false) == 1)
break
end
end
end
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:bandit_count]
action_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:bandit_count]
opt_action_index = continue_inds[findmax(action_means[continue_inds])[2]]
opt_action_mean = action_means[opt_action_index]
opt_action_std = action_stds[opt_action_index]
println("ACTION VALUES: ", action_means)
println("ACTION STDS: ", action_stds)
println("OPT VALUE: ", opt_action_mean)
println("OPT ACTION: ", opt_action_index)
println("ACTION ITERS: ", rollout_counts)
flush(stdout)
return opt_action_index
end
function mab_val_greedy_thompson_ucb_ids_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
if t == 1
return rand(1:bandit_count)
end
roll_true_expected_rewards = zeros(bandit_count)
bandit_param = zeros(bandit_count, context_dim)
policies = [mab_greedy_policy, mab_thompson_policy, mab_bayes_ucb_policy, mab_ids_policy]
policy_values = []
action_samps = [pol(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts) for pol in policies]
if length(unique(action_samps)) == 1
println("Agreement Action: ", action_samps[1])
flush(stdout)
return action_samps[1]
end
lambda = [0, 0]
bandit_param_samps = zeros(bandit_count, n_opt_rollouts)
for k in 1:bandit_count
bandit_param_samps[k, :] = rand(Beta(a_beta[k], b_beta[k]), n_opt_rollouts)
end
policy_count = length(policies)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
REWARD_SAMPS = zeros(n_opt_rollouts, length(policies))
halt_vec = repeat([false], length(policies))
rollout_counts = repeat([0], length(policies))
same_break = false
for roll in 1:n_opt_rollouts
MEAN_REWARD = 0
for pol_ind in 1:policy_count
if halt_vec[pol_ind]
continue
end
rollout_counts[pol_ind] += 1
bandit_param = bandit_param_samps[:, roll]
rollout_value = mab_val_rollout(ep, policies[pol_ind], T-t+1, rollout_length, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, pol_ind] = rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
policy_stds = [std(REWARD_SAMPS[1:roll, p] ./ sqrt(roll)) for p in continue_inds]
max_mean, max_ind = findmax(policy_means)
diff_means = max_mean .- policy_means
diff_stds = sqrt.(policy_stds[max_ind]^2 .+ policy_stds.^2)
pol_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(pol_expected_regret_proportions) .< expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
continue_inds = findall(halt_vec .== false)
if length(unique(action_samps[continue_inds])) == 1
println("REMAINING POLICIES HAVE SAME ACTION")
same_break = true
end
end
if same_break
break
end
if sum(halt_vec .== false) == 1
break
end
end
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:policy_count]
policy_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:policy_count]
opt_index = continue_inds[findmax(policy_means[continue_inds])[2]]
opt_mean = policy_means[opt_index]
opt_std = policy_stds[opt_index]
println("POLICY VALUES: ", policy_means)
println("POLICY STDS: ", policy_stds)
println("OPT VALUE: ", opt_mean)
println("OPT POLICY: ", String(Symbol(policies[opt_index])))
println("POLICY ITERS: ", rollout_counts)
flush(stdout)
opt_policy = policies[opt_index]
return opt_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ACTION_MEAN_REWARDS = zeros(bandit_count)
ACTION_STD_REWARDS = zeros(bandit_count)
REWARD_SAMPS = zeros(n_opt_rollouts, bandit_count)
halt_vec = repeat([false], bandit_count)
rollout_counts = repeat([0], bandit_count)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
for roll in 1:n_opt_rollouts
for action in 1:bandit_count
if halt_vec[action]
continue
end
rollout_counts[action] += 1
bandit_param = bandit_param_samps[:, roll]
obs = 1 * (bandit_param[action] > rand())
a_beta_rollout[action] += obs
b_beta_rollout[action] += (1-obs)
rollout_value = mab_val_rollout(ep, opt_policy, T-t, rollout_length-1, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, action] = bandit_param[action] + discount * rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
action_stds = [std(REWARD_SAMPS[1:roll, p]) / sqrt(roll) for p in continue_inds]
max_mean, max_ind = findmax(action_means)
diff_means = max_mean .- action_means
diff_stds = sqrt.(action_stds[max_ind]^2 .+ action_stds.^2)
action_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(action_expected_regret_proportions) .< action_expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
if (sum(halt_vec .== false) == 1)
break
end
end
end
end
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:bandit_count]
action_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:bandit_count]
opt_action_index = continue_inds[findmax(action_means[continue_inds])[2]]
opt_action_mean = action_means[opt_action_index]
opt_action_std = action_stds[opt_action_index]
println("ACTION VALUES: ", action_means)
println("ACTION STDS: ", action_stds)
println("OPT VALUE: ", opt_action_mean)
println("OPT ACTION: ", opt_action_index)
println("ACTION ITERS: ", rollout_counts)
flush(stdout)
return opt_action_index
end
function mab_ids_multi_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
if t == 1
return rand(1:bandit_count)
end
roll_true_expected_rewards = zeros(bandit_count)
bandit_param = zeros(bandit_count, context_dim)
policies = [mab_ids_policy, mab_ids_1_policy, mab_ids_1_5_policy, mab_ids_2_5_policy, mab_ids_3_policy]
policy_values = []
action_samps = [pol(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts) for pol in policies]
if length(unique(action_samps)) == 1
println("Agreement Action: ", action_samps[1])
flush(stdout)
return action_samps[1]
end
lambda = [0, 0]
bandit_param_samps = zeros(bandit_count, n_opt_rollouts)
for k in 1:bandit_count
bandit_param_samps[k, :] = rand(Beta(a_beta[k], b_beta[k]), n_opt_rollouts)
end
policy_count = length(policies)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
REWARD_SAMPS = zeros(n_opt_rollouts, length(policies))
halt_vec = repeat([false], length(policies))
rollout_counts = repeat([0], length(policies))
same_break = false
for roll in 1:n_opt_rollouts
MEAN_REWARD = 0
for pol_ind in 1:policy_count
if halt_vec[pol_ind]
continue
end
rollout_counts[pol_ind] += 1
bandit_param = bandit_param_samps[:, roll]
rollout_value = mab_val_rollout(ep, policies[pol_ind], T-t+1, rollout_length, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, pol_ind] = rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
policy_stds = [std(REWARD_SAMPS[1:roll, p] ./ sqrt(roll)) for p in continue_inds]
max_mean, max_ind = findmax(policy_means)
diff_means = max_mean .- policy_means
diff_stds = sqrt.(policy_stds[max_ind]^2 .+ policy_stds.^2)
pol_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(pol_expected_regret_proportions) .< expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
continue_inds = findall(halt_vec .== false)
if length(unique(action_samps[continue_inds])) == 1
println("REMAINING POLICIES HAVE SAME ACTION")
same_break = true
end
end
if same_break
break
end
if sum(halt_vec .== false) == 1
break
end
end
continue_inds = findall(halt_vec .== false)
policy_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:policy_count]
policy_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:policy_count]
opt_index = continue_inds[findmax(policy_means[continue_inds])[2]]
opt_mean = policy_means[opt_index]
opt_std = policy_stds[opt_index]
println("POLICY VALUES: ", policy_means)
println("POLICY STDS: ", policy_stds)
println("OPT VALUE: ", opt_mean)
println("OPT POLICY: ", String(Symbol(policies[opt_index])))
println("POLICY ITERS: ", rollout_counts)
flush(stdout)
opt_policy = policies[opt_index]
return opt_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ACTION_MEAN_REWARDS = zeros(bandit_count)
ACTION_STD_REWARDS = zeros(bandit_count)
REWARD_SAMPS = zeros(n_opt_rollouts, bandit_count)
halt_vec = repeat([false], bandit_count)
rollout_counts = repeat([0], bandit_count)
a_beta_rollout = copy(a_beta)
b_beta_rollout = copy(b_beta)
for roll in 1:n_opt_rollouts
for action in 1:bandit_count
if halt_vec[action]
continue
end
rollout_counts[action] += 1
bandit_param = bandit_param_samps[:, roll]
obs = 1 * (bandit_param[action] > rand())
a_beta_rollout[action] += obs
b_beta_rollout[action] += (1-obs)
rollout_value = mab_val_rollout(ep, opt_policy, T-t, rollout_length-1, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
REWARD_SAMPS[roll, action] = bandit_param[action] + discount * rollout_value
for k in 1:bandit_count
a_beta_rollout[k] = a_beta[k]
b_beta_rollout[k] = b_beta[k]
end
if roll % 100 == 0
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:roll, p]) for p in continue_inds]
action_stds = [std(REWARD_SAMPS[1:roll, p]) / sqrt(roll) for p in continue_inds]
max_mean, max_ind = findmax(action_means)
diff_means = max_mean .- action_means
diff_stds = sqrt.(action_stds[max_ind]^2 .+ action_stds.^2)
action_expected_regret_proportions = (diff_means .* cdf.(Normal(), -diff_means ./ diff_stds) .- diff_stds .* pdf.(Normal(), -diff_means ./ diff_stds)) ./ max_mean
halt_vec[continue_inds] = (abs.(action_expected_regret_proportions) .< action_expected_regret_thresh)
halt_vec[continue_inds[max_ind]] = false
if (sum(halt_vec .== false) == 1)
break
end
end
end
end
continue_inds = findall(halt_vec .== false)
action_means = [mean(REWARD_SAMPS[1:rollout_counts[p], p]) for p in 1:bandit_count]
action_stds = [std(REWARD_SAMPS[1:rollout_counts[p], p]) / sqrt(rollout_counts[p]) for p in 1:bandit_count]
opt_action_index = continue_inds[findmax(action_means[continue_inds])[2]]
opt_action_mean = action_means[opt_action_index]
opt_action_std = action_stds[opt_action_index]
println("ACTION VALUES: ", action_means)
println("ACTION STDS: ", action_stds)
println("OPT VALUE: ", opt_action_mean)
println("OPT ACTION: ", opt_action_index)
println("ACTION ITERS: ", rollout_counts)
flush(stdout)
return opt_action_index
end
function mab_val_rollout(ep, policy, T_remainder, rollout_length, bandit_count, discount, a_beta_rollout, b_beta_rollout, bandit_param)
disc_reward = 0
#fill!(context, 0.0)
#fill!(CovCon, 0.0)
#fill!(old_cov,0.0)
#fill!(SigInvMu,0.0)
truncation_length = T_remainder - min(T_remainder, rollout_length)
t_curr = T - T_remainder + 1
#rollout_training_covariance_inverses = copy(training_covariance_inverses)
for t in 1:min(T_remainder, rollout_length)
#context_seed = rand(1:context_dim)
#fill!(context, zero(context[1]))
#context[context_seed] = 1
#mul!(true_expected_rewards, bandit_param, context)
action = policy(ep, t_curr + t - 1, min(T_remainder, rollout_length), bandit_count, a_beta_rollout, b_beta_rollout, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
# TRUE PARAM VERSION
#true_expected_reward = true_expected_rewards[action]
#disc_reward += true_expected_reward * discount^(t-1)
#obs = randn() * obs_sd + true_expected_reward
disc_reward += bandit_param[action] * discount^(t-1)
obs = 1 * (bandit_param[action] > rand())
# order of below matters for covariance inverses !!!
a_beta_rollout[action] += obs
b_beta_rollout[action] += (1-obs)
# UNKNOWN PARAM VERSION
end
if truncation_length > 0
t_trunc = t_curr + min(T_remainder, rollout_length)
reg_est = 0
for n in 1:1
true_regs = findmax(bandit_param)[1] .- bandit_param
if String(Symbol(policy)) == "mab_thompson_policy"
for m in 1:500
action = policy(ep, t_trunc, min(T_remainder, rollout_length), bandit_count, a_beta_rollout, b_beta_rollout, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
reg_est *= ((n-1)*500 + m - 1) / ((n-1)*500 + m)
reg_est += true_regs[action] / ((n-1)*500 + m)
end
else
action = policy(ep, t_trunc, min(T_remainder, rollout_length), bandit_count, a_beta_rollout, b_beta_rollout, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
reg_est = true_regs[action]
end
#reg_est *= (n-1) / n
#reg_est += (findmax(point_samps)[1] - point_samps[action]) / n
end
disc_reward -= .9 * discount^min(T_remainder, rollout_length) * sum(discount^(t - t_trunc) * reg_est * (T - t) / (T - t_trunc) for t in t_trunc:T)
end
return disc_reward
end
# Greedy
function mab_greedy_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
#bandit_expected_rewards = zeros(bandit_count)
#for k in 1:bandit_count
# m, C = gp_posterior(context, X[A .== k, :], y[A .== k], kernel_scale, kernel_bandwidth, obs_sd)
# bandit_expected_rewards[k] = m
#end
#val, action = findmax(bandit_expected_rewards)
return findmax(a_beta ./ (a_beta .+ b_beta))[2]
end
# Epsilon Greedy NOT DONE
function gp_epsilon_greedy_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim)
epsilon_draw = rand()
if decreasing
thresh = epsilon / t
else
thresh = epsilon
end
if epsilon_draw < thresh
return rand(1:bandit_count)
else
val, action = findmax(bandit_posterior_means * context)
return(action)
end
end
# Bayes UCB NOT DONE
function mab_bayes_ucb_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ucbs = quantile.(Beta.(a_beta, b_beta), 1-1/t)
return findmax(ucbs)[2]
end
# Bayes UCB
function gp_glm_ucb_policy(ep, t, T, bandit_count, context, X, y, A, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts, context_dim, kernel_scale, kernel_bandwidth, obs_sd, expected_rewards, variance_rewards, training_covariance_inverses)
#val, action = findmax(bandit_posterior_means * context)
#reward_means = zeros(bandit_count)
#reward_sds = zeros(bandit_count)
#for k in 1:bandit_count
# m, C = gp_posterior(context, X[A .== k,:], y[A .== k], kernel_scale, kernel_bandwidth, obs_sd)
# reward_means[k] = m
# reward_sds[k] = sqrt(C)
#end
ucbs = expected_rewards .+ max(1,sqrt(log(t))) .* sqrt.(variance_rewards)
return findmax(ucbs)[2]
end
# Thompson
function mab_thompson_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
#thompson_means = zeros(bandit_count)
#for k in 1:bandit_count
# m, C = gp_posterior(context, X[A .== k,:], y[A .== k], kernel_scale, kernel_bandwidth, obs_sd)
# thompson_means[k] = m + sqrt(C) * randn()
#end
return findmax(rand.(Beta.(a_beta, b_beta)))[2]
end
## IDS POLICY
# IDS NOT DONE
function mab_ids_expected_regrets(a_beta, b_beta, niter)
reward_draws = mapreduce(permutedims, vcat, rand.(Beta.(a_beta, b_beta), niter))
mean_rewards = dropdims(mean(reward_draws, dims = 2), dims = 2)
mean_max_reward = 0
for i in 1:niter
mean_max_reward += findmax(reward_draws[:, i])[1] / niter
end
res = max.(0, mean_max_reward .- mean_rewards)
return res
end
function beta_entropy(a, b)
return logbeta(a, b) - (a - 1) * digamma(a) - (b - 1) * digamma(b) + (a + b - 2) * digamma(a + b)
end
function mab_ids_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^2 ./ ent_gains)[2]
end
function mab_ids_1_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets ./ ent_gains)[2]
end
function mab_ids_4_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^4 ./ ent_gains)[2]
end
function mab_ids_8_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^8 ./ ent_gains)[2]
end
function mab_ids_1_5_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^8 ./ ent_gains)[2]
end
function mab_ids_2_5_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^8 ./ ent_gains)[2]
end
function mab_ids_3_policy(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
ent_0 = beta_entropy.(a_beta, b_beta)
ent_gains = ent_0 .- (a_beta .* beta_entropy.(a_beta .+ 1, b_beta) .+ b_beta .* beta_entropy.(a_beta, b_beta .+ 1)) ./ (a_beta .+ b_beta)
mab_expected_regrets = mab_ids_expected_regrets(a_beta, b_beta, 1000)
return findmax(-1 .* mab_expected_regrets.^8 ./ ent_gains)[2]
end
function mab_get_action_probs(policy_list, ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
out = zeros(length(policy_list), bandit_count)
for i in eachindex(policy_list)
pol = policy_list[i]
if pol == mab_thompson_policy
for j in 1:1000
out[i, pol(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)] += 1
end
out[i, :] ./= 1000
else
out[i, pol(ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)] += 1
end
end
return out
end
function ep_multi_armed_bandit_simulator(ep, action_function::exp4, T, rollout_length, n_episodes, n_rollouts, n_opt_rollouts, bandit_count, a_beta, b_beta, discount, epsilon, global_bandit_param)
#bandit_param = copy(global_bandit_param)
#true_bandit_param = copy(global_bandit_param)
EPREWARDS = zeros(T)
EPOPTREWARDS = zeros(T)
E_star_t = 0
for t in 1:T
action_probs_matrix = mab_get_action_probs(action_function.policy_list, ep, t, T, bandit_count, a_beta, b_beta, discount, epsilon, rollout_length, n_rollouts, n_opt_rollouts)
action_probs = action_probs_matrix' * action_function.policy_probs
action = sample(1:bandit_count, Weights(action_probs))