-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop1632.txt
1636 lines (1636 loc) · 247 KB
/
top1632.txt
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
----- Generation 50 -----
Average fitness: 0.8293380737304688
Best: Fitness: 0.87146 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Top 1632:
Fitness: 0.87146 | Gen: 37 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.87122 | Gen: 26 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87097 | Gen: 49 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.87085 | Gen: 21 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.87073 | Gen: 34 | Architecture: {"nb_weights": [16, 2, 8, 2, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87073 | Gen: 42 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.87061 | Gen: 32 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87048 | Gen: 42 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.87048 | Gen: 42 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87036 | Gen: 6 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.87036 | Gen: 33 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87036 | Gen: 46 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.87036 | Gen: 48 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87024 | Gen: 7 | Architecture: {"nb_weights": [1, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87024 | Gen: 8 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.87024 | Gen: 33 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.87024 | Gen: 43 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87012 | Gen: 3 | Architecture: {"nb_weights": [1, 32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.87012 | Gen: 10 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.87012 | Gen: 40 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.87 | Gen: 28 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.87 | Gen: 36 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.24}
Fitness: 0.87 | Gen: 38 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.87 | Gen: 41 | Architecture: {"nb_weights": [8, 1, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86987 | Gen: 9 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86987 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86987 | Gen: 47 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86975 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86975 | Gen: 10 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86975 | Gen: 24 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86975 | Gen: 27 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86975 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86975 | Gen: 50 | Architecture: {"nb_weights": [16, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86963 | Gen: 3 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86963 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86963 | Gen: 18 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86963 | Gen: 19 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86963 | Gen: 35 | Architecture: {"nb_weights": [64], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86963 | Gen: 37 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86963 | Gen: 39 | Architecture: {"nb_weights": [2, 32], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86963 | Gen: 41 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86963 | Gen: 45 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86963 | Gen: 49 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86963 | Gen: 50 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86951 | Gen: 4 | Architecture: {"nb_weights": [32, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86951 | Gen: 29 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.52}
Fitness: 0.86951 | Gen: 38 | Architecture: {"nb_weights": [8, 2, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86951 | Gen: 43 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86951 | Gen: 45 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86951 | Gen: 50 | Architecture: {"nb_weights": [2, 64, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86938 | Gen: 33 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86938 | Gen: 33 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86938 | Gen: 36 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86938 | Gen: 41 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86926 | Gen: 6 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86926 | Gen: 8 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86926 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86926 | Gen: 19 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86926 | Gen: 31 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86926 | Gen: 33 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86926 | Gen: 34 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86926 | Gen: 36 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86926 | Gen: 36 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.86926 | Gen: 41 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86926 | Gen: 42 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86926 | Gen: 44 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86926 | Gen: 50 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.26}
Fitness: 0.86914 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86914 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86914 | Gen: 17 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.24}
Fitness: 0.86914 | Gen: 38 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86914 | Gen: 39 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86914 | Gen: 47 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86902 | Gen: 2 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86902 | Gen: 5 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86902 | Gen: 11 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86902 | Gen: 13 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86902 | Gen: 22 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86902 | Gen: 27 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86902 | Gen: 36 | Architecture: {"nb_weights": [8, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86902 | Gen: 36 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86902 | Gen: 43 | Architecture: {"nb_weights": [16, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86902 | Gen: 44 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86902 | Gen: 45 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86902 | Gen: 47 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8689 | Gen: 10 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.35}
Fitness: 0.8689 | Gen: 11 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8689 | Gen: 13 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8689 | Gen: 13 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8689 | Gen: 13 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.38}
Fitness: 0.8689 | Gen: 14 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8689 | Gen: 27 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8689 | Gen: 33 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8689 | Gen: 38 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8689 | Gen: 43 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8689 | Gen: 46 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8689 | Gen: 50 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8689 | Gen: 50 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86877 | Gen: 2 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86877 | Gen: 4 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86877 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.44}
Fitness: 0.86877 | Gen: 11 | Architecture: {"nb_weights": [32, 2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86877 | Gen: 12 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86877 | Gen: 14 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86877 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.13}
Fitness: 0.86877 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86877 | Gen: 27 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86877 | Gen: 28 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86877 | Gen: 35 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86877 | Gen: 39 | Architecture: {"nb_weights": [8, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86877 | Gen: 39 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86877 | Gen: 44 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86877 | Gen: 48 | Architecture: {"nb_weights": [32, 64], "batch_size": 256, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86877 | Gen: 48 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86865 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86865 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86865 | Gen: 9 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86865 | Gen: 10 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86865 | Gen: 18 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86865 | Gen: 20 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.23}
Fitness: 0.86865 | Gen: 21 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86865 | Gen: 42 | Architecture: {"nb_weights": [2, 32], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86865 | Gen: 50 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86853 | Gen: 6 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86853 | Gen: 7 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86853 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86853 | Gen: 13 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86853 | Gen: 15 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.37}
Fitness: 0.86853 | Gen: 16 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86853 | Gen: 16 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86853 | Gen: 18 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86853 | Gen: 20 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86853 | Gen: 33 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86853 | Gen: 46 | Architecture: {"nb_weights": [8, 16], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86853 | Gen: 48 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86853 | Gen: 49 | Architecture: {"nb_weights": [32, 64], "batch_size": 128, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86853 | Gen: 50 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.1}
Fitness: 0.86841 | Gen: 9 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.35}
Fitness: 0.86841 | Gen: 11 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86841 | Gen: 12 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86841 | Gen: 14 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86841 | Gen: 20 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86841 | Gen: 24 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86841 | Gen: 24 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86841 | Gen: 28 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86841 | Gen: 36 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86841 | Gen: 48 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.23}
Fitness: 0.86841 | Gen: 49 | Architecture: {"nb_weights": [8, 8], "batch_size": 128, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86829 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.51}
Fitness: 0.86829 | Gen: 10 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86829 | Gen: 11 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86829 | Gen: 12 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86829 | Gen: 13 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86829 | Gen: 28 | Architecture: {"nb_weights": [1, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86829 | Gen: 34 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86829 | Gen: 35 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86829 | Gen: 40 | Architecture: {"nb_weights": [64, 64], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86829 | Gen: 43 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86829 | Gen: 43 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86829 | Gen: 45 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86829 | Gen: 47 | Architecture: {"nb_weights": [2, 8, 8], "batch_size": 64, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86816 | Gen: 1 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86816 | Gen: 3 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.31}
Fitness: 0.86816 | Gen: 5 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86816 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.2}
Fitness: 0.86816 | Gen: 8 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86816 | Gen: 9 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86816 | Gen: 11 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86816 | Gen: 12 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86816 | Gen: 14 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86816 | Gen: 19 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86816 | Gen: 23 | Architecture: {"nb_weights": [8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86816 | Gen: 34 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86816 | Gen: 35 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86816 | Gen: 44 | Architecture: {"nb_weights": [16, 8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86816 | Gen: 46 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86816 | Gen: 48 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86804 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86804 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.39}
Fitness: 0.86804 | Gen: 8 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86804 | Gen: 12 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86804 | Gen: 24 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86804 | Gen: 27 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.86804 | Gen: 32 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86804 | Gen: 36 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86804 | Gen: 39 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86804 | Gen: 41 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86804 | Gen: 45 | Architecture: {"nb_weights": [16], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86804 | Gen: 49 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86804 | Gen: 50 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 3 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86792 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86792 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86792 | Gen: 15 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86792 | Gen: 15 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86792 | Gen: 15 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 30 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 34 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "linear", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86792 | Gen: 37 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.86792 | Gen: 38 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 40 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.28}
Fitness: 0.86792 | Gen: 42 | Architecture: {"nb_weights": [8, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 46 | Architecture: {"nb_weights": [1, 32], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86792 | Gen: 46 | Architecture: {"nb_weights": [8, 4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86792 | Gen: 48 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8678 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8678 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8678 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8678 | Gen: 7 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8678 | Gen: 10 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8678 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.8678 | Gen: 12 | Architecture: {"nb_weights": [32, 16], "batch_size": 128, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.25}
Fitness: 0.8678 | Gen: 13 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.8678 | Gen: 14 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.8678 | Gen: 19 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.8678 | Gen: 19 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8678 | Gen: 22 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8678 | Gen: 26 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8678 | Gen: 28 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8678 | Gen: 29 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8678 | Gen: 33 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8678 | Gen: 35 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8678 | Gen: 35 | Architecture: {"nb_weights": [16, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8678 | Gen: 35 | Architecture: {"nb_weights": [64], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8678 | Gen: 40 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8678 | Gen: 41 | Architecture: {"nb_weights": [32, 4], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8678 | Gen: 42 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.8678 | Gen: 43 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8678 | Gen: 45 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8678 | Gen: 46 | Architecture: {"nb_weights": [16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.8678 | Gen: 46 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8678 | Gen: 46 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86768 | Gen: 2 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.3}
Fitness: 0.86768 | Gen: 3 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86768 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.57}
Fitness: 0.86768 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.33}
Fitness: 0.86768 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86768 | Gen: 6 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86768 | Gen: 9 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86768 | Gen: 14 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.86768 | Gen: 24 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.23}
Fitness: 0.86768 | Gen: 25 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86768 | Gen: 30 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86768 | Gen: 34 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86768 | Gen: 38 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86768 | Gen: 39 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86768 | Gen: 40 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86768 | Gen: 42 | Architecture: {"nb_weights": [4, 16], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86768 | Gen: 43 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86768 | Gen: 43 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86768 | Gen: 46 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.16}
Fitness: 0.86755 | Gen: 2 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.45}
Fitness: 0.86755 | Gen: 3 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86755 | Gen: 10 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86755 | Gen: 12 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86755 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86755 | Gen: 22 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86755 | Gen: 27 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86755 | Gen: 29 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86755 | Gen: 38 | Architecture: {"nb_weights": [16, 32], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86755 | Gen: 43 | Architecture: {"nb_weights": [16, 8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86755 | Gen: 44 | Architecture: {"nb_weights": [16], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86755 | Gen: 50 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86743 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86743 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86743 | Gen: 6 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86743 | Gen: 6 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86743 | Gen: 10 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86743 | Gen: 14 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86743 | Gen: 19 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.21}
Fitness: 0.86743 | Gen: 20 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86743 | Gen: 29 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86743 | Gen: 33 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86743 | Gen: 37 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86743 | Gen: 38 | Architecture: {"nb_weights": [64, 64], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86743 | Gen: 39 | Architecture: {"nb_weights": [8, 2, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86743 | Gen: 40 | Architecture: {"nb_weights": [8, 16, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 2 | Architecture: {"nb_weights": [64, 4, 16], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86731 | Gen: 3 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.32}
Fitness: 0.86731 | Gen: 7 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86731 | Gen: 11 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86731 | Gen: 16 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.29}
Fitness: 0.86731 | Gen: 17 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 18 | Architecture: {"nb_weights": [16, 1], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86731 | Gen: 22 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86731 | Gen: 24 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86731 | Gen: 28 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.37}
Fitness: 0.86731 | Gen: 30 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86731 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86731 | Gen: 34 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 36 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 36 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86731 | Gen: 37 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 40 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86731 | Gen: 42 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 43 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86731 | Gen: 44 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86731 | Gen: 45 | Architecture: {"nb_weights": [2, 8, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 46 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86731 | Gen: 49 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.12}
Fitness: 0.86719 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86719 | Gen: 14 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.16}
Fitness: 0.86719 | Gen: 14 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86719 | Gen: 14 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86719 | Gen: 18 | Architecture: {"nb_weights": [64, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86719 | Gen: 19 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86719 | Gen: 20 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86719 | Gen: 22 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86719 | Gen: 25 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86719 | Gen: 38 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86719 | Gen: 40 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86719 | Gen: 42 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86719 | Gen: 43 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86719 | Gen: 48 | Architecture: {"nb_weights": [8, 2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86719 | Gen: 49 | Architecture: {"nb_weights": [8, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86719 | Gen: 49 | Architecture: {"nb_weights": [8, 2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86707 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86707 | Gen: 2 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "sigmoid", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86707 | Gen: 3 | Architecture: {"nb_weights": [16], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86707 | Gen: 7 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86707 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86707 | Gen: 11 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86707 | Gen: 16 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.15}
Fitness: 0.86707 | Gen: 25 | Architecture: {"nb_weights": [4, 8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86707 | Gen: 32 | Architecture: {"nb_weights": [1, 16], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86707 | Gen: 35 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86707 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86707 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86707 | Gen: 41 | Architecture: {"nb_weights": [16, 1, 4], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86707 | Gen: 47 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.17}
Fitness: 0.86707 | Gen: 49 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86694 | Gen: 1 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86694 | Gen: 2 | Architecture: {"nb_weights": [16], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86694 | Gen: 3 | Architecture: {"nb_weights": [16], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86694 | Gen: 7 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86694 | Gen: 12 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.23}
Fitness: 0.86694 | Gen: 13 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86694 | Gen: 16 | Architecture: {"nb_weights": [2, 1], "batch_size": 64, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86694 | Gen: 19 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86694 | Gen: 21 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86694 | Gen: 22 | Architecture: {"nb_weights": [32, 2], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86694 | Gen: 22 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.2}
Fitness: 0.86694 | Gen: 25 | Architecture: {"nb_weights": [64], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86694 | Gen: 27 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86694 | Gen: 28 | Architecture: {"nb_weights": [4, 32], "batch_size": 128, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86694 | Gen: 28 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.28}
Fitness: 0.86694 | Gen: 31 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86694 | Gen: 36 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86694 | Gen: 38 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86694 | Gen: 40 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86694 | Gen: 42 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86694 | Gen: 46 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86682 | Gen: 0 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86682 | Gen: 1 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86682 | Gen: 3 | Architecture: {"nb_weights": [2, 32], "batch_size": 64, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.3}
Fitness: 0.86682 | Gen: 3 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.2}
Fitness: 0.86682 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86682 | Gen: 15 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86682 | Gen: 15 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.28}
Fitness: 0.86682 | Gen: 17 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86682 | Gen: 23 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86682 | Gen: 23 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86682 | Gen: 24 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86682 | Gen: 32 | Architecture: {"nb_weights": [16], "batch_size": 64, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.36}
Fitness: 0.86682 | Gen: 34 | Architecture: {"nb_weights": [1, 64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86682 | Gen: 37 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86682 | Gen: 37 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86682 | Gen: 40 | Architecture: {"nb_weights": [16], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86682 | Gen: 40 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86682 | Gen: 43 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86682 | Gen: 45 | Architecture: {"nb_weights": [4, 32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.12}
Fitness: 0.86682 | Gen: 47 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8667 | Gen: 1 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.3}
Fitness: 0.8667 | Gen: 18 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.27}
Fitness: 0.8667 | Gen: 18 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8667 | Gen: 23 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.8667 | Gen: 30 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8667 | Gen: 31 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8667 | Gen: 37 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.8667 | Gen: 38 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8667 | Gen: 41 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8667 | Gen: 43 | Architecture: {"nb_weights": [2, 2], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8667 | Gen: 49 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8667 | Gen: 50 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86658 | Gen: 2 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86658 | Gen: 5 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86658 | Gen: 9 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86658 | Gen: 10 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.27}
Fitness: 0.86658 | Gen: 12 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86658 | Gen: 19 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.25}
Fitness: 0.86658 | Gen: 20 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86658 | Gen: 23 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.86658 | Gen: 26 | Architecture: {"nb_weights": [64, 2], "batch_size": 64, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86658 | Gen: 27 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86658 | Gen: 27 | Architecture: {"nb_weights": [32, 32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86658 | Gen: 46 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86658 | Gen: 47 | Architecture: {"nb_weights": [8, 4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86646 | Gen: 0 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86646 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86646 | Gen: 8 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86646 | Gen: 11 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86646 | Gen: 16 | Architecture: {"nb_weights": [2, 4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86646 | Gen: 17 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86646 | Gen: 19 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86646 | Gen: 20 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86646 | Gen: 20 | Architecture: {"nb_weights": [8, 1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86646 | Gen: 24 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86646 | Gen: 25 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86646 | Gen: 26 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.29}
Fitness: 0.86646 | Gen: 29 | Architecture: {"nb_weights": [4, 32], "batch_size": 128, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86646 | Gen: 29 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86646 | Gen: 32 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86646 | Gen: 34 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86646 | Gen: 38 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adagrad", "dropout_rate": 0.1}
Fitness: 0.86646 | Gen: 39 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86646 | Gen: 41 | Architecture: {"nb_weights": [2, 32], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86646 | Gen: 45 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adadelta", "dropout_rate": 0.3}
Fitness: 0.86633 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.45}
Fitness: 0.86633 | Gen: 10 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.15}
Fitness: 0.86633 | Gen: 10 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.12}
Fitness: 0.86633 | Gen: 19 | Architecture: {"nb_weights": [2, 32, 2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86633 | Gen: 22 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86633 | Gen: 24 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.1}
Fitness: 0.86633 | Gen: 25 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86633 | Gen: 36 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 36 | Architecture: {"nb_weights": [8, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86633 | Gen: 36 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86633 | Gen: 39 | Architecture: {"nb_weights": [64], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 40 | Architecture: {"nb_weights": [2, 32], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 44 | Architecture: {"nb_weights": [4, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 47 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86633 | Gen: 48 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86633 | Gen: 50 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86621 | Gen: 1 | Architecture: {"nb_weights": [4, 16, 16, 64, 16, 16], "batch_size": 128, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.36}
Fitness: 0.86621 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "sigmoid", "optimizer": "adamax", "dropout_rate": 0.33}
Fitness: 0.86621 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86621 | Gen: 2 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.31}
Fitness: 0.86621 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86621 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86621 | Gen: 6 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86621 | Gen: 9 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86621 | Gen: 14 | Architecture: {"nb_weights": [4, 16], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86621 | Gen: 15 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 20 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86621 | Gen: 20 | Architecture: {"nb_weights": [16, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86621 | Gen: 21 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86621 | Gen: 21 | Architecture: {"nb_weights": [32, 2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86621 | Gen: 21 | Architecture: {"nb_weights": [8, 64, 64], "batch_size": 128, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.42}
Fitness: 0.86621 | Gen: 23 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86621 | Gen: 24 | Architecture: {"nb_weights": [32, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86621 | Gen: 26 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86621 | Gen: 27 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 32 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 32 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 33 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86621 | Gen: 34 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86621 | Gen: 41 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 44 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.12}
Fitness: 0.86621 | Gen: 44 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86621 | Gen: 44 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.1}
Fitness: 0.86621 | Gen: 46 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86621 | Gen: 46 | Architecture: {"nb_weights": [8, 4, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86621 | Gen: 49 | Architecture: {"nb_weights": [8, 2, 8, 2, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86621 | Gen: 50 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.16}
Fitness: 0.86609 | Gen: 4 | Architecture: {"nb_weights": [8, 4, 32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86609 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86609 | Gen: 8 | Architecture: {"nb_weights": [64, 32], "batch_size": 64, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.28}
Fitness: 0.86609 | Gen: 17 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86609 | Gen: 19 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86609 | Gen: 20 | Architecture: {"nb_weights": [16, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86609 | Gen: 20 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86609 | Gen: 20 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86609 | Gen: 21 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86609 | Gen: 22 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 22 | Architecture: {"nb_weights": [8, 1, 8, 4, 64], "batch_size": 64, "activation": "linear", "optimizer": "adadelta", "dropout_rate": 0.39}
Fitness: 0.86609 | Gen: 33 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86609 | Gen: 35 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86609 | Gen: 37 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 39 | Architecture: {"nb_weights": [8, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 39 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 41 | Architecture: {"nb_weights": [8, 2, 16, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86609 | Gen: 42 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86609 | Gen: 47 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.45}
Fitness: 0.86597 | Gen: 0 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.31}
Fitness: 0.86597 | Gen: 2 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86597 | Gen: 4 | Architecture: {"nb_weights": [16, 32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.31}
Fitness: 0.86597 | Gen: 6 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86597 | Gen: 7 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86597 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86597 | Gen: 9 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 10 | Architecture: {"nb_weights": [32, 2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86597 | Gen: 10 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 13 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86597 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86597 | Gen: 18 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.25}
Fitness: 0.86597 | Gen: 19 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86597 | Gen: 26 | Architecture: {"nb_weights": [64, 8, 16, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86597 | Gen: 27 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 31 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 32 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86597 | Gen: 32 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86597 | Gen: 34 | Architecture: {"nb_weights": [8, 4, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86597 | Gen: 37 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 41 | Architecture: {"nb_weights": [16, 1, 8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 41 | Architecture: {"nb_weights": [16, 2, 4], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86597 | Gen: 42 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86597 | Gen: 44 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86597 | Gen: 45 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86597 | Gen: 50 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86597 | Gen: 50 | Architecture: {"nb_weights": [8, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.16}
Fitness: 0.86584 | Gen: 4 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86584 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86584 | Gen: 5 | Architecture: {"nb_weights": [8, 4, 32], "batch_size": 32, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 5 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86584 | Gen: 7 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 7 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.35}
Fitness: 0.86584 | Gen: 10 | Architecture: {"nb_weights": [4, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86584 | Gen: 13 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86584 | Gen: 14 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 19 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 20 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.21}
Fitness: 0.86584 | Gen: 23 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.16}
Fitness: 0.86584 | Gen: 24 | Architecture: {"nb_weights": [32, 8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86584 | Gen: 25 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 29 | Architecture: {"nb_weights": [32, 32], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86584 | Gen: 31 | Architecture: {"nb_weights": [4, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 31 | Architecture: {"nb_weights": [1, 32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.26}
Fitness: 0.86584 | Gen: 35 | Architecture: {"nb_weights": [64, 32], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86584 | Gen: 36 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 40 | Architecture: {"nb_weights": [64, 64, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86584 | Gen: 41 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.86584 | Gen: 47 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 48 | Architecture: {"nb_weights": [4, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86584 | Gen: 48 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86584 | Gen: 49 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 2 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adadelta", "dropout_rate": 0.17}
Fitness: 0.86572 | Gen: 2 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86572 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.45}
Fitness: 0.86572 | Gen: 9 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86572 | Gen: 15 | Architecture: {"nb_weights": [2, 4], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86572 | Gen: 23 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.23}
Fitness: 0.86572 | Gen: 23 | Architecture: {"nb_weights": [32, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86572 | Gen: 26 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86572 | Gen: 29 | Architecture: {"nb_weights": [2, 32], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 31 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86572 | Gen: 31 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 32 | Architecture: {"nb_weights": [2, 32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.26}
Fitness: 0.86572 | Gen: 33 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86572 | Gen: 34 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 36 | Architecture: {"nb_weights": [4, 64], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 37 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.13}
Fitness: 0.86572 | Gen: 40 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.17}
Fitness: 0.8656 | Gen: 4 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.32}
Fitness: 0.8656 | Gen: 6 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.8656 | Gen: 16 | Architecture: {"nb_weights": [2, 16, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8656 | Gen: 17 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8656 | Gen: 19 | Architecture: {"nb_weights": [1, 1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8656 | Gen: 24 | Architecture: {"nb_weights": [16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8656 | Gen: 25 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.8656 | Gen: 25 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.8656 | Gen: 31 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.8656 | Gen: 32 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8656 | Gen: 33 | Architecture: {"nb_weights": [1, 32, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8656 | Gen: 40 | Architecture: {"nb_weights": [16, 1, 4], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8656 | Gen: 42 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.8656 | Gen: 45 | Architecture: {"nb_weights": [8, 4, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8656 | Gen: 46 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8656 | Gen: 47 | Architecture: {"nb_weights": [16, 8, 8], "batch_size": 64, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86548 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.31}
Fitness: 0.86548 | Gen: 2 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.2}
Fitness: 0.86548 | Gen: 3 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.2}
Fitness: 0.86548 | Gen: 3 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adagrad", "dropout_rate": 0.3}
Fitness: 0.86548 | Gen: 17 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86548 | Gen: 17 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.27}
Fitness: 0.86548 | Gen: 22 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86548 | Gen: 23 | Architecture: {"nb_weights": [32, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86548 | Gen: 26 | Architecture: {"nb_weights": [2, 2], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86548 | Gen: 26 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.38}
Fitness: 0.86548 | Gen: 27 | Architecture: {"nb_weights": [4, 32], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86548 | Gen: 30 | Architecture: {"nb_weights": [8, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "adadelta", "dropout_rate": 0.21}
Fitness: 0.86548 | Gen: 31 | Architecture: {"nb_weights": [2, 8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86548 | Gen: 31 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86548 | Gen: 31 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86548 | Gen: 37 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86548 | Gen: 42 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86548 | Gen: 43 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86548 | Gen: 43 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86548 | Gen: 44 | Architecture: {"nb_weights": [16, 8], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.1}
Fitness: 0.86548 | Gen: 45 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86548 | Gen: 49 | Architecture: {"nb_weights": [2, 4, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86536 | Gen: 0 | Architecture: {"nb_weights": [2], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86536 | Gen: 1 | Architecture: {"nb_weights": [16, 2, 64], "batch_size": 64, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.39}
Fitness: 0.86536 | Gen: 2 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86536 | Gen: 6 | Architecture: {"nb_weights": [1, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86536 | Gen: 8 | Architecture: {"nb_weights": [4, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.4}
Fitness: 0.86536 | Gen: 9 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86536 | Gen: 10 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86536 | Gen: 15 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86536 | Gen: 20 | Architecture: {"nb_weights": [2, 8, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86536 | Gen: 20 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86536 | Gen: 21 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.47}
Fitness: 0.86536 | Gen: 22 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86536 | Gen: 23 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.1}
Fitness: 0.86536 | Gen: 26 | Architecture: {"nb_weights": [2, 2], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.32}
Fitness: 0.86536 | Gen: 26 | Architecture: {"nb_weights": [32, 16], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86536 | Gen: 27 | Architecture: {"nb_weights": [1, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86536 | Gen: 29 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86536 | Gen: 30 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86536 | Gen: 30 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.13}
Fitness: 0.86536 | Gen: 30 | Architecture: {"nb_weights": [32, 4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86536 | Gen: 36 | Architecture: {"nb_weights": [64], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86536 | Gen: 38 | Architecture: {"nb_weights": [32, 1, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86536 | Gen: 40 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86536 | Gen: 41 | Architecture: {"nb_weights": [8, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86536 | Gen: 49 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86523 | Gen: 1 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86523 | Gen: 2 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86523 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86523 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86523 | Gen: 12 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86523 | Gen: 14 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86523 | Gen: 17 | Architecture: {"nb_weights": [2, 8, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.26}
Fitness: 0.86523 | Gen: 23 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86523 | Gen: 26 | Architecture: {"nb_weights": [2, 1], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86523 | Gen: 29 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86523 | Gen: 30 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86523 | Gen: 31 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86523 | Gen: 38 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.86523 | Gen: 46 | Architecture: {"nb_weights": [2, 16, 1, 1], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86523 | Gen: 47 | Architecture: {"nb_weights": [2, 4], "batch_size": 64, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.86523 | Gen: 49 | Architecture: {"nb_weights": [8, 8], "batch_size": 32, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.16}
Fitness: 0.86523 | Gen: 49 | Architecture: {"nb_weights": [1, 32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86511 | Gen: 4 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86511 | Gen: 6 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86511 | Gen: 8 | Architecture: {"nb_weights": [8, 64, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.37}
Fitness: 0.86511 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86511 | Gen: 10 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 12 | Architecture: {"nb_weights": [4, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 12 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 15 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86511 | Gen: 22 | Architecture: {"nb_weights": [32, 16, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86511 | Gen: 23 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 25 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 26 | Architecture: {"nb_weights": [64], "batch_size": 128, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86511 | Gen: 26 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86511 | Gen: 28 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86511 | Gen: 31 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "adadelta", "dropout_rate": 0.32}
Fitness: 0.86511 | Gen: 34 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 36 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.15}
Fitness: 0.86511 | Gen: 43 | Architecture: {"nb_weights": [16, 2, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86511 | Gen: 50 | Architecture: {"nb_weights": [8, 8], "batch_size": 128, "activation": "softplus", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86499 | Gen: 9 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86499 | Gen: 12 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86499 | Gen: 12 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.47}
Fitness: 0.86499 | Gen: 18 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.86499 | Gen: 24 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86499 | Gen: 29 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86499 | Gen: 30 | Architecture: {"nb_weights": [4, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86499 | Gen: 33 | Architecture: {"nb_weights": [4, 8], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.44}
Fitness: 0.86499 | Gen: 38 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "tanh", "optimizer": "adadelta", "dropout_rate": 0.23}
Fitness: 0.86499 | Gen: 49 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86499 | Gen: 50 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86487 | Gen: 2 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "adamax", "dropout_rate": 0.33}
Fitness: 0.86487 | Gen: 3 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.2}
Fitness: 0.86487 | Gen: 4 | Architecture: {"nb_weights": [16], "batch_size": 256, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86487 | Gen: 11 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86487 | Gen: 17 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86487 | Gen: 19 | Architecture: {"nb_weights": [2, 64], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 28 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 28 | Architecture: {"nb_weights": [32, 8, 32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86487 | Gen: 29 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 30 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 35 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.15}
Fitness: 0.86487 | Gen: 37 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86487 | Gen: 38 | Architecture: {"nb_weights": [16, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 41 | Architecture: {"nb_weights": [32, 4, 32, 2], "batch_size": 128, "activation": "sigmoid", "optimizer": "adagrad", "dropout_rate": 0.28}
Fitness: 0.86487 | Gen: 43 | Architecture: {"nb_weights": [2, 16, 1, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86487 | Gen: 44 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "adadelta", "dropout_rate": 0.42}
Fitness: 0.86487 | Gen: 44 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86487 | Gen: 45 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.16}
Fitness: 0.86487 | Gen: 47 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.12}
Fitness: 0.86487 | Gen: 47 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86475 | Gen: 0 | Architecture: {"nb_weights": [16, 64], "batch_size": 64, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.39}
Fitness: 0.86475 | Gen: 9 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86475 | Gen: 9 | Architecture: {"nb_weights": [2, 64], "batch_size": 128, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86475 | Gen: 9 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86475 | Gen: 9 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86475 | Gen: 11 | Architecture: {"nb_weights": [16, 2], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86475 | Gen: 16 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86475 | Gen: 17 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86475 | Gen: 19 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86475 | Gen: 26 | Architecture: {"nb_weights": [64, 8], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86475 | Gen: 28 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86475 | Gen: 28 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86475 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86475 | Gen: 33 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86475 | Gen: 34 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86475 | Gen: 38 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86475 | Gen: 41 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.22}
Fitness: 0.86475 | Gen: 47 | Architecture: {"nb_weights": [32, 2], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86462 | Gen: 1 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.31}
Fitness: 0.86462 | Gen: 4 | Architecture: {"nb_weights": [64], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86462 | Gen: 6 | Architecture: {"nb_weights": [64], "batch_size": 128, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86462 | Gen: 17 | Architecture: {"nb_weights": [2, 4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 18 | Architecture: {"nb_weights": [1, 2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 27 | Architecture: {"nb_weights": [32, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86462 | Gen: 29 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 29 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.28}
Fitness: 0.86462 | Gen: 36 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 37 | Architecture: {"nb_weights": [64, 1], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 38 | Architecture: {"nb_weights": [2, 32], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 39 | Architecture: {"nb_weights": [2, 4], "batch_size": 128, "activation": "tanh", "optimizer": "adagrad", "dropout_rate": 0.41}
Fitness: 0.86462 | Gen: 40 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 43 | Architecture: {"nb_weights": [8, 2, 8, 2, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 44 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86462 | Gen: 47 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86462 | Gen: 50 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8645 | Gen: 1 | Architecture: {"nb_weights": [32], "batch_size": 64, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.8645 | Gen: 3 | Architecture: {"nb_weights": [2, 32], "batch_size": 128, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.29}
Fitness: 0.8645 | Gen: 5 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.8645 | Gen: 5 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.31}
Fitness: 0.8645 | Gen: 12 | Architecture: {"nb_weights": [32, 2, 1], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8645 | Gen: 18 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8645 | Gen: 19 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8645 | Gen: 23 | Architecture: {"nb_weights": [4, 4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8645 | Gen: 24 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.8645 | Gen: 27 | Architecture: {"nb_weights": [32, 32, 32], "batch_size": 256, "activation": "relu", "optimizer": "adamax", "dropout_rate": 0.29}
Fitness: 0.8645 | Gen: 29 | Architecture: {"nb_weights": [1, 1], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.8645 | Gen: 29 | Architecture: {"nb_weights": [64], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8645 | Gen: 33 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "adamax", "dropout_rate": 0.18}
Fitness: 0.8645 | Gen: 33 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.8645 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8645 | Gen: 40 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.8645 | Gen: 41 | Architecture: {"nb_weights": [1, 4], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.11}
Fitness: 0.8645 | Gen: 43 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.8645 | Gen: 45 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.8645 | Gen: 47 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86438 | Gen: 1 | Architecture: {"nb_weights": [64, 8], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86438 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.15}
Fitness: 0.86438 | Gen: 12 | Architecture: {"nb_weights": [4, 1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86438 | Gen: 14 | Architecture: {"nb_weights": [2, 1], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86438 | Gen: 15 | Architecture: {"nb_weights": [8, 2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86438 | Gen: 15 | Architecture: {"nb_weights": [1, 1, 1], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.16}
Fitness: 0.86438 | Gen: 17 | Architecture: {"nb_weights": [2, 1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86438 | Gen: 18 | Architecture: {"nb_weights": [8], "batch_size": 128, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.6}
Fitness: 0.86438 | Gen: 25 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86438 | Gen: 25 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.86438 | Gen: 25 | Architecture: {"nb_weights": [64, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.5}
Fitness: 0.86438 | Gen: 32 | Architecture: {"nb_weights": [2, 8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86438 | Gen: 34 | Architecture: {"nb_weights": [1], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86438 | Gen: 34 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86438 | Gen: 34 | Architecture: {"nb_weights": [1, 4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86438 | Gen: 36 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86438 | Gen: 44 | Architecture: {"nb_weights": [8, 8], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 3 | Architecture: {"nb_weights": [16, 64, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.39}
Fitness: 0.86426 | Gen: 7 | Architecture: {"nb_weights": [32, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86426 | Gen: 20 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86426 | Gen: 21 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 21 | Architecture: {"nb_weights": [8, 1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86426 | Gen: 22 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 24 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "linear", "optimizer": "adamax", "dropout_rate": 0.33}
Fitness: 0.86426 | Gen: 26 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adadelta", "dropout_rate": 0.37}
Fitness: 0.86426 | Gen: 29 | Architecture: {"nb_weights": [1, 32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86426 | Gen: 30 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86426 | Gen: 31 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86426 | Gen: 31 | Architecture: {"nb_weights": [32, 4], "batch_size": 256, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 34 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86426 | Gen: 35 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 35 | Architecture: {"nb_weights": [1, 64], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 36 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 41 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 43 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.16}
Fitness: 0.86426 | Gen: 48 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86426 | Gen: 49 | Architecture: {"nb_weights": [16, 32, 4], "batch_size": 64, "activation": "softplus", "optimizer": "nadam", "dropout_rate": 0.24}
Fitness: 0.86414 | Gen: 0 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adadelta", "dropout_rate": 0.3}
Fitness: 0.86414 | Gen: 3 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.37}
Fitness: 0.86414 | Gen: 6 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86414 | Gen: 8 | Architecture: {"nb_weights": [32, 2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86414 | Gen: 11 | Architecture: {"nb_weights": [32, 4], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86414 | Gen: 17 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86414 | Gen: 21 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86414 | Gen: 23 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 24 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86414 | Gen: 28 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "relu", "optimizer": "adadelta", "dropout_rate": 0.4}
Fitness: 0.86414 | Gen: 29 | Architecture: {"nb_weights": [64, 32, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86414 | Gen: 29 | Architecture: {"nb_weights": [4, 64, 16], "batch_size": 128, "activation": "softplus", "optimizer": "adamax", "dropout_rate": 0.24}
Fitness: 0.86414 | Gen: 30 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86414 | Gen: 31 | Architecture: {"nb_weights": [4, 64], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 33 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.18}
Fitness: 0.86414 | Gen: 35 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 37 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adagrad", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 38 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86414 | Gen: 39 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.16}
Fitness: 0.86414 | Gen: 39 | Architecture: {"nb_weights": [16, 1, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86414 | Gen: 40 | Architecture: {"nb_weights": [16, 1, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 44 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86414 | Gen: 44 | Architecture: {"nb_weights": [16, 1, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86414 | Gen: 49 | Architecture: {"nb_weights": [16, 32, 32, 8], "batch_size": 256, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.33}
Fitness: 0.86414 | Gen: 50 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86401 | Gen: 0 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86401 | Gen: 4 | Architecture: {"nb_weights": [2, 32], "batch_size": 128, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.29}
Fitness: 0.86401 | Gen: 6 | Architecture: {"nb_weights": [8, 64, 4, 64, 8], "batch_size": 32, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.27}
Fitness: 0.86401 | Gen: 8 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.51}
Fitness: 0.86401 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 13 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 17 | Architecture: {"nb_weights": [1, 1, 1], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.17}
Fitness: 0.86401 | Gen: 18 | Architecture: {"nb_weights": [4, 2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86401 | Gen: 18 | Architecture: {"nb_weights": [2, 4, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86401 | Gen: 21 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86401 | Gen: 25 | Architecture: {"nb_weights": [32, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86401 | Gen: 35 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 35 | Architecture: {"nb_weights": [1, 32], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86401 | Gen: 37 | Architecture: {"nb_weights": [8, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 42 | Architecture: {"nb_weights": [8, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 42 | Architecture: {"nb_weights": [1, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86401 | Gen: 48 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.16}
Fitness: 0.86389 | Gen: 2 | Architecture: {"nb_weights": [64, 64, 32, 32], "batch_size": 256, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.24}
Fitness: 0.86389 | Gen: 11 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.12}
Fitness: 0.86389 | Gen: 21 | Architecture: {"nb_weights": [8, 2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86389 | Gen: 22 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86389 | Gen: 23 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86389 | Gen: 32 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.44}
Fitness: 0.86389 | Gen: 33 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86389 | Gen: 34 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86389 | Gen: 38 | Architecture: {"nb_weights": [8], "batch_size": 64, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86389 | Gen: 40 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86389 | Gen: 43 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86389 | Gen: 48 | Architecture: {"nb_weights": [1, 16], "batch_size": 64, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86389 | Gen: 49 | Architecture: {"nb_weights": [8, 2, 16], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86377 | Gen: 1 | Architecture: {"nb_weights": [4, 4, 64, 1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.24}
Fitness: 0.86377 | Gen: 2 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "linear", "optimizer": "adadelta", "dropout_rate": 0.28}
Fitness: 0.86377 | Gen: 3 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.45}
Fitness: 0.86377 | Gen: 8 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86377 | Gen: 9 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86377 | Gen: 15 | Architecture: {"nb_weights": [4], "batch_size": 64, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86377 | Gen: 16 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86377 | Gen: 21 | Architecture: {"nb_weights": [1, 64, 16, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86377 | Gen: 21 | Architecture: {"nb_weights": [2, 4], "batch_size": 64, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.32}
Fitness: 0.86377 | Gen: 21 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.25}
Fitness: 0.86377 | Gen: 25 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86377 | Gen: 28 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86377 | Gen: 29 | Architecture: {"nb_weights": [1, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86377 | Gen: 30 | Architecture: {"nb_weights": [2, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86377 | Gen: 30 | Architecture: {"nb_weights": [1, 32, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86377 | Gen: 32 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86377 | Gen: 32 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86377 | Gen: 38 | Architecture: {"nb_weights": [64, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86377 | Gen: 39 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86377 | Gen: 50 | Architecture: {"nb_weights": [2, 1], "batch_size": 64, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 7 | Architecture: {"nb_weights": [8, 64, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86365 | Gen: 9 | Architecture: {"nb_weights": [2, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 12 | Architecture: {"nb_weights": [4, 4], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86365 | Gen: 12 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 13 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86365 | Gen: 22 | Architecture: {"nb_weights": [4, 1], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 25 | Architecture: {"nb_weights": [8, 2], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86365 | Gen: 27 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86365 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 36 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86365 | Gen: 36 | Architecture: {"nb_weights": [64], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86365 | Gen: 37 | Architecture: {"nb_weights": [64, 32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86365 | Gen: 41 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 43 | Architecture: {"nb_weights": [16, 64, 4, 2], "batch_size": 64, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86365 | Gen: 44 | Architecture: {"nb_weights": [2, 16, 1, 2], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86365 | Gen: 47 | Architecture: {"nb_weights": [2, 16, 1, 1], "batch_size": 64, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86365 | Gen: 50 | Architecture: {"nb_weights": [2, 2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86353 | Gen: 1 | Architecture: {"nb_weights": [4], "batch_size": 128, "activation": "linear", "optimizer": "adadelta", "dropout_rate": 0.29}
Fitness: 0.86353 | Gen: 2 | Architecture: {"nb_weights": [32, 32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.29}
Fitness: 0.86353 | Gen: 5 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.3}
Fitness: 0.86353 | Gen: 7 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "elu", "optimizer": "adamax", "dropout_rate": 0.22}
Fitness: 0.86353 | Gen: 8 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86353 | Gen: 14 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.32}
Fitness: 0.86353 | Gen: 15 | Architecture: {"nb_weights": [2, 1], "batch_size": 128, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86353 | Gen: 15 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86353 | Gen: 17 | Architecture: {"nb_weights": [64, 2], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86353 | Gen: 22 | Architecture: {"nb_weights": [32, 8], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86353 | Gen: 28 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86353 | Gen: 30 | Architecture: {"nb_weights": [64, 32, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86353 | Gen: 31 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86353 | Gen: 39 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86353 | Gen: 40 | Architecture: {"nb_weights": [4, 1, 4, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8634 | Gen: 7 | Architecture: {"nb_weights": [2, 64], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8634 | Gen: 8 | Architecture: {"nb_weights": [2, 8, 64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.8634 | Gen: 10 | Architecture: {"nb_weights": [32, 2], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.8634 | Gen: 10 | Architecture: {"nb_weights": [32, 2], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.17}
Fitness: 0.8634 | Gen: 15 | Architecture: {"nb_weights": [1, 4], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8634 | Gen: 25 | Architecture: {"nb_weights": [64, 8, 16, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.8634 | Gen: 33 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.36}
Fitness: 0.8634 | Gen: 34 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8634 | Gen: 37 | Architecture: {"nb_weights": [16], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.8634 | Gen: 41 | Architecture: {"nb_weights": [16, 1, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.8634 | Gen: 42 | Architecture: {"nb_weights": [8, 1, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.8634 | Gen: 45 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86328 | Gen: 0 | Architecture: {"nb_weights": [64, 64, 64, 32], "batch_size": 256, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.31}
Fitness: 0.86328 | Gen: 1 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "softplus", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86328 | Gen: 5 | Architecture: {"nb_weights": [2, 16], "batch_size": 32, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.45}
Fitness: 0.86328 | Gen: 11 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86328 | Gen: 15 | Architecture: {"nb_weights": [2, 4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86328 | Gen: 19 | Architecture: {"nb_weights": [64, 32], "batch_size": 256, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86328 | Gen: 19 | Architecture: {"nb_weights": [8], "batch_size": 256, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.6}
Fitness: 0.86328 | Gen: 22 | Architecture: {"nb_weights": [1, 64, 16, 64], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86328 | Gen: 28 | Architecture: {"nb_weights": [32, 64], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86328 | Gen: 32 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86328 | Gen: 33 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.21}
Fitness: 0.86328 | Gen: 37 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86328 | Gen: 45 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.17}
Fitness: 0.86316 | Gen: 1 | Architecture: {"nb_weights": [64, 64, 64, 32], "batch_size": 256, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.24}
Fitness: 0.86316 | Gen: 4 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adadelta", "dropout_rate": 0.31}
Fitness: 0.86316 | Gen: 8 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86316 | Gen: 10 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "elu", "optimizer": "adagrad", "dropout_rate": 0.26}
Fitness: 0.86316 | Gen: 13 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86316 | Gen: 16 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.26}
Fitness: 0.86316 | Gen: 16 | Architecture: {"nb_weights": [2, 4], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86316 | Gen: 16 | Architecture: {"nb_weights": [32], "batch_size": 256, "activation": "tanh", "optimizer": "adadelta", "dropout_rate": 0.43}
Fitness: 0.86316 | Gen: 18 | Architecture: {"nb_weights": [2, 16, 8, 2], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86316 | Gen: 21 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86316 | Gen: 26 | Architecture: {"nb_weights": [32, 2], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86316 | Gen: 26 | Architecture: {"nb_weights": [4, 8], "batch_size": 32, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.32}
Fitness: 0.86316 | Gen: 27 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86316 | Gen: 35 | Architecture: {"nb_weights": [32, 1, 8], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86316 | Gen: 39 | Architecture: {"nb_weights": [4, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86316 | Gen: 43 | Architecture: {"nb_weights": [16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86316 | Gen: 43 | Architecture: {"nb_weights": [2, 16], "batch_size": 256, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86316 | Gen: 43 | Architecture: {"nb_weights": [4, 32], "batch_size": 32, "activation": "relu", "optimizer": "adadelta", "dropout_rate": 0.42}
Fitness: 0.86316 | Gen: 46 | Architecture: {"nb_weights": [2, 8, 8], "batch_size": 64, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86316 | Gen: 46 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86304 | Gen: 4 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86304 | Gen: 5 | Architecture: {"nb_weights": [2, 8], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.31}
Fitness: 0.86304 | Gen: 7 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.12}
Fitness: 0.86304 | Gen: 8 | Architecture: {"nb_weights": [4, 4], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.12}
Fitness: 0.86304 | Gen: 14 | Architecture: {"nb_weights": [2, 4], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86304 | Gen: 22 | Architecture: {"nb_weights": [64, 32], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86304 | Gen: 23 | Architecture: {"nb_weights": [2, 64], "batch_size": 256, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86304 | Gen: 27 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86304 | Gen: 39 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86304 | Gen: 39 | Architecture: {"nb_weights": [64, 64, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86304 | Gen: 40 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86304 | Gen: 45 | Architecture: {"nb_weights": [4, 16], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86304 | Gen: 46 | Architecture: {"nb_weights": [8, 4, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86304 | Gen: 48 | Architecture: {"nb_weights": [64, 16], "batch_size": 256, "activation": "tanh", "optimizer": "adamax", "dropout_rate": 0.22}
Fitness: 0.86304 | Gen: 49 | Architecture: {"nb_weights": [4, 4], "batch_size": 64, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86292 | Gen: 5 | Architecture: {"nb_weights": [2, 64], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 7 | Architecture: {"nb_weights": [1], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.29}
Fitness: 0.86292 | Gen: 7 | Architecture: {"nb_weights": [32, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86292 | Gen: 9 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.12}
Fitness: 0.86292 | Gen: 10 | Architecture: {"nb_weights": [4], "batch_size": 32, "activation": "linear", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 10 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "linear", "optimizer": "adamax", "dropout_rate": 0.45}
Fitness: 0.86292 | Gen: 13 | Architecture: {"nb_weights": [2, 2, 16], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 15 | Architecture: {"nb_weights": [2, 1], "batch_size": 32, "activation": "linear", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 18 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 25 | Architecture: {"nb_weights": [1, 64], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86292 | Gen: 29 | Architecture: {"nb_weights": [4], "batch_size": 256, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86292 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86292 | Gen: 31 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.15}
Fitness: 0.86292 | Gen: 48 | Architecture: {"nb_weights": [32], "batch_size": 32, "activation": "softplus", "optimizer": "adam", "dropout_rate": 0.17}
Fitness: 0.86279 | Gen: 2 | Architecture: {"nb_weights": [64, 4], "batch_size": 32, "activation": "softplus", "optimizer": "adadelta", "dropout_rate": 0.29}
Fitness: 0.86279 | Gen: 4 | Architecture: {"nb_weights": [32], "batch_size": 128, "activation": "relu", "optimizer": "adagrad", "dropout_rate": 0.22}
Fitness: 0.86279 | Gen: 5 | Architecture: {"nb_weights": [8, 4], "batch_size": 32, "activation": "hard_sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86279 | Gen: 8 | Architecture: {"nb_weights": [2, 64], "batch_size": 64, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86279 | Gen: 8 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "linear", "optimizer": "adagrad", "dropout_rate": 0.26}
Fitness: 0.86279 | Gen: 8 | Architecture: {"nb_weights": [2, 64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.34}
Fitness: 0.86279 | Gen: 11 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.22}
Fitness: 0.86279 | Gen: 21 | Architecture: {"nb_weights": [2, 16, 2], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86279 | Gen: 25 | Architecture: {"nb_weights": [16, 32], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86279 | Gen: 26 | Architecture: {"nb_weights": [8, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.32}
Fitness: 0.86279 | Gen: 26 | Architecture: {"nb_weights": [1], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86279 | Gen: 30 | Architecture: {"nb_weights": [64, 16, 32], "batch_size": 64, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.11}
Fitness: 0.86279 | Gen: 33 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86267 | Gen: 3 | Architecture: {"nb_weights": [2], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.2}
Fitness: 0.86267 | Gen: 3 | Architecture: {"nb_weights": [64, 4, 16], "batch_size": 32, "activation": "softplus", "optimizer": "rmsprop", "dropout_rate": 0.45}
Fitness: 0.86267 | Gen: 7 | Architecture: {"nb_weights": [2, 32], "batch_size": 64, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.18}
Fitness: 0.86267 | Gen: 17 | Architecture: {"nb_weights": [32, 8], "batch_size": 32, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86267 | Gen: 21 | Architecture: {"nb_weights": [16, 64], "batch_size": 32, "activation": "softplus", "optimizer": "nadam", "dropout_rate": 0.22}
Fitness: 0.86267 | Gen: 23 | Architecture: {"nb_weights": [2], "batch_size": 256, "activation": "tanh", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86267 | Gen: 25 | Architecture: {"nb_weights": [32, 4], "batch_size": 32, "activation": "tanh", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86267 | Gen: 30 | Architecture: {"nb_weights": [1], "batch_size": 128, "activation": "elu", "optimizer": "rmsprop", "dropout_rate": 0.1}
Fitness: 0.86267 | Gen: 30 | Architecture: {"nb_weights": [4, 64], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.28}
Fitness: 0.86267 | Gen: 31 | Architecture: {"nb_weights": [1, 16], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.11}
Fitness: 0.86267 | Gen: 35 | Architecture: {"nb_weights": [8], "batch_size": 32, "activation": "sigmoid", "optimizer": "nadam", "dropout_rate": 0.13}
Fitness: 0.86267 | Gen: 37 | Architecture: {"nb_weights": [8, 1], "batch_size": 32, "activation": "sigmoid", "optimizer": "rmsprop", "dropout_rate": 0.13}
Fitness: 0.86255 | Gen: 2 | Architecture: {"nb_weights": [2, 32], "batch_size": 32, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.32}
Fitness: 0.86255 | Gen: 4 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.2}
Fitness: 0.86255 | Gen: 16 | Architecture: {"nb_weights": [2], "batch_size": 32, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86255 | Gen: 19 | Architecture: {"nb_weights": [2, 4], "batch_size": 256, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.19}
Fitness: 0.86255 | Gen: 20 | Architecture: {"nb_weights": [16, 64], "batch_size": 256, "activation": "elu", "optimizer": "nadam", "dropout_rate": 0.14}
Fitness: 0.86255 | Gen: 25 | Architecture: {"nb_weights": [32, 16], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.29}
Fitness: 0.86255 | Gen: 26 | Architecture: {"nb_weights": [16, 32], "batch_size": 32, "activation": "relu", "optimizer": "adam", "dropout_rate": 0.14}
Fitness: 0.86255 | Gen: 28 | Architecture: {"nb_weights": [2, 16], "batch_size": 64, "activation": "relu", "optimizer": "nadam", "dropout_rate": 0.18}
Fitness: 0.86255 | Gen: 30 | Architecture: {"nb_weights": [64], "batch_size": 32, "activation": "linear", "optimizer": "rmsprop", "dropout_rate": 0.14}
Fitness: 0.86255 | Gen: 33 | Architecture: {"nb_weights": [16, 4], "batch_size": 32, "activation": "elu", "optimizer": "adam", "dropout_rate": 0.13}
Fitness: 0.86255 | Gen: 33 | Architecture: {"nb_weights": [1, 32], "batch_size": 256, "activation": "tanh", "optimizer": "adam", "dropout_rate": 0.43}
Fitness: 0.86255 | Gen: 38 | Architecture: {"nb_weights": [8, 2, 8, 2], "batch_size": 32, "activation": "relu", "optimizer": "rmsprop", "dropout_rate": 0.13}