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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264 | """Runs various QD algorithms on the sphere linear projection benchmark.
Install the following dependencies before running this example:
pip install ribs[visualize] torch tqdm fire
The sphere function in this example is adapted from Section 4 of Fontaine 2020
(https://arxiv.org/abs/1912.02400). Namely, each solution value is clipped to the range
[-5.12, 5.12], and the optimum is moved from [0,..] to [0.4 * 5.12 = 2.048,..].
Furthermore, the objectives are normalized to the range [0, 100] where 100 is the
maximum and corresponds to 0 on the original sphere function.
There are two measures in this example. The first is the sum of the first n/2 clipped
values of the solution, and the second is the sum of the last n/2 clipped values of the
solution. Having each measure depend equally on several values in the solution space
makes the problem more difficult (refer to Fontaine 2020 for more info).
We support a number of algorithms in this script. The parameters for each algorithm are
stored in CONFIG. The parameters roughly reproduce the results from the CMA-MAE paper
(Fontaine 2023, https://arxiv.org/abs/2205.10752), i.e., they use the following
settings:
- Archives have 10,000 cells, either as a 100x100 grid archive or a 10,000-cell CVT
archive.
- Each algorithm generates 540 solutions every iteration, typically as one emitter
generating 540 solutions or 15 emitters generating 36 solutions each.
- We default to run each algorithm for 10,000 iterations.
- We default to run on the 100-dimensional version of the sphere problem.
Below we list the algorithms available.
MAP-Elites and MAP-Elites (line):
- `map_elites`: GridArchive with GaussianEmitter.
- `line_map_elites`: GridArchive with IsoLineEmitter.
- `cvt_map_elites`: CVTArchive with GaussianEmitter.
- `line_cvt_map_elites`: CVTArchive with IsoLineEmitter.
Multi-Emitter MAP-Elites:
- `me_map_elites`: MAP-Elites with Bandit Scheduler.
CMA-ME:
- `cma_me_imp`: GridArchive with EvolutionStrategyEmitter using
TwoStageImprovmentRanker; this is the suggested version of CMA-ME.
- `cma_me_imp_mu`: GridArchive with EvolutionStrategyEmitter using
TwoStageImprovmentRanker and mu selection rule.
- `cma_me_basic`: GridArchive with EvolutionStrategyEmitter using
TwoStageImprovmentRanker, mu selection rule, and basic restart rule. This is the
version of CMA-ME that was used as a baseline in Fontaine 2023.
- `cma_me_rd`: GridArchive with EvolutionStrategyEmitter using RandomDirectionRanker.
- `cma_me_rd_mu`: GridArchive with EvolutionStrategyEmitter using
TwoStageRandomDirectionRanker and mu selection rule.
- `cma_me_opt`: GridArchive with EvolutionStrategyEmitter using ObjectiveRanker with mu
selection rule.
- `cma_me_mixed`: GridArchive with EvolutionStrategyEmitter, where half (7) of the
emitters use TwoStageRandomDirectionRanker and half (8) use TwoStageImprovementRanker.
DQD algorithms:
- `og_map_elites`: GridArchive with GradientOperatorEmitter; does not use measure
gradients.
- `omg_mega`: GridArchive with GradientOperatorEmitter; uses measure gradients.
- `cma_mega`: GridArchive with GradientArborescenceEmitter.
- `cma_mega_adam`: GridArchive with GradientArborescenceEmitter using Adam Optimizer.
CMA-MAE and CMA-MAEGA:
- `cma_mae`: GridArchive (learning_rate = 0.01) with EvolutionStrategyEmitter using
ImprovementRanker.
- `cma_maega`: GridArchive (learning_rate = 0.01) with GradientArborescenceEmitter using
ImprovementRanker.
Novelty Search:
- `ns_cma`: Novelty Search with CMA-ES; implemented using a ProximityArchive with
EvolutionStrategyEmitter. Results are stored in a passive GridArchive. Note that the
objective will not be optimized in this case.
- `nslc_cma_imp`: EvolutionStrategyEmitter with a ProximityArchive with local
competition turned on. Thus, the archive returns two-stage improvement information
that is fed to the EvolutionStrategyEmitter just like in CMA-ME.
DDS:
- `dds`: Density Descent Search (Lee 2024; https://arxiv.org/abs/2312.11331) with a KDE
as the density estimator. Uses DensityArchive and EvolutionStrategyEmitter with
DensityRanker.
- `dds_kde_sklearn`: Density Descent Search using scikit-learn's KernelDensity as the
density estimator.
DMS:
- `dms`: Discount Model Search (Tjanaka 2026, https://discount-models.github.io/), with
the MLP discount model proposed in that paper. Note that the results presented in
Tjanaka 2026 were with a version of the sphere domain that normalized the objectives
to [0, 1], whereas this script uses objectives in [0, 100]. To convert results,
multiply the QD Score from that paper by 100.
Outputs are saved in the `sphere_output/` directory by default. The archive is saved as
a CSV named `{algorithm}_{dim}_archive.csv`, while snapshots of the heatmap are saved as
`{algorithm}_{dim}_heatmap_{iteration}.png`. Metrics about the run are also saved in
`{algorithm}_{dim}_metrics.json`, and plots of the metrics are saved in PNG's with the
name `{algorithm}_{dim}_metric_name.png`.
To generate a video of the heatmap from the heatmap images, use a tool like ffmpeg. For
example, the following will generate a 6 FPS (Frames Per Second) video showing the
heatmap for cma_me_imp with 100 dims.
ffmpeg -r 6 -i "sphere_output/cma_me_imp_100_heatmap_%*.png" \
sphere_output/cma_me_imp_100_heatmap_video.mp4
Usage (see sphere_main function for all args or run `python sphere.py --help`):
python sphere.py ALGORITHM
Example:
python sphere.py map_elites
# To make numpy and sklearn run single-threaded, set env variables for BLAS
# and OpenMP:
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 python sphere.py map_elites 100
Help:
python sphere.py --help
"""
from __future__ import annotations
import copy
import json
import time
from pathlib import Path
import fire
import matplotlib.pyplot as plt
import numpy as np
import torch
import tqdm
from ribs.archives import (
ArchiveBase,
CVTArchive,
DensityArchive,
DiscountArchive,
GridArchive,
ProximityArchive,
)
from ribs.discount_models import MLP, DiscountModelManager
from ribs.emitters import (
EvolutionStrategyEmitter,
GaussianEmitter,
GradientArborescenceEmitter,
GradientOperatorEmitter,
IsoLineEmitter,
)
from ribs.schedulers import BanditScheduler, Scheduler
from ribs.visualize import cvt_archive_heatmap, grid_archive_heatmap
CONFIG = {
## MAP-Elites and MAP-Elites (line) ##
"map_elites": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": GaussianEmitter,
"kwargs": {
"sigma": 0.5,
"batch_size": 540,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"line_map_elites": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": IsoLineEmitter,
"kwargs": {
"iso_sigma": 0.5,
"line_sigma": 0.2,
"batch_size": 540,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cvt_map_elites": {
"is_dqd": False,
"archive": {
"class": CVTArchive,
"kwargs": {
"cells": 10000,
"samples": 100000,
"nearest_neighbors": "scipy_kd_tree",
},
},
"result_archive": None,
"emitters": [
{
"class": GaussianEmitter,
"kwargs": {
"sigma": 0.5,
"batch_size": 540,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"line_cvt_map_elites": {
"is_dqd": False,
"archive": {
"class": CVTArchive,
"kwargs": {
"cells": 10000,
"samples": 100000,
"nearest_neighbors": "scipy_kd_tree",
},
},
"result_archive": None,
"emitters": [
{
"class": IsoLineEmitter,
"kwargs": {
"iso_sigma": 0.5,
"line_sigma": 0.2,
"batch_size": 540,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## Multi-Emitter MAP-Elites (ME-MAP-Elites) ##
"me_map_elites": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "obj",
"batch_size": 36,
},
"num_emitters": 15,
},
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2rd",
"batch_size": 36,
},
"num_emitters": 15,
},
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"batch_size": 36,
},
"num_emitters": 15,
},
{
"class": IsoLineEmitter,
"kwargs": {
"iso_sigma": 0.01,
"line_sigma": 0.1,
"batch_size": 36,
},
"num_emitters": 15,
},
],
"scheduler": {
"class": BanditScheduler,
"kwargs": {
"num_active": 15,
"reselect": "terminated",
},
},
},
## CMA-ME ##
"cma_me_imp": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"selection_rule": "filter",
"restart_rule": "no_improvement",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_imp_mu": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"selection_rule": "mu",
"restart_rule": "no_improvement",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_basic": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_rd": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2rd",
"selection_rule": "filter",
"restart_rule": "no_improvement",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_rd_mu": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2rd",
"selection_rule": "mu",
"restart_rule": "no_improvement",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_opt": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "obj",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_me_mixed": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2rd",
"batch_size": 36,
},
"num_emitters": 7,
},
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"batch_size": 36,
},
"num_emitters": 8,
},
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## DQD algorithms ##
"og_map_elites": {
"is_dqd": True,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": GradientOperatorEmitter,
"kwargs": {
"sigma": 0.5,
"sigma_g": 0.5,
"measure_gradients": False,
"normalize_grad": False,
# Divide by 2 since half of the solutions are used in ask_dqd(),
# and the other half are used in ask().
"batch_size": 540 // 2,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"omg_mega": {
"is_dqd": True,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": GradientOperatorEmitter,
"kwargs": {
"sigma": 0.0,
"sigma_g": 10.0,
"measure_gradients": True,
"normalize_grad": True,
# Divide by 2 since half of the solutions are used in ask_dqd(),
# and the other half are used in ask().
"batch_size": 540 // 2,
},
"num_emitters": 1,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_mega": {
"is_dqd": True,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": GradientArborescenceEmitter,
"kwargs": {
"sigma0": 10.0,
"lr": 1.0,
"grad_opt": "gradient_ascent",
"selection_rule": "mu",
# Subtract 1 since one solution is used in ask_dqd() and the
# rest are used in ask().
"batch_size": 36 - 1,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_mega_adam": {
"is_dqd": True,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"result_archive": None,
"emitters": [
{
"class": GradientArborescenceEmitter,
"kwargs": {
"sigma0": 10.0,
"lr": 0.002,
"grad_opt": "adam",
"selection_rule": "mu",
# Subtract 1 since one solution is used in ask_dqd() and the
# rest are used in ask().
"batch_size": 36 - 1,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## CMA-MAE and CMA-MAEGA ##
"cma_mae": {
"is_dqd": False,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
"threshold_min": 0,
"learning_rate": 0.01,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "imp",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"cma_maega": {
"is_dqd": True,
"archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
"threshold_min": 0,
"learning_rate": 0.01,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": GradientArborescenceEmitter,
"kwargs": {
"sigma0": 10.0,
"lr": 1.0,
"ranker": "imp",
"grad_opt": "gradient_ascent",
"restart_rule": "basic",
# Subtract 1 since one solution is used in ask_dqd() and the
# rest are used in ask().
"batch_size": 36 - 1,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## Novelty Search ##
"ns_cma": {
# Hyperparameters from DDS paper: https://arxiv.org/abs/2312.11331
"is_dqd": False,
"archive": {
"class": ProximityArchive,
"kwargs": {
"k_neighbors": 15,
"novelty_threshold": 0.037 * 512,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "nov",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"nslc_cma_imp": {
"is_dqd": False,
"archive": {
"class": ProximityArchive,
"kwargs": {
"k_neighbors": 15,
# Note: This is untuned.
"novelty_threshold": 0.037 * 100,
"local_competition": True,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "2imp",
"selection_rule": "filter",
"restart_rule": "no_improvement",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## DDS ##
"dds": {
# Hyperparameters from DDS paper: https://arxiv.org/abs/2312.11331
"is_dqd": False,
# In DDS, the DensityArchive does not store any solutions, so emitters
# must use the result archive instead.
"pass_result_archive_to_emitters": True,
"archive": {
"class": DensityArchive,
"kwargs": {
"buffer_size": 10000,
"density_method": "kde",
"bandwidth": 25.6,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 1.5,
"ranker": "density",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
"dds_kde_sklearn": {
# Hyperparameters from DDS paper: https://arxiv.org/abs/2312.11331
"is_dqd": False,
# In DDS, the DensityArchive does not store any solutions, so emitters
# must use the result archive instead.
"pass_result_archive_to_emitters": True,
"archive": {
"class": DensityArchive,
"kwargs": {
# `density_method` and `sklearn_kwargs` are the only differences
# from the `dds` config above. `kde_sklearn` tends to be slower
# but it has more options available.
"buffer_size": 10000,
"density_method": "kde_sklearn",
"bandwidth": 25.6,
"sklearn_kwargs": {
"kernel": "gaussian",
},
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 1.5,
"ranker": "density",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
## DMS ##
"dms": {
# Hyperparameters from DMS paper: https://discount-models.github.io/
"is_dqd": False,
# In DMS, the DiscountArchive does not store any solutions, so emitters
# must use the result archive instead.
"pass_result_archive_to_emitters": True,
"model": {
"class": MLP,
"kwargs": {
# The `None` is filled in with measure_dim in `create_scheduler`.
"layer_specs": [[None, 128], [128, 128], [128, 1]],
"activation": torch.nn.ReLU,
},
},
"optimizer": {
"class": torch.optim.Adam,
"kwargs": {
"lr": 0.001,
"betas": [0.9, 0.999],
},
},
"discount_model_manager": {
"class": DiscountModelManager,
"kwargs": {
"train_epochs": 5,
"train_cutoff_loss": 0.05,
"train_batch_size": 32,
"normalize_measures": "negative_one_one",
# Normalizing the discounts speeds up the algorithm because the discount
# model requires less training to match the targets, since they are
# between 0-1 instead of 0-100 -- neural networks generally work better
# with inputs around -1 to 1.
"normalize_discount": "zero_one",
},
},
"archive": {
"class": DiscountArchive,
"kwargs": {
"learning_rate": 0.1,
"threshold_min": 0,
"init_train_points": 1000,
"empty_points": 100,
},
},
"result_archive": {
"class": GridArchive,
"kwargs": {
"dims": (100, 100),
},
},
"emitters": [
{
"class": EvolutionStrategyEmitter,
"kwargs": {
"sigma0": 0.5,
"ranker": "imp",
"selection_rule": "mu",
"restart_rule": "basic",
"batch_size": 36,
},
"num_emitters": 15,
}
],
"scheduler": {
"class": Scheduler,
"kwargs": {},
},
},
}
def sphere(
solutions: np.ndarray,
) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]:
"""Sphere function evaluation and measures for a batch of solutions.
Args:
solutions: (batch_size, dim) batch of solutions.
Returns:
objectives: (batch_size,) batch of objectives.
objective_grads: (batch_size, solution_dim) batch of objective gradients.
measures: (batch_size, 2) batch of measures.
measure_grads: (batch_size, 2, solution_dim) batch of measure gradients.
"""
dim = solutions.shape[1]
# Shift the Sphere function so that the optimal value is at x_i = 2.048.
sphere_shift = 5.12 * 0.4
# Normalize the objective to the range [0, 100] where 100 is optimal.
best_obj = 0.0
worst_obj = (-5.12 - sphere_shift) ** 2 * dim
raw_obj = np.sum(np.square(solutions - sphere_shift), axis=1)
objectives = (raw_obj - worst_obj) / (best_obj - worst_obj) * 100
# Compute gradient of the objective.
objective_grads = -2 * (solutions - sphere_shift)
# Calculate measures.
clipped = solutions.copy()
clip_mask = (clipped < -5.12) | (clipped > 5.12)
clipped[clip_mask] = 5.12 / clipped[clip_mask]
measures = np.concatenate(
(
np.sum(clipped[:, : dim // 2], axis=1, keepdims=True),
np.sum(clipped[:, dim // 2 :], axis=1, keepdims=True),
),
axis=1,
)
# Compute gradient of the measures.
derivatives = np.ones(solutions.shape)
derivatives[clip_mask] = -5.12 / np.square(solutions[clip_mask])
mask_0 = np.concatenate((np.ones(dim // 2), np.zeros(dim - dim // 2)))
mask_1 = np.concatenate((np.zeros(dim // 2), np.ones(dim - dim // 2)))
d_measure0 = derivatives * mask_0
d_measure1 = derivatives * mask_1
measure_grads = np.stack((d_measure0, d_measure1), axis=1)
return (
objectives,
objective_grads,
measures,
measure_grads,
)
def create_scheduler(
config: dict, algorithm: str, seed: int | None = None
) -> Scheduler:
"""Creates a scheduler based on the algorithm.
Args:
config: Configuration dictionary with parameters for the various components.
algorithm: Name of the algorithm.
seed: Main seed for the various components.
Returns:
ribs.schedulers.Scheduler: A ribs scheduler for running the algorithm.
"""
# Properties of the Sphere problem.
solution_dim = config["dim"]
max_bound = solution_dim / 2 * 5.12
bounds = [(-max_bound, max_bound), (-max_bound, max_bound)]
obj_low = 0.0 # There is actually no lower bound, but this is a good value.
obj_high = 100.0
initial_sol = np.zeros(solution_dim)
# Create result archive.
if config["result_archive"] is None:
result_archive = None
else:
result_archive = config["result_archive"]["class"](
solution_dim=solution_dim,
# Note that using ranges here means we assume the result archive is a
# GridArchive or CVTArchive. This will need to be modified for other result
# archives.
ranges=bounds,
seed=seed,
**config["result_archive"]["kwargs"],
)
# Create archive.
archive_class = config["archive"]["class"]
if archive_class == ProximityArchive:
# Takes `measure_dim` instead of `ranges`.
archive = archive_class(
solution_dim=solution_dim,
measure_dim=len(bounds),
seed=seed,
**config["archive"]["kwargs"],
)
elif archive_class == DensityArchive:
archive = archive_class(
measure_dim=len(bounds),
seed=seed,
**config["archive"]["kwargs"],
)
elif archive_class == DiscountArchive:
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
# Fill in measure_dim in the config.
config["model"]["kwargs"]["layer_specs"][0][0] = len(bounds)
model = config["model"]["class"](**config["model"]["kwargs"])
model.to(device)
optimizer = config["optimizer"]["class"](
params=model.parameters(),
**config["optimizer"]["kwargs"],
)
discount_model_manager = config["discount_model_manager"]["class"](
model=model,
optimizer=optimizer,
device=device,
measures_low=[b[0] for b in bounds],
measures_high=[b[1] for b in bounds],
discount_low=obj_low,
discount_high=obj_high,
**config["discount_model_manager"]["kwargs"],
)
archive = archive_class(
solution_dim=solution_dim,
measure_dim=len(bounds),
discount_model_manager=discount_model_manager,
result_archive=result_archive,
seed=seed,
**config["archive"]["kwargs"],
)
else:
archive = archive_class(
solution_dim=solution_dim,
ranges=bounds,
seed=seed,
**config["archive"]["kwargs"],
)
# Usually, emitters take in the archive. However, it may sometimes be necessary to
# take in the result_archive, such as in DDS.
archive_for_emitter = (
result_archive if config.get("pass_result_archive_to_emitters") else archive
)
# Create emitters. Each emitter needs a different seed so that they do not all do
# the same thing, hence we create an rng here to generate seeds. The rng may be
# seeded with None or with a user-provided seed.
seed_sequence = np.random.SeedSequence(seed)
emitters = []
for e in config["emitters"]:
emitter_class = e["class"]
emitters += [
emitter_class(
archive_for_emitter,
x0=initial_sol,
**e["kwargs"],
seed=s,
)
for s in seed_sequence.spawn(e["num_emitters"])
]
# Create Scheduler
scheduler = config["scheduler"]["class"](
archive,
emitters,
result_archive,
**config["scheduler"]["kwargs"],
)
print(
f"Create {scheduler.__class__.__name__} for {algorithm} "
f"using solution dim {solution_dim} and {len(emitters)} emitters."
)
return scheduler
def save_heatmap(archive: ArchiveBase, heatmap_path: str | Path) -> None:
"""Saves a heatmap of the archive to the given path.
Args:
archive: The archive to save.
heatmap_path: Image path for the heatmap.
"""
if isinstance(archive, GridArchive):
plt.figure(figsize=(8, 6))
grid_archive_heatmap(archive, vmin=0, vmax=100)
plt.tight_layout()
plt.savefig(heatmap_path)
elif isinstance(archive, CVTArchive):
plt.figure(figsize=(16, 12))
cvt_archive_heatmap(archive, vmin=0, vmax=100)
plt.tight_layout()
plt.savefig(heatmap_path)
else:
raise NotImplementedError(
"This script currently does not plot heatmaps for this archive."
)
plt.close(plt.gcf())
def sphere_main(
algorithm: str,
dim: int = 100,
itrs: int = 10000,
grid_dims: tuple[int, int] | None = None,
learning_rate: float | None = None,
es: str | None = None,
outdir: str = "sphere_output",
log_freq: int = 250,
seed: int | None = None,
) -> None:
"""Demo on the Sphere function.
Args:
algorithm: Name of the algorithm.
dim: Dimensionality of the sphere function.
itrs: Iterations to run.
grid_dims: Grid dimensions for GridArchive.
learning_rate: The archive learning rate.
es: If passed, this will set the ES for all EvolutionStrategyEmitter instances.
outdir: Directory to save output.
log_freq: Number of iterations to wait before recording metrics and saving
heatmap.
seed: Seed for the algorithm. By default, there is no seed.
"""
config = copy.deepcopy(CONFIG[algorithm])
# Add params that are not in the config.
config["dim"] = dim
config["itrs"] = itrs
# Add params that are in the config by default but may be passed in.
if grid_dims is not None:
if config["archive"]["class"] == GridArchive:
config["archive"]["kwargs"]["dims"] = grid_dims
if config["result_archive"]["class"] == GridArchive:
config["result_archive"]["kwargs"]["dims"] = grid_dims
if learning_rate is not None:
config["archive"]["kwargs"]["learning_rate"] = learning_rate
if es is not None:
# Set ES for all EvolutionStrategyEmitter.
for e in config["emitters"]:
if e["class"] == EvolutionStrategyEmitter:
e["kwargs"]["es"] = es
name = f"{algorithm}_{config['dim']}"
if es is not None:
name += f"_{es}"
outdir: Path = Path(outdir)
if not outdir.is_dir():
outdir.mkdir()
scheduler = create_scheduler(config, algorithm, seed=seed)
result_archive = scheduler.result_archive
is_dqd = config["is_dqd"]
has_discount_model = config["archive"]["class"] == DiscountArchive
itrs = config["itrs"]
metrics = {
"QD Score": {
"x": [0],
"y": [result_archive.stats.qd_score],
},
"Archive Coverage": {
"x": [0],
"y": [result_archive.stats.coverage],
},
}
non_logging_time = 0.0
save_heatmap(result_archive, str(outdir / f"{name}_heatmap_{0:05d}.png"))
if has_discount_model:
scheduler.archive.init_discount_model()
for itr in tqdm.trange(1, itrs + 1):
itr_start = time.time()
if is_dqd:
solutions = scheduler.ask_dqd()
(objectives, objective_grads, measures, measure_grads) = sphere(solutions)
objective_grads = np.expand_dims(objective_grads, axis=1)
jacobians = np.concatenate((objective_grads, measure_grads), axis=1)
scheduler.tell_dqd(objectives, measures, jacobians)
solutions = scheduler.ask()
objectives, _, measures, _ = sphere(solutions)
scheduler.tell(objectives, measures)
non_logging_time += time.time() - itr_start
if has_discount_model:
scheduler.archive.train_discount_model()
# Logging and output.
final_itr = itr == itrs
if itr % log_freq == 0 or final_itr:
if final_itr:
result_archive.data(return_type="pandas").to_csv(
outdir / f"{name}_archive.csv"
)
# Record and display metrics.
metrics["QD Score"]["x"].append(itr)
metrics["QD Score"]["y"].append(result_archive.stats.qd_score)
metrics["Archive Coverage"]["x"].append(itr)
metrics["Archive Coverage"]["y"].append(result_archive.stats.coverage)
tqdm.tqdm.write(
f"Iteration {itr} | Archive Coverage: "
f"{metrics['Archive Coverage']['y'][-1] * 100:.3f}% "
f"QD Score: {metrics['QD Score']['y'][-1]:.3f}"
)
save_heatmap(result_archive, str(outdir / f"{name}_heatmap_{itr:05d}.png"))
# Plot metrics.
print(f"Algorithm Time (Excludes Logging and Setup): {non_logging_time}s")
for metric, values in metrics.items():
plt.plot(values["x"], values["y"])
plt.title(metric)
plt.xlabel("Iteration")
plt.savefig(str(outdir / f"{name}_{metric.lower().replace(' ', '_')}.png"))
plt.clf()
# Convert metrics to Python scalars by calling .item(), since each stats value is a
# 0-D array by default, and JSON cannot serialize 0-D arrays.
for metric in metrics: # pylint: disable = consider-using-dict-items
metrics[metric]["y"] = [
m if isinstance(m, (int, float)) else m.item() for m in metrics[metric]["y"]
]
# Save metrics to JSON.
with (outdir / f"{name}_metrics.json").open("w") as file:
json.dump(metrics, file, indent=2)
if __name__ == "__main__":
fire.Fire(sphere_main)
|