forked from VSZM/FederatedNeuroevolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfederated_genetic_random_nodes.log
913 lines (913 loc) · 580 KB
/
federated_genetic_random_nodes.log
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
2019-04-30 17:36:50,345 | INFO : Creating random population
2019-04-30 17:36:50,399 | WARNING : From C:\tools\Anaconda3\envs\tf-gpu\lib\site-packages\tensorflow\python\framework\op_def_library.py:263: colocate_with (from tensorflow.python.framework.ops) is deprecated and will be removed in a future version.
Instructions for updating:
Colocations handled automatically by placer.
2019-04-30 17:38:49,232 | INFO : Splitting the training data (size |7212|) into |80| node data
2019-04-30 17:38:49,233 | INFO : Node(id = |1|, Sample count = |164|, Alcoholic samples = |88|, Non-Alcoholic samples = |76|)
2019-04-30 17:38:49,234 | INFO : Node(id = |2|, Sample count = |3|, Alcoholic samples = |2|, Non-Alcoholic samples = |1|)
2019-04-30 17:38:49,234 | INFO : Node(id = |3|, Sample count = |26|, Alcoholic samples = |9|, Non-Alcoholic samples = |17|)
2019-04-30 17:38:49,234 | INFO : Node(id = |4|, Sample count = |117|, Alcoholic samples = |63|, Non-Alcoholic samples = |54|)
2019-04-30 17:38:49,234 | INFO : Node(id = |5|, Sample count = |46|, Alcoholic samples = |16|, Non-Alcoholic samples = |30|)
2019-04-30 17:38:49,235 | INFO : Node(id = |6|, Sample count = |92|, Alcoholic samples = |47|, Non-Alcoholic samples = |45|)
2019-04-30 17:38:49,235 | INFO : Node(id = |7|, Sample count = |60|, Alcoholic samples = |30|, Non-Alcoholic samples = |30|)
2019-04-30 17:38:49,235 | INFO : Node(id = |8|, Sample count = |343|, Alcoholic samples = |170|, Non-Alcoholic samples = |173|)
2019-04-30 17:38:49,235 | INFO : Node(id = |9|, Sample count = |93|, Alcoholic samples = |43|, Non-Alcoholic samples = |50|)
2019-04-30 17:38:49,235 | INFO : Node(id = |10|, Sample count = |23|, Alcoholic samples = |11|, Non-Alcoholic samples = |12|)
2019-04-30 17:38:49,235 | INFO : Node(id = |11|, Sample count = |214|, Alcoholic samples = |110|, Non-Alcoholic samples = |104|)
2019-04-30 17:38:49,235 | INFO : Node(id = |12|, Sample count = |91|, Alcoholic samples = |44|, Non-Alcoholic samples = |47|)
2019-04-30 17:38:49,235 | INFO : Node(id = |13|, Sample count = |34|, Alcoholic samples = |19|, Non-Alcoholic samples = |15|)
2019-04-30 17:38:49,235 | INFO : Node(id = |14|, Sample count = |189|, Alcoholic samples = |80|, Non-Alcoholic samples = |109|)
2019-04-30 17:38:49,235 | INFO : Node(id = |15|, Sample count = |42|, Alcoholic samples = |19|, Non-Alcoholic samples = |23|)
2019-04-30 17:38:49,235 | INFO : Node(id = |16|, Sample count = |4|, Alcoholic samples = |3|, Non-Alcoholic samples = |1|)
2019-04-30 17:38:49,235 | INFO : Node(id = |17|, Sample count = |6|, Alcoholic samples = |3|, Non-Alcoholic samples = |3|)
2019-04-30 17:38:49,235 | INFO : Node(id = |18|, Sample count = |82|, Alcoholic samples = |44|, Non-Alcoholic samples = |38|)
2019-04-30 17:38:49,236 | INFO : Node(id = |19|, Sample count = |47|, Alcoholic samples = |21|, Non-Alcoholic samples = |26|)
2019-04-30 17:38:49,236 | INFO : Node(id = |20|, Sample count = |79|, Alcoholic samples = |49|, Non-Alcoholic samples = |30|)
2019-04-30 17:38:49,236 | INFO : Node(id = |21|, Sample count = |115|, Alcoholic samples = |58|, Non-Alcoholic samples = |57|)
2019-04-30 17:38:49,236 | INFO : Node(id = |22|, Sample count = |90|, Alcoholic samples = |50|, Non-Alcoholic samples = |40|)
2019-04-30 17:38:49,236 | INFO : Node(id = |23|, Sample count = |93|, Alcoholic samples = |48|, Non-Alcoholic samples = |45|)
2019-04-30 17:38:49,236 | INFO : Node(id = |24|, Sample count = |62|, Alcoholic samples = |35|, Non-Alcoholic samples = |27|)
2019-04-30 17:38:49,236 | INFO : Node(id = |25|, Sample count = |189|, Alcoholic samples = |99|, Non-Alcoholic samples = |90|)
2019-04-30 17:38:49,236 | INFO : Node(id = |26|, Sample count = |122|, Alcoholic samples = |55|, Non-Alcoholic samples = |67|)
2019-04-30 17:38:49,236 | INFO : Node(id = |27|, Sample count = |159|, Alcoholic samples = |83|, Non-Alcoholic samples = |76|)
2019-04-30 17:38:49,236 | INFO : Node(id = |28|, Sample count = |29|, Alcoholic samples = |13|, Non-Alcoholic samples = |16|)
2019-04-30 17:38:49,236 | INFO : Node(id = |29|, Sample count = |61|, Alcoholic samples = |32|, Non-Alcoholic samples = |29|)
2019-04-30 17:38:49,236 | INFO : Node(id = |30|, Sample count = |290|, Alcoholic samples = |141|, Non-Alcoholic samples = |149|)
2019-04-30 17:38:49,236 | INFO : Node(id = |31|, Sample count = |31|, Alcoholic samples = |18|, Non-Alcoholic samples = |13|)
2019-04-30 17:38:49,237 | INFO : Node(id = |32|, Sample count = |94|, Alcoholic samples = |46|, Non-Alcoholic samples = |48|)
2019-04-30 17:38:49,237 | INFO : Node(id = |33|, Sample count = |28|, Alcoholic samples = |17|, Non-Alcoholic samples = |11|)
2019-04-30 17:38:49,237 | INFO : Node(id = |34|, Sample count = |29|, Alcoholic samples = |13|, Non-Alcoholic samples = |16|)
2019-04-30 17:38:49,237 | INFO : Node(id = |35|, Sample count = |3|, Alcoholic samples = |2|, Non-Alcoholic samples = |1|)
2019-04-30 17:38:49,237 | INFO : Node(id = |36|, Sample count = |6|, Alcoholic samples = |4|, Non-Alcoholic samples = |2|)
2019-04-30 17:38:49,237 | INFO : Node(id = |37|, Sample count = |4|, Alcoholic samples = |4|, Non-Alcoholic samples = |0|)
2019-04-30 17:38:49,237 | INFO : Node(id = |38|, Sample count = |67|, Alcoholic samples = |39|, Non-Alcoholic samples = |28|)
2019-04-30 17:38:49,237 | INFO : Node(id = |39|, Sample count = |33|, Alcoholic samples = |18|, Non-Alcoholic samples = |15|)
2019-04-30 17:38:49,237 | INFO : Node(id = |40|, Sample count = |31|, Alcoholic samples = |15|, Non-Alcoholic samples = |16|)
2019-04-30 17:38:49,237 | INFO : Node(id = |41|, Sample count = |139|, Alcoholic samples = |72|, Non-Alcoholic samples = |67|)
2019-04-30 17:38:49,237 | INFO : Node(id = |42|, Sample count = |88|, Alcoholic samples = |43|, Non-Alcoholic samples = |45|)
2019-04-30 17:38:49,237 | INFO : Node(id = |43|, Sample count = |348|, Alcoholic samples = |176|, Non-Alcoholic samples = |172|)
2019-04-30 17:38:49,237 | INFO : Node(id = |44|, Sample count = |69|, Alcoholic samples = |35|, Non-Alcoholic samples = |34|)
2019-04-30 17:38:49,238 | INFO : Node(id = |45|, Sample count = |75|, Alcoholic samples = |34|, Non-Alcoholic samples = |41|)
2019-04-30 17:38:49,238 | INFO : Node(id = |46|, Sample count = |33|, Alcoholic samples = |16|, Non-Alcoholic samples = |17|)
2019-04-30 17:38:49,238 | INFO : Node(id = |47|, Sample count = |49|, Alcoholic samples = |17|, Non-Alcoholic samples = |32|)
2019-04-30 17:38:49,238 | INFO : Node(id = |48|, Sample count = |485|, Alcoholic samples = |239|, Non-Alcoholic samples = |246|)
2019-04-30 17:38:49,238 | INFO : Node(id = |49|, Sample count = |128|, Alcoholic samples = |58|, Non-Alcoholic samples = |70|)
2019-04-30 17:38:49,238 | INFO : Node(id = |50|, Sample count = |4|, Alcoholic samples = |2|, Non-Alcoholic samples = |2|)
2019-04-30 17:38:49,238 | INFO : Node(id = |51|, Sample count = |28|, Alcoholic samples = |15|, Non-Alcoholic samples = |13|)
2019-04-30 17:38:49,238 | INFO : Node(id = |52|, Sample count = |58|, Alcoholic samples = |32|, Non-Alcoholic samples = |26|)
2019-04-30 17:38:49,238 | INFO : Node(id = |53|, Sample count = |325|, Alcoholic samples = |158|, Non-Alcoholic samples = |167|)
2019-04-30 17:38:49,238 | INFO : Node(id = |54|, Sample count = |74|, Alcoholic samples = |42|, Non-Alcoholic samples = |32|)
2019-04-30 17:38:49,238 | INFO : Node(id = |55|, Sample count = |55|, Alcoholic samples = |30|, Non-Alcoholic samples = |25|)
2019-04-30 17:38:49,238 | INFO : Node(id = |56|, Sample count = |34|, Alcoholic samples = |16|, Non-Alcoholic samples = |18|)
2019-04-30 17:38:49,238 | INFO : Node(id = |57|, Sample count = |5|, Alcoholic samples = |2|, Non-Alcoholic samples = |3|)
2019-04-30 17:38:49,238 | INFO : Node(id = |58|, Sample count = |49|, Alcoholic samples = |27|, Non-Alcoholic samples = |22|)
2019-04-30 17:38:49,239 | INFO : Node(id = |59|, Sample count = |9|, Alcoholic samples = |3|, Non-Alcoholic samples = |6|)
2019-04-30 17:38:49,239 | INFO : Node(id = |60|, Sample count = |72|, Alcoholic samples = |36|, Non-Alcoholic samples = |36|)
2019-04-30 17:38:49,239 | INFO : Node(id = |61|, Sample count = |80|, Alcoholic samples = |45|, Non-Alcoholic samples = |35|)
2019-04-30 17:38:49,239 | INFO : Node(id = |62|, Sample count = |41|, Alcoholic samples = |20|, Non-Alcoholic samples = |21|)
2019-04-30 17:38:49,239 | INFO : Node(id = |63|, Sample count = |13|, Alcoholic samples = |7|, Non-Alcoholic samples = |6|)
2019-04-30 17:38:49,239 | INFO : Node(id = |64|, Sample count = |148|, Alcoholic samples = |82|, Non-Alcoholic samples = |66|)
2019-04-30 17:38:49,239 | INFO : Node(id = |65|, Sample count = |19|, Alcoholic samples = |7|, Non-Alcoholic samples = |12|)
2019-04-30 17:38:49,239 | INFO : Node(id = |66|, Sample count = |15|, Alcoholic samples = |6|, Non-Alcoholic samples = |9|)
2019-04-30 17:38:49,239 | INFO : Node(id = |67|, Sample count = |228|, Alcoholic samples = |107|, Non-Alcoholic samples = |121|)
2019-04-30 17:38:49,239 | INFO : Node(id = |68|, Sample count = |32|, Alcoholic samples = |13|, Non-Alcoholic samples = |19|)
2019-04-30 17:38:49,239 | INFO : Node(id = |69|, Sample count = |40|, Alcoholic samples = |21|, Non-Alcoholic samples = |19|)
2019-04-30 17:38:49,240 | INFO : Node(id = |70|, Sample count = |194|, Alcoholic samples = |97|, Non-Alcoholic samples = |97|)
2019-04-30 17:38:49,240 | INFO : Node(id = |71|, Sample count = |67|, Alcoholic samples = |38|, Non-Alcoholic samples = |29|)
2019-04-30 17:38:49,240 | INFO : Node(id = |72|, Sample count = |259|, Alcoholic samples = |133|, Non-Alcoholic samples = |126|)
2019-04-30 17:38:49,240 | INFO : Node(id = |73|, Sample count = |3|, Alcoholic samples = |3|, Non-Alcoholic samples = |0|)
2019-04-30 17:38:49,240 | INFO : Node(id = |74|, Sample count = |205|, Alcoholic samples = |95|, Non-Alcoholic samples = |110|)
2019-04-30 17:38:49,240 | INFO : Node(id = |75|, Sample count = |16|, Alcoholic samples = |11|, Non-Alcoholic samples = |5|)
2019-04-30 17:38:49,240 | INFO : Node(id = |76|, Sample count = |57|, Alcoholic samples = |30|, Non-Alcoholic samples = |27|)
2019-04-30 17:38:49,240 | INFO : Node(id = |77|, Sample count = |9|, Alcoholic samples = |3|, Non-Alcoholic samples = |6|)
2019-04-30 17:38:49,240 | INFO : Node(id = |78|, Sample count = |11|, Alcoholic samples = |4|, Non-Alcoholic samples = |7|)
2019-04-30 17:38:49,240 | INFO : Node(id = |79|, Sample count = |298|, Alcoholic samples = |152|, Non-Alcoholic samples = |146|)
2019-04-30 17:38:49,240 | INFO : Node(id = |80|, Sample count = |59|, Alcoholic samples = |29|, Non-Alcoholic samples = |30|)
2019-04-30 17:38:49,242 | INFO : Testing generation |0|
2019-04-30 17:42:13,695 | INFO : Fitness scores of this generation: |[-0.3887649884469668, -0.5036846364021708, -0.3567297971494864, -0.4890066327644572, -0.493930876128109, -0.364253608189409, -0.502673880052729, -0.3530041496737446, -0.4977644848711852, -0.4955003148855505, -0.4883801031864075, -0.494820213576801, -0.35599244710889344, -0.38824594416853925, -0.4697069003797268, -0.48364119683558937, -0.4941023055343449, -0.40950220315582303, -0.4053253255517966, -0.45036024865543617, -0.494598834107438, -0.4199699139067018, -0.5034021010695365, -0.37152950044283467, -0.4539414175375154, -0.45327904802672503, -0.45298619469345325, -0.5018677979301553, -0.38033078113345514, -0.5042480465906848, -0.4562243897931133, -0.4821102806260679, -0.3634004478154028, -0.38124929769583416, -0.45442026295085175, -0.4697513894592071, -0.4543712461522734, -0.5009588907382354, -0.36758100675510996, -0.47344282665488263, -0.4957410580457983, -0.3908858757713584, -0.4779930231518396, -0.4059483648818843, -0.3525258415906961, -0.504202506179704, -0.46912294641467134, -0.46891237160720856, -0.42140515189256134, -0.49062628358653293, -0.45247983858877794, -0.4133757001242808, -0.4928718923354677, -0.36833800645814846, -0.4173243017883073, -0.47602657902687534, -0.49283662986714755, -0.39511824885361035, -0.4251168725386998, -0.49531570665881014, -0.37217508662599924, -0.48300583168128075, -0.4698200931287096, -0.4761377285144195, -0.5034415662491748, -0.4918991400141529, -0.31045481184373724, -0.44028264969536557, -0.36351954447045237, -0.39831301755251225, -0.49506140940741744, -0.4432217343956283, -0.46735185735067275, -0.49719288559341757, -0.44555145753404757, -0.47687486956432285, -0.4876219874193965, -0.46409928829137875, -0.4881589021501996, -0.49172880438361094, -0.47456075654728447, -0.43660901517335965, -0.4379796408865683, -0.3909587808321444, -0.40600244063738056, -0.38271798206147384, -0.42587373781397153, -0.4948127181404088, -0.3236240565878366, -0.5037482444330212, -0.47368944135496116, -0.4950799830067503, -0.4591552781693168, -0.4510416138212766, -0.5034145794846943, -0.4438581550446239, -0.4955989747884123, -0.493043151507995, -0.3978276035702411, -0.41849979985460917]|
2019-04-30 17:42:17,226 | INFO : Best of geration |0| has accuracy of |0.511222| and fitness_score of |-0.310455|
2019-04-30 17:42:17,838 | INFO : Testing generation |1|
2019-04-30 17:45:31,141 | INFO : Fitness scores of this generation: |[-0.326641875208566, -0.32307463275366205, -0.3722217864384292, -0.36062682786359335, -0.35532101680492534, -0.369357750828391, -0.3536749957926276, -0.46426293908560107, -0.5006375214605953, -0.485083930108739, -0.43176228679611917, -0.37707939527043893, -0.4515725737330557, -0.4915414771509962, -0.4397429342775357, -0.37683928602804473, -0.4193393817197622, -0.3276377397174275, -0.3524810538209718, -0.5006307627277813, -0.3699755827357486, -0.37322641309650467, -0.4145502431715433, -0.36922004902652095, -0.41190854472371047, -0.36235544447088913, -0.4741387474963187, -0.3691284449849549, -0.4773024811217916, -0.3857593057179969, -0.3585272735486694, -0.3990412650589438, -0.4962157377566414, -0.498263417875173, -0.3521672322832305, -0.4907860503951861, -0.42676487184423445, -0.33943000367318077, -0.3895251374135072, -0.4991511671326931, -0.4451189629191183, -0.4320166238499175, -0.36474897806671847, -0.3532529353790965, -0.4407611477877445, -0.4440392632213437, -0.3763226434341031, -0.5006953618307223, -0.4562443447980844, -0.4598554788421397, -0.4878550826894217, -0.4973679530133385, -0.3897622209399139, -0.3712306660938994, -0.42429039148687553, -0.33112890613033397, -0.3728710706054327, -0.4798358705460949, -0.3702443491757906, -0.47833741921574674, -0.39216592043904663, -0.38802355763860436, -0.4573032325787867, -0.43046102883106296, -0.4333516785620425, -0.4437154646044642, -0.48844963985841394, -0.34320425960600454, -0.49325586385349357, -0.33909191075108214, -0.4407848536892108, -0.49586914375062796, -0.3951611903663796, -0.45345667316691324, -0.3505740975663732, -0.3988429011436867, -0.4057530333332023, -0.4482118595072745, -0.33856790081751303, -0.50060055493395, -0.4984960013650843, -0.35728481800163386, -0.4527398476503209, -0.45130007374332326, -0.4923093442639781, -0.3402452216522904, -0.4820124474597921, -0.33965529042794484, -0.499120918650889, -0.35990641910302074, -0.49033399860673177, -0.4862089748964151, -0.4542477908490718, -0.3741131813513974, -0.40540269591951433, -0.3707608680691603, -0.49157712217491706, -0.46660377193684777, -0.4526262950547049, -0.4079210932151263]|
2019-04-30 17:45:34,585 | INFO : Best of geration |1| has accuracy of |0.495012| and fitness_score of |-0.323075|
2019-04-30 17:45:34,766 | INFO : Testing generation |2|
2019-04-30 17:48:52,918 | INFO : Fitness scores of this generation: |[-0.334146337552162, -0.30518556074601555, -0.35434932040791906, -0.3253000640009006, -0.35388458463895683, -0.3420432019966162, -0.34075300605482556, -0.3370515970259132, -0.37444979500071707, -0.4922554147888601, -0.4958350795164721, -0.45259566344698765, -0.4644803694767506, -0.40349321559558726, -0.4960494888809918, -0.48989401618281236, -0.4401439787502891, -0.4569309817158786, -0.36027345316654663, -0.40718990886896816, -0.32548547980481635, -0.4150378063001923, -0.4934362249350198, -0.3872384057372909, -0.3619873291542995, -0.33662945263952926, -0.489354079545149, -0.4244843585313778, -0.3725682845446276, -0.39478036516011095, -0.4778168807908674, -0.4986424871133441, -0.36078841169495995, -0.41090012920480706, -0.450173877574411, -0.3107440331541296, -0.35606213879961573, -0.3612239129648133, -0.36336483775292605, -0.48256094453031073, -0.3650769274156822, -0.469704927559501, -0.49652931332722594, -0.3529531693310721, -0.38382609996612876, -0.36504559126486236, -0.3872528169913115, -0.4601388312918223, -0.45096677407336744, -0.42231060495640005, -0.40064726580089755, -0.3549256427245049, -0.43624241053722085, -0.33813174235242865, -0.3636599718314819, -0.4180206369184453, -0.39528026353681234, -0.5038141032351179, -0.4605866584931044, -0.337037923236576, -0.46573123594550697, -0.478273712930174, -0.4401754810818153, -0.4393748128629188, -0.490844513947961, -0.49627527466890103, -0.4654896759261139, -0.4399302454650604, -0.3375679005899182, -0.29755967764736163, -0.4590807992549195, -0.3266652142114542, -0.47997488133533694, -0.34578629276529377, -0.49146356903176164, -0.4334083242171781, -0.3329309245577794, -0.4950720885896629, -0.3485010678563876, -0.5008330384128661, -0.3994343612750461, -0.3701707372334791, -0.4886600742748652, -0.3516684445009694, -0.3785138938244193, -0.37382048959796566, -0.3431458037090409, -0.49620518420970966, -0.39751196962601704, -0.4927038436140256, -0.37534902432120776, -0.35187486855663874, -0.36118729535192085, -0.43474837579883074, -0.5002022164179749, -0.3429755449563836, -0.42128585159711396, -0.32100240309988365, -0.49494432025455704, -0.416109657139762]|
2019-04-30 17:48:56,403 | INFO : Best of geration |2| has accuracy of |0.539900| and fitness_score of |-0.297560|
2019-04-30 17:48:56,576 | INFO : Testing generation |3|
2019-04-30 17:52:20,726 | INFO : Fitness scores of this generation: |[-0.3162640677717736, -0.32242512002007406, -0.3297271819031985, -0.3314630873060065, -0.3332318381962639, -0.3378838411896362, -0.3277082567917917, -0.4009638284466997, -0.42765427258514915, -0.3565342615779281, -0.4044343111370793, -0.3559507595252265, -0.3222731867720028, -0.3288745996108918, -0.38079661135947845, -0.38337989839805564, -0.4507714566190029, -0.38731635909514933, -0.3807794300180603, -0.44000673523825135, -0.3627790866668656, -0.3217659109790515, -0.40546615868050434, -0.37810080340872765, -0.4774268994930432, -0.4670872574580704, -0.42472902551220887, -0.3564562749892927, -0.3347041522690084, -0.3130801010958838, -0.4982822547003299, -0.35065295426222276, -0.4288080364289219, -0.3667502316524938, -0.34515051249345347, -0.39253254793032805, -0.3669069672998434, -0.31988521648945945, -0.3325051904077659, -0.42397944606500226, -0.37402474101122263, -0.3870173657404388, -0.36931563114555155, -0.49877006502676396, -0.4038654406714157, -0.31416320622395943, -0.4967450142007592, -0.404962139736779, -0.4308216541803831, -0.3186205507535015, -0.38750689235939795, -0.48008862722747014, -0.42708901191120824, -0.3715448441667807, -0.36455784874216557, -0.4465161293946749, -0.35244608263275545, -0.3769708041790337, -0.4015217936911357, -0.3963836566395364, -0.4883046023383762, -0.3186800858343111, -0.4015756459960276, -0.4005929367544284, -0.38955880093897255, -0.3479644319077232, -0.4643797403210916, -0.482458437171755, -0.3610534304642637, -0.36671985431169296, -0.3568176966784569, -0.3434624112196985, -0.3483620407264648, -0.49675564969655017, -0.35359817808856414, -0.471095463333497, -0.4693699036102408, -0.3097982227096299, -0.47783227058130673, -0.493670577155078, -0.3252924583133707, -0.38078663273448166, -0.4100623816100474, -0.45601499040316407, -0.3463080381177202, -0.32982814962488743, -0.49787612635068684, -0.37167914688284626, -0.37531850460519645, -0.4513205521804629, -0.4677901614186324, -0.3766053284687036, -0.4895732397040142, -0.3620537547378875, -0.36874207542884574, -0.49997453724616364, -0.4932193901333107, -0.4813601721815651, -0.35975605103166775, -0.4185576976707139]|
2019-04-30 17:52:24,197 | INFO : Best of geration |3| has accuracy of |0.509975| and fitness_score of |-0.309798|
2019-04-30 17:52:24,374 | INFO : Testing generation |4|
2019-04-30 17:55:41,744 | INFO : Fitness scores of this generation: |[-0.2982303201754888, -0.32259780999024706, -0.31813865741093955, -0.326357980132103, -0.31044724186261496, -0.31662481534481046, -0.31131957737604776, -0.4298929331302643, -0.3006797401110331, -0.37000415523846947, -0.32027238843838374, -0.3016758447488149, -0.33569477848211926, -0.3151666541894277, -0.3577943059206009, -0.5005071943600973, -0.4892364888191223, -0.5042594205935796, -0.3191311279535294, -0.2918948801358541, -0.3342925682067871, -0.31002628950277966, -0.33303989203770956, -0.3767134595314662, -0.49943687347571053, -0.38348580825328826, -0.31620266155401866, -0.3317082870602608, -0.3263009204864502, -0.3007415430943171, -0.3154300815264384, -0.3271626981496811, -0.32331391380230584, -0.45352292895317076, -0.2981235417127609, -0.3524114280541738, -0.35391867844263714, -0.29700068032741544, -0.35617052268981936, -0.3301986847917239, -0.47724465330441795, -0.4369349649747213, -0.3202358470360438, -0.3337474575042725, -0.41304218979676566, -0.3011098365386327, -0.31098244229952493, -0.46557784124215446, -0.4669442399740219, -0.48098571972052256, -0.345885346810023, -0.3346836895942688, -0.38506281809012094, -0.2936299345493317, -0.3479458224773407, -0.3223229526678721, -0.35997228157520295, -0.33251119283835096, -0.3105790222088496, -0.31715446001291275, -0.32105861604213715, -0.30635521646340685, -0.3545167827606201, -0.40263466533025105, -0.32439039584000906, -0.4358232337633769, -0.31529381052652994, -0.29668323262532553, -0.3188529112736384, -0.304221622188886, -0.34431762317816417, -0.3687584335009257, -0.35918349663416543, -0.3041155827045441, -0.313851193745931, -0.3955495082537333, -0.3258824946085612, -0.32244371438026426, -0.3001475511789322, -0.3374835418065389, -0.48576771477858227, -0.3620064748128255, -0.3227090466419856, -0.3278727224270503, -0.4035367628733317, -0.29871664985020957, -0.30415650802850724, -0.40018207295735675, -0.5043596897522609, -0.3574218242565791, -0.3166863135496775, -0.33029345647493996, -0.33128085899353027, -0.3046513996521632, -0.3079139853318532, -0.3517254566748937, -0.49901167798042295, -0.30297860531012216, -0.3092212033669154, -0.353176976621151]|
2019-04-30 17:55:45,274 | INFO : Best of geration |4| has accuracy of |0.539900| and fitness_score of |-0.291895|
2019-04-30 17:55:45,453 | INFO : Testing generation |5|
2019-04-30 17:58:58,188 | INFO : Fitness scores of this generation: |[-0.30470437427851915, -0.2991813599950222, -0.3166636443454808, -0.30546473252253015, -0.30593731716642797, -0.30227568937886146, -0.30759622849368506, -0.4745975841381066, -0.48284635230531275, -0.31076707418096133, -0.30324695554811093, -0.30570833953327203, -0.32572926776006506, -0.4327602017762765, -0.3059339505784652, -0.49286043966291526, -0.45282271939844065, -0.3002536475545315, -0.2928368056182391, -0.31743970049626463, -0.3122089142138863, -0.3590710657936798, -0.3129745621156421, -0.348721811339344, -0.4670563145651989, -0.31301403413235124, -0.2990212794499334, -0.3118823811383582, -0.31973433421051706, -0.31789251675641966, -0.3305594104517117, -0.5138762165179063, -0.35371472549393235, -0.30594662787565924, -0.3072629404701363, -0.31153076971957083, -0.3942042281055925, -0.29760904915531855, -0.33910484903225185, -0.37103150126151385, -0.5214174738758203, -0.29832171602086277, -0.3151656127971309, -0.3318292737233345, -0.32801613641418587, -0.3187322327602068, -0.3014025842555334, -0.5227085116126732, -0.38981407084829217, -0.30331160849140537, -0.3001720326222776, -0.3028092738912499, -0.29194478518144, -0.3213259577185651, -0.34075118485392836, -0.3444464327714475, -0.4708491942688003, -0.2973557738923031, -0.29601184319725976, -0.31811386810534364, -0.3152477976493184, -0.32914082516529075, -0.3488655106731791, -0.42471265408300585, -0.36363621941101393, -0.3139388531842313, -0.2942030317303804, -0.31077954942180264, -0.3148716859505344, -0.29213932173528073, -0.29643174830605, -0.4554810775072796, -0.47429993889079913, -0.307516450504198, -0.31641464803431474, -0.29290104562688823, -0.3404119431520096, -0.3378961357717496, -0.39809441447710403, -0.4343743949732699, -0.5152428130949697, -0.31428850963853117, -0.30572818273385066, -0.3039995780253546, -0.3101901665358209, -0.3137511383650199, -0.33539546406925064, -0.30148623711243977, -0.33817021958742016, -0.3113841685330393, -0.3069904470353244, -0.306153750566649, -0.41708668138994437, -0.34039019695721723, -0.48824593345625805, -0.5006783850618286, -0.34772044816098585, -0.29323811639644615, -0.31007317698205444, -0.2997739164042066]|
2019-04-30 17:59:01,715 | INFO : Best of geration |5| has accuracy of |0.501247| and fitness_score of |-0.291945|
2019-04-30 17:59:01,950 | INFO : Testing generation |6|
2019-04-30 18:02:29,455 | INFO : Fitness scores of this generation: |[-0.3008640529336156, -0.3060829530696611, -0.29965168013813387, -0.3019589272065648, -0.29882852998465914, -0.3067394405816621, -0.31006766567880284, -0.4102316688781749, -0.3064550598446629, -0.3070418619341994, -0.3022606818920478, -0.3150525467502862, -0.358435138325623, -0.33417340236551624, -0.31389013731138504, -0.3025692795389976, -0.30508808149631905, -0.31127696279406736, -0.3148497991939038, -0.303747762604624, -0.31232560775427826, -0.3094206348132632, -0.3130068283628773, -0.2978778680244576, -0.30238379895781864, -0.30603909148984193, -0.3088181796579937, -0.351854643235146, -0.3210475991564449, -0.33687206299676425, -0.30534437438547135, -0.30526805900049137, -0.30602619618130034, -0.30973457385132913, -0.30713451581463713, -0.31499457160315947, -0.3122698917440087, -0.3154469733681701, -0.3169472055044765, -0.3193760546833419, -0.3022112424451331, -0.31186353219806295, -0.3037670246297301, -0.30000995362506194, -0.3060120754240048, -0.3683359542290054, -0.3372663430312859, -0.3013715716774778, -0.30616741522033186, -0.30717467951376604, -0.3007545593196144, -0.29675365971410217, -0.2973460773500615, -0.3593141886454508, -0.3352918065788257, -0.3101306968562554, -0.3025441027360425, -0.30358469211429784, -0.3108994314515155, -0.30502147067616586, -0.30315955981778037, -0.3590368928420335, -0.30879483188373674, -0.28476045556686264, -0.30293805199558294, -0.30966781231386675, -0.29992783947334, -0.3357928356893112, -0.317314616708005, -0.35651750377836877, -0.31256756233865773, -0.288559194873361, -0.30399263025941076, -0.3100277522315282, -0.31134737440531507, -0.37188598263671174, -0.3546711721698885, -0.3255977600528629, -0.3248548183134137, -0.29762971281578887, -0.3058191449255557, -0.3068741025056672, -0.29675166582502127, -0.32734577871847226, -0.31860891158658483, -0.32087347984598247, -0.3395269056145451, -0.29299944957839663, -0.30674648441267693, -0.311805341884328, -0.30724651476631865, -0.2996137504405172, -0.32466312264505365, -0.315199337319274, -0.36347625817991025, -0.3223971677307389, -0.3113846659233915, -0.31115197745671525, -0.3056584221854308, -0.31913709567063187]|
2019-04-30 18:02:32,957 | INFO : Best of geration |6| has accuracy of |0.504988| and fitness_score of |-0.284760|
2019-04-30 18:02:33,145 | INFO : Testing generation |7|
2019-04-30 18:05:57,230 | INFO : Fitness scores of this generation: |[-0.28973742993032436, -0.2873864925807089, -0.29986969673115277, -0.3084385232572767, -0.2899690492480409, -0.3016589045880294, -0.2976513983394382, -0.3108771309218443, -0.31615113151297036, -0.31150119650699293, -0.29321116940749575, -0.29529894545407553, -0.355728667181776, -0.3101799872220325, -0.294867508284881, -0.29461683814381295, -0.3056400626618336, -0.3494619008626881, -0.3011087710188681, -0.33642298750458677, -0.3291145702863695, -0.305125240703373, -0.31865524586356814, -0.29692138338942664, -0.2968007952914925, -0.3177998715857614, -0.2939798089041226, -0.30101735611705827, -0.32794694697765436, -0.33470261803266843, -0.3981380500502802, -0.2743555952978256, -0.30885196042081176, -0.29000725999207755, -0.29440115182600973, -0.2856806771478791, -0.29474098689517503, -0.3165156019110001, -0.2933451728696815, -0.29304160788744205, -0.2957533895715322, -0.30935562660525423, -0.30385946000323577, -0.2993249709242343, -0.30382383997787904, -0.2844442414963032, -0.2877632794681006, -0.2863081661382498, -0.308574749291807, -0.2895981979390443, -0.296537902831828, -0.3103886137431438, -0.3075122606622187, -0.3205969662414284, -0.29560604445058264, -0.2877836875547635, -0.3249118662703678, -0.29985408227055477, -0.309115415808998, -0.3038486710035791, -0.307600116790713, -0.30465254009735454, -0.2975325742442691, -0.2933062578456989, -0.29965516824500743, -0.32269142775177856, -0.30085020244934574, -0.29374807056766844, -0.30421380924802505, -0.3371198310724, -0.2945373606854591, -0.29254422763017945, -0.2892974392786457, -0.28730940646019537, -0.3071768235824907, -0.3088639724081841, -0.3164058248151192, -0.3050769232118221, -0.35415273218813453, -0.2987385097468702, -0.295729608258323, -0.30421768442647434, -0.2995190895325286, -0.3102085821057423, -0.33110077733782145, -0.3003119117463641, -0.31102373294106733, -0.29896209690678555, -0.30989810250197736, -0.29594387994397936, -0.32716488345301464, -0.30601028685171383, -0.3731007565063792, -0.30743703543377654, -0.32998576793321055, -0.2735550498489834, -0.3154334204123758, -0.30165165500161184, -0.29518362808613724, -0.2978957119347799]|
2019-04-30 18:06:00,740 | INFO : Best of geration |7| has accuracy of |0.551122| and fitness_score of |-0.273555|
2019-04-30 18:06:00,923 | INFO : Testing generation |8|
2019-04-30 18:09:16,755 | INFO : Fitness scores of this generation: |[-0.29491653875246515, -0.29385248870086944, -0.2978688469881283, -0.3062951844453983, -0.2978605882235151, -0.2999862456098414, -0.2973670728869672, -0.2980997294767274, -0.29232732624202024, -0.2974040490019562, -0.2954932803379356, -0.29989067952468, -0.2938032374000687, -0.3091427677388837, -0.30004260446393183, -0.29449139243415867, -0.3018833753312012, -0.30641651388676433, -0.2960786971582975, -0.3011752485756572, -0.2955620577854107, -0.28470870876088955, -0.32226406316935846, -0.2874277674885579, -0.3335345430831057, -0.30935684623738874, -0.31160930471135145, -0.30169959342703007, -0.3083008741181591, -0.2964675348112494, -0.3127908777950133, -0.29188024843117, -0.3016371156923709, -0.31197311030298214, -0.30215718691647914, -0.30461763687195625, -0.2923875383667712, -0.29459723070135035, -0.2901541509743383, -0.2980048370034963, -0.31135639548301697, -0.3253440256378149, -0.3145735499795301, -0.2946742912405506, -0.30075824737377055, -0.2995115240515137, -0.3498997239970336, -0.2927688915464995, -0.3114778268974951, -0.3044585734176361, -0.30214886848280686, -0.3034080035920102, -0.2933511382307031, -0.30624344592822733, -0.29658831928666113, -0.29603242805436986, -0.3056270826704564, -0.2981440367161025, -0.29524429295995736, -0.3003635127365761, -0.31311966405821806, -0.3104205512433643, -0.30677837199968977, -0.2952386469765424, -0.2996349755771222, -0.3056717446175879, -0.2912243219355513, -0.29791996426214745, -0.30288775357543907, -0.30408683026300726, -0.30229098034179863, -0.28776832176130857, -0.3045794568333227, -0.31106808494980465, -0.2881785425268951, -0.2892332826808138, -0.32109275520363184, -0.3194789294293016, -0.2884230876303887, -0.2956835412412281, -0.31937423511609564, -0.30540949177072096, -0.3174489905859105, -0.2987937767069347, -0.3375443685424087, -0.2989673986601555, -0.32002637538554346, -0.2949690747072099, -0.31791431295768674, -0.3037199673030837, -0.3454405460721392, -0.30036841526155167, -0.31275386820609014, -0.3101301571134188, -0.29986964861838206, -0.2947343657442747, -0.3095852732658386, -0.30810623423810996, -0.2951356249644021, -0.30380991680993125]|
2019-04-30 18:09:20,211 | INFO : Best of geration |8| has accuracy of |0.504988| and fitness_score of |-0.284709|
2019-04-30 18:09:20,400 | INFO : Testing generation |9|
2019-04-30 18:12:32,779 | INFO : Fitness scores of this generation: |[-0.2827750250088925, -0.27818347434608304, -0.27641250162708514, -0.287848030578117, -0.2771227558656615, -0.2874005724885026, -0.2877535290864049, -0.29795206350331405, -0.3169321308330614, -0.31023404902341417, -0.28507258551461356, -0.3096540969245288, -0.27598082450579625, -0.2866058110582585, -0.28356912157365255, -0.296678007257228, -0.2866988235894515, -0.32376676627567835, -0.30031595041557235, -0.2840159947774848, -0.29965008393842346, -0.2906877067624306, -0.3080687822127829, -0.2847015630225746, -0.3126165931322137, -0.32624354739578404, -0.29198963100812875, -0.2834906117344389, -0.28664742458839804, -0.28533023997228973, -0.28796286248430913, -0.28226977538089365, -0.2868433276913604, -0.3694190514939172, -0.2903171255272262, -0.28199104751859394, -0.2906310192784485, -0.2768827898161752, -0.3042807763328358, -0.2957894727891805, -0.30067883279858804, -0.3488573684984324, -0.2860398970696391, -0.29644275696910155, -0.2888956878866468, -0.2788661619230193, -0.30176988420437795, -0.28788400310642864, -0.28943447184805965, -0.28547364582820817, -0.2905694749282331, -0.30142378867888936, -0.27657807518024835, -0.2849154309958828, -0.31093283368616687, -0.2918825984305265, -0.2928503298029608, -0.28969874753027547, -0.28644360954664194, -0.2883570402860641, -0.29068189433642794, -0.28566273870516795, -0.31125021801919356, -0.29196746781164284, -0.3385850910629545, -0.2845812498914952, -0.31970814065057407, -0.28821191380218586, -0.28193138922963823, -0.29751909369108626, -0.28288688021046776, -0.30998733700538167, -0.29832396562002145, -0.2967792722035427, -0.29650806419703424, -0.2808557254927499, -0.2930029623362483, -0.2913014341373833, -0.28940526332174027, -0.2918033248003648, -0.2968673411072517, -0.2971213077404061, -0.3079108603754822, -0.2942547005658247, -0.27985934013006636, -0.2806782642797548, -0.28933654561334726, -0.3087943499185601, -0.31562894163083055, -0.3017139889147817, -0.287015318444797, -0.3133050725776322, -0.28575202208392475, -0.2797057404810069, -0.31030750481449826, -0.278386169367907, -0.2913244099641333, -0.3137038525878167, -0.28909269115146324, -0.2853566793762908]|
2019-04-30 18:12:36,280 | INFO : Best of geration |9| has accuracy of |0.518703| and fitness_score of |-0.275981|
2019-04-30 18:12:36,460 | INFO : Testing generation |10|
2019-04-30 18:15:45,465 | INFO : Fitness scores of this generation: |[-0.3064333091687112, -0.28815430881333176, -0.30945467078772776, -0.2895861149486834, -0.2826571932239254, -0.2845277684557177, -0.30785375012315974, -0.299586110360866, -0.2833342187813599, -0.2908725330103053, -0.27529889676910246, -0.28849606379105225, -0.33819571463731085, -0.2975672290925562, -0.29606899782253876, -0.30679280033511835, -0.2885686912893379, -0.30695465152716117, -0.28258941240989377, -0.2854676264045882, -0.3603363753887859, -0.2867348487794834, -0.3024250938944573, -0.29020591819808433, -0.28352780357329516, -0.3382784260885559, -0.2988181112021425, -0.3013982119133873, -0.32281171394525654, -0.2930283851540872, -0.3628755271652319, -0.28949105777662165, -0.28552174701416577, -0.29138276190327034, -0.29905879671556235, -0.28252522114419587, -0.2957223508044751, -0.3231937327306636, -0.29537445056612477, -0.3231799676470513, -0.28284215861863465, -0.2819607674151006, -0.28527483493633515, -0.26878077449807286, -0.2879343411348162, -0.40839754273421575, -0.354446133666665, -0.2904329297207568, -0.2874213244466886, -0.2881777252811585, -0.29479430213461827, -0.2839673175102603, -0.29881714877203436, -0.33168479202002504, -0.2980049464606891, -0.2913470185858055, -0.2855355331171168, -0.2890954755627326, -0.30647524973771867, -0.2851923316934683, -0.2889643972807557, -0.3116556781269338, -0.29988782869203245, -0.32086358420605204, -0.2864758421796082, -0.3044866030886225, -0.284714017960712, -0.267757282911861, -0.2917709335358474, -0.2827758638963212, -0.28179724721142846, -0.29395584229135163, -0.28738240522407266, -0.316046437969173, -0.2920304826957031, -0.27250222372312616, -0.2899553311349702, -0.30554211155994093, -0.28949020492987043, -0.3013366144286455, -0.2842287752151924, -0.3334922158587588, -0.31930888765049675, -0.2774300639429232, -0.2940684811477243, -0.3011915456422054, -0.27651236146470926, -0.28730105809921763, -0.2827786210462125, -0.30375026851674936, -0.2827172749233942, -0.30975228809092165, -0.31257352678880207, -0.3125692086063162, -0.30191970910251575, -0.3045241120305375, -0.287183099201996, -0.33196885688026456, -0.32553496325973175, -0.2733537235508]|
2019-04-30 18:15:49,039 | INFO : Best of geration |10| has accuracy of |0.523691| and fitness_score of |-0.267757|
2019-04-30 18:15:49,265 | INFO : Testing generation |11|
2019-04-30 18:19:18,552 | INFO : Fitness scores of this generation: |[-0.29077437616227014, -0.2907295961507224, -0.29371208902718365, -0.27647415981462353, -0.2832071102066002, -0.28719528233423847, -0.28787588044431683, -0.2900386465436071, -0.30677755117141525, -0.2876861259949851, -0.29357694672501605, -0.28580634718041803, -0.3002093567835641, -0.2806917472751087, -0.28647741776484903, -0.3091556092181853, -0.31243434318676294, -0.2782989935519981, -0.292326884778592, -0.2855372579083612, -0.28356612015304516, -0.2791265812119633, -0.2814556398921019, -0.28615350080887164, -0.33243936101988214, -0.2904382019803144, -0.29018368033081177, -0.28310143786613806, -0.29475876832275366, -0.27759081625891296, -0.27822341252614075, -0.28951692473197327, -0.2877640120282632, -0.29248699473219586, -0.2910158177138317, -0.28234788889313245, -0.2813421166618508, -0.28342866737577127, -0.2826430226267562, -0.28755563833261194, -0.28312373453842005, -0.3165043248882093, -0.28916186501660995, -0.2832018500966988, -0.2864029032518113, -0.28648721845881897, -0.2758291313849262, -0.2906319135812274, -0.2906415295420271, -0.29280715980548633, -0.29561820763687213, -0.2841280959104832, -0.2854920135067386, -0.29067148256443237, -0.28291602793968085, -0.28116068809399963, -0.2955043997728463, -0.2887524664402008, -0.2930008527357745, -0.286409759945549, -0.2856987430094416, -0.2827994801761762, -0.27887062111940625, -0.28466697793076, -0.2913111296724111, -0.2948483530436894, -0.2841959197923286, -0.2938743681991681, -0.29105667432227783, -0.27743811035658844, -0.28125471477452, -0.29263074217027985, -0.28921795881823276, -0.3227340942629084, -0.2873455369857303, -0.29181977978886664, -0.2880167788353519, -0.27906219582705316, -0.27887219979829, -0.27861646457780176, -0.30896391575279913, -0.2905705869394172, -0.3114507764145948, -0.28200557864269876, -0.2841035133136905, -0.28579425158001215, -0.28560990778353845, -0.28910955376383185, -0.299074510968878, -0.298156394121361, -0.28960025605005707, -0.2909398849008112, -0.29553629157571454, -0.2810557649737133, -0.2867305853621291, -0.2914420201765847, -0.30197137413602887, -0.30004888629646326, -0.296993018099756, -0.28910880162821145]|
2019-04-30 18:19:22,036 | INFO : Best of geration |11| has accuracy of |0.551122| and fitness_score of |-0.275829|
2019-04-30 18:19:22,220 | INFO : Testing generation |12|
2019-04-30 18:22:45,414 | INFO : Fitness scores of this generation: |[-0.2716403511068266, -0.2729793729182954, -0.2744345251444934, -0.2727704202601065, -0.2750934911115716, -0.2763866560223202, -0.2797893275403314, -0.28399094675357145, -0.27499759251562256, -0.2724535530433059, -0.2853686230050193, -0.27590780663821435, -0.27373356084960204, -0.2726831449997715, -0.2868775872565392, -0.2809127634132488, -0.2733614803550558, -0.2733136771971153, -0.29642170266662204, -0.2876001516512285, -0.2754814758275946, -0.27383342377531034, -0.2754069006122235, -0.28875707736652756, -0.2738564430684265, -0.27239960530358887, -0.2838325656872864, -0.28670045445000547, -0.27479168274698573, -0.27253955801845425, -0.2740248486710091, -0.2864208816188491, -0.27976115501951426, -0.27218661900971913, -0.29905281378887594, -0.2830069547700178, -0.27130952089404065, -0.2750954381707642, -0.27815407059258884, -0.2797941176945137, -0.27472465086935294, -0.2720054691243503, -0.28190513441546095, -0.2865697225659258, -0.27458081289660186, -0.27399749550709707, -0.2863826293291317, -0.2801839841866038, -0.2765615220285124, -0.2725537709969406, -0.27743864375063115, -0.2819532934938454, -0.27355639424381983, -0.27231963417337585, -0.27710544277862126, -0.2872869309244884, -0.2772638726099912, -0.27242499571810996, -0.2858030709515636, -0.2840281321744745, -0.27408210886642337, -0.27341295393287307, -0.282095193138553, -0.280993667896837, -0.2813237254352619, -0.2723960289472921, -0.28263263959282386, -0.3172381714038137, -0.27554763910464114, -0.2753345530816457, -0.2779681445616815, -0.2830433906055987, -0.2801305625277261, -0.2732882782842757, -0.2787374804675993, -0.2885864446353581, -0.2732843921209375, -0.27392071235873217, -0.2730719645300673, -0.2805185875493205, -0.27911476423549986, -0.2724661586883788, -0.2805729567901128, -0.27871919305632925, -0.2763213537012537, -0.2726694934406421, -0.27690563989906675, -0.2833586670458317, -0.2749952360625482, -0.271130930709963, -0.2792595848441124, -0.2827697691973299, -0.27363790300053853, -0.2732286140995307, -0.278463449406748, -0.2827148640321361, -0.27310617830759537, -0.2718487065932196, -0.3158417517422802, -0.3139200400198913]|
2019-04-30 18:22:48,955 | INFO : Best of geration |12| has accuracy of |0.559850| and fitness_score of |-0.271131|
2019-04-30 18:22:49,139 | INFO : Testing generation |13|
2019-04-30 18:26:25,430 | INFO : Fitness scores of this generation: |[-0.2707670894257098, -0.27286686222081585, -0.27159794147421673, -0.2727577752214137, -0.27187147327877964, -0.27238278376054637, -0.2748219417847269, -0.2732451754372294, -0.2710197574077906, -0.2714720003973178, -0.2749384550867365, -0.2742813032494005, -0.2728274437793225, -0.2723424305760764, -0.27215729149053414, -0.27012148685248566, -0.2709898175101293, -0.27208771603863413, -0.2718440945393994, -0.2725612870722928, -0.2722512844939865, -0.2721585839906036, -0.2763046444270023, -0.2732844526367136, -0.2721819824481075, -0.27259892960227927, -0.27522049709387264, -0.27360468527811976, -0.271698995221275, -0.27176886871255185, -0.27267268012532697, -0.27602122915469535, -0.2717319794140534, -0.2710444509660002, -0.26874841784397113, -0.27361828306826147, -0.2718676076510411, -0.27262372611984004, -0.2743360868152887, -0.2705089704131046, -0.27097525864758787, -0.2742914391726982, -0.275861508397229, -0.27090181876327285, -0.27201648267304024, -0.2723227412073916, -0.27403638443649625, -0.26983471738936776, -0.27074842243013664, -0.27639445526813106, -0.2721317887144683, -0.2719497674202854, -0.2734051188156211, -0.2717512426014515, -0.27216055578978726, -0.27118992160975447, -0.27022247721509235, -0.27006198918916346, -0.2742238861435474, -0.27240777965483626, -0.27185069663414785, -0.2723487027292329, -0.2732918369737744, -0.27224529645630335, -0.2723417538937514, -0.27541740029484924, -0.27192280150364406, -0.27059986155207566, -0.2714119694904906, -0.27215652149221115, -0.2732974753631809, -0.27112364145475354, -0.27095967825189193, -0.27239076272258916, -0.2711941583531336, -0.27397496837587537, -0.27289702165417556, -0.2715940771064138, -0.2755408512221442, -0.2748295473050942, -0.27265410085680686, -0.27082447417706335, -0.2728930806887505, -0.27252125218308715, -0.27235236145293484, -0.2716604796366963, -0.2734358993164569, -0.27125189073363615, -0.2706750584004048, -0.27159190179532783, -0.27371299417038275, -0.27566463517625805, -0.2716380929720757, -0.2729835729288861, -0.2742378869192387, -0.2727834382838996, -0.27135598392990545, -0.27359342327932035, -0.2781802054989306, -0.27391113013755986]|
2019-04-30 18:26:28,954 | INFO : Best of geration |13| has accuracy of |0.563591| and fitness_score of |-0.268748|
2019-04-30 18:26:29,140 | INFO : Testing generation |14|
2019-04-30 18:29:50,549 | INFO : Fitness scores of this generation: |[-0.27767653896208444, -0.2789443672382678, -0.2801289197327006, -0.27963627580963113, -0.28119529754189243, -0.2796635889882966, -0.2796875863706156, -0.2775626236017206, -0.2782451328927627, -0.27783497199194634, -0.279214859245081, -0.2784256686717715, -0.2768741780661261, -0.2785935745278246, -0.27737167319587486, -0.2801074584275927, -0.2772221098865343, -0.2817788134865293, -0.2823113883421844, -0.2793154646933256, -0.2779448014952619, -0.27977996676185557, -0.28071627112399006, -0.28101888145398574, -0.27921971099818543, -0.2782450316859662, -0.2819673747149166, -0.2785250910062147, -0.2790346113730469, -0.2770979083387774, -0.2786743711639561, -0.28066314702227757, -0.2769908287568891, -0.2795181153314437, -0.2799570987405342, -0.28184090027487785, -0.2801664429832143, -0.2784033823976195, -0.2811043774201447, -0.2808550130742038, -0.278309896676935, -0.27976547358825254, -0.2782424872203908, -0.2818952992602784, -0.28333910856658096, -0.278250587456172, -0.27934917925725017, -0.27972873131217524, -0.2813894759025517, -0.27789782789582895, -0.283067835024138, -0.27844639593593196, -0.2827517818234957, -0.276675522740934, -0.2819430352852295, -0.2805921639453313, -0.2795091970529263, -0.2805163961926584, -0.28062670649102234, -0.28008755387293455, -0.27808381271492266, -0.27754130729126153, -0.27687910129754584, -0.2800228845907746, -0.28019481145650355, -0.27941068457541074, -0.2828787208282794, -0.28191826096020556, -0.28198873710230626, -0.27861653590285035, -0.2795137442404735, -0.2807357450070301, -0.28191862387510663, -0.28026998760797106, -0.27782123464245506, -0.2789316877826118, -0.28196454731926573, -0.2802970379561452, -0.2801075363300955, -0.27926811061954593, -0.27957053534221366, -0.2827315143687047, -0.2813725293243841, -0.27806747461806675, -0.2799599173638464, -0.2787132348396379, -0.278702526915416, -0.27987864319644906, -0.27832556202106834, -0.281126020950652, -0.2778471659710197, -0.27756564016384694, -0.27919328893554224, -0.27535664443041097, -0.28164424166098107, -0.2805390282653132, -0.2803375918429245, -0.2801287327223892, -0.2788199132420972, -0.27689152775836295]|
2019-04-30 18:29:54,019 | INFO : Best of geration |14| has accuracy of |0.552369| and fitness_score of |-0.275357|
2019-04-30 18:29:54,209 | INFO : Testing generation |15|
2019-04-30 18:33:04,313 | INFO : Fitness scores of this generation: |[-0.2797700912122889, -0.28411708688793974, -0.2853741146932263, -0.2821915995175531, -0.2844682997885702, -0.28220498402333316, -0.2831440987813212, -0.27942829526543905, -0.28577805232537634, -0.28265904771150463, -0.2812419440189417, -0.2821073231905916, -0.2804419604241123, -0.2872107380643088, -0.2844472391907026, -0.28153520329445236, -0.28588954991957855, -0.28253293661015455, -0.28105995269297396, -0.28225181768410396, -0.2803294134401057, -0.2820578131942563, -0.28259701943455534, -0.28080105063689015, -0.2864598792834874, -0.2831466443057188, -0.28279114762942, -0.28195373210013636, -0.28085932802689917, -0.28265244834614495, -0.28417192250852746, -0.27820734712329226, -0.2857804296950644, -0.287333342860795, -0.28030449369528, -0.28280484567593484, -0.28130125027793457, -0.28041993426000406, -0.2834043209860215, -0.28514621147564145, -0.2862677776465451, -0.2860925882112081, -0.2788850451182855, -0.28257984452294027, -0.28160778666934827, -0.28411957556313844, -0.28561624181241596, -0.2835742978428982, -0.2837318211721388, -0.28588560716659195, -0.28235628490320375, -0.2850335362183787, -0.282094134321468, -0.2820051762744458, -0.2864292463391947, -0.2869439551430027, -0.2846161501250998, -0.2827134405029371, -0.2806074002218362, -0.2808990359596382, -0.28064257153049293, -0.2812929215802473, -0.2854621691715398, -0.2847164843929365, -0.2838389738632815, -0.28325292888639036, -0.2809132383252582, -0.28050348380186263, -0.28015371178188464, -0.28172694411300975, -0.28434816213129793, -0.28132703740811404, -0.28677100893064716, -0.2815457235142552, -0.2795838802835367, -0.28803646956047, -0.2828000017471267, -0.2829932335519443, -0.2853413627385513, -0.28359906785099465, -0.2857905022999376, -0.2838979352564707, -0.2786038944320957, -0.283710634476367, -0.28269161845935814, -0.2814651591354333, -0.2856331798281983, -0.2836269413612765, -0.2835649808102861, -0.2851868503865244, -0.2792877378689982, -0.2822721091500164, -0.2819873067004257, -0.2818306459707645, -0.2879504805788797, -0.283353606569796, -0.28316071382984337, -0.28529936713313825, -0.2826432643000517, -0.2844424704565619]|
2019-04-30 18:33:07,850 | INFO : Best of geration |15| has accuracy of |0.559850| and fitness_score of |-0.278207|
2019-04-30 18:33:08,091 | INFO : Testing generation |16|
2019-04-30 18:36:17,301 | INFO : Fitness scores of this generation: |[-0.2683064315322391, -0.2689928287567373, -0.265755880228634, -0.2682242676532468, -0.26674547849753716, -0.2667796645084573, -0.2729072298167804, -0.2741714964865306, -0.26711590446573397, -0.266378683417869, -0.26623129082958125, -0.265576633203296, -0.2669255827558773, -0.26849778708299443, -0.2711835920644206, -0.27180815109327516, -0.27272175298223283, -0.26612974986350735, -0.2689095799649894, -0.26865006388066204, -0.2685789011377196, -0.26781124883856855, -0.2708131592283702, -0.274674871447366, -0.2700187726643498, -0.26714835370053125, -0.268047406936491, -0.26901206856999316, -0.26648396470027264, -0.2685479500107259, -0.27017835706638893, -0.27228420398421793, -0.2721049276976612, -0.2670705494101487, -0.2672771385262132, -0.2655947283742814, -0.2663986907657964, -0.269511181548987, -0.2722952940693781, -0.2698790177952644, -0.2703057897157509, -0.2669873807017364, -0.2693360959850876, -0.26790344269748506, -0.26737435977885177, -0.26834092717929925, -0.26869727662821724, -0.27601181228733596, -0.2692391454923752, -0.267238764747894, -0.26836121598435514, -0.26676143152254256, -0.2662170341644207, -0.26903640249920957, -0.27101350804613955, -0.2736139866060385, -0.272196953356599, -0.2680316826318229, -0.26815494099975296, -0.2699099705039456, -0.26650477496272357, -0.2687300390787631, -0.2706978779348581, -0.27215273570082044, -0.26929644524385143, -0.2673072698396011, -0.2705873204343146, -0.2687622346192099, -0.26701756837314733, -0.2688594261111494, -0.2699431179289045, -0.27135970073039306, -0.2717524615829217, -0.2674659092666051, -0.2684184053923165, -0.2687631798023618, -0.2673322938840482, -0.2668710907910789, -0.268504069837112, -0.2751967288845078, -0.2759677912186644, -0.2660841303331226, -0.2706339068336194, -0.266263376942227, -0.26819836152665444, -0.26657395210512524, -0.27094520353738155, -0.2687037186332921, -0.2701368822232305, -0.2662770818898132, -0.26953411526853144, -0.26778784810497774, -0.2677220109038513, -0.266587228457022, -0.2716064820242994, -0.2745036796651073, -0.2691478367124856, -0.26638701087769184, -0.26838561959106827, -0.26836378189771537]|
2019-04-30 18:36:20,776 | INFO : Best of geration |16| has accuracy of |0.561097| and fitness_score of |-0.265577|
2019-04-30 18:36:20,966 | INFO : Testing generation |17|
2019-04-30 18:39:35,283 | INFO : Fitness scores of this generation: |[-0.2794658220364823, -0.28047876242634245, -0.27960613062919565, -0.2791332789890296, -0.28033056564060027, -0.2789435688915727, -0.282277574230045, -0.2810733690460876, -0.2793864767674231, -0.28022364448908166, -0.2807966992656037, -0.2802468998817525, -0.28096959540094407, -0.2801657983401317, -0.28249192349017194, -0.27991049100196597, -0.2814727630962487, -0.2802373840478555, -0.2767357189426625, -0.28085734169817733, -0.2800281433716125, -0.28051031456323966, -0.2828590368081155, -0.2791328610683631, -0.27861397918545333, -0.27994470914981295, -0.28017840414021833, -0.2806738132799497, -0.27881969942928, -0.27972774114956017, -0.2797556788946765, -0.28125302824415066, -0.2800898723979191, -0.28126409332239816, -0.2791545903492143, -0.2832205534298932, -0.27949855954354863, -0.28117467089825793, -0.2810144173527272, -0.2801847821018836, -0.27907442310775366, -0.2809076814202602, -0.27953108684631267, -0.281542622069059, -0.28148202812481093, -0.2788524521286492, -0.2814269616908756, -0.2814652410535999, -0.27811189856029533, -0.2819068623478417, -0.2806155074976689, -0.2803694869442901, -0.281416752357466, -0.28080982578584185, -0.27997765267932817, -0.27968582505654693, -0.2784641277091329, -0.2801671450557336, -0.27992681653419144, -0.2804883647557897, -0.2812745064549929, -0.2815787225273532, -0.28072578890073785, -0.2792435134388837, -0.28090429872433204, -0.2802492482835827, -0.2816026148851134, -0.2814352038063334, -0.2791051672470506, -0.2799321686184004, -0.28101369309806484, -0.2798804047899602, -0.28067007020354057, -0.2808581590652466, -0.27728760406560204, -0.28004704132596725, -0.2781101390587077, -0.28019053013879497, -0.28203838661339525, -0.280147883438937, -0.280035301910624, -0.28065771478530993, -0.2789458237575172, -0.2803860097117788, -0.27830028729794504, -0.2795631676965243, -0.28287608347184706, -0.2807628698183842, -0.27966559160877924, -0.2813490049030175, -0.28005547559494237, -0.2809647030559357, -0.280676038290637, -0.28031722706333995, -0.2819604335309769, -0.2810683480164509, -0.2824489864426438, -0.2809554756640541, -0.2787682325124317, -0.2794061629217429]|
2019-04-30 18:39:38,789 | INFO : Best of geration |17| has accuracy of |0.557357| and fitness_score of |-0.276736|
2019-04-30 18:39:38,975 | INFO : Testing generation |18|
2019-04-30 18:42:58,481 | INFO : Fitness scores of this generation: |[-0.2821476119190621, -0.2832033007171567, -0.28057646884598547, -0.28108692640365834, -0.28016726750901294, -0.28166894383270646, -0.28062126739731047, -0.2817353681479086, -0.2814843918524641, -0.28270506617410224, -0.2800121463876863, -0.2815117904427331, -0.28156225714603617, -0.28136308015058825, -0.28317812216681476, -0.2805399415879276, -0.2821031165189583, -0.28130381889849404, -0.280792391866279, -0.2811410677166624, -0.2816740982359348, -0.2828164416484993, -0.28168057814323705, -0.2816431879664267, -0.28196730906736917, -0.28141487463892506, -0.2807718073189592, -0.28107959518219505, -0.28065208161676397, -0.2823928753756944, -0.28223581848530793, -0.28083478392169464, -0.2830747206950321, -0.28181175844296397, -0.2790680451266592, -0.27739835803568696, -0.2821334340385885, -0.2835685720656837, -0.27960758147625947, -0.2809236770069133, -0.28351489751698583, -0.28133328537035257, -0.2799526146170813, -0.279715532896905, -0.28006103874584815, -0.2831750741717536, -0.28147364681659465, -0.2812698134330398, -0.28150085252423523, -0.27998829830292216, -0.279884529962886, -0.27952406589545353, -0.279850372722029, -0.2814535159471981, -0.2819751629949282, -0.28138186535355764, -0.2811585220211711, -0.28130864860625243, -0.2801959858593328, -0.2815530835250237, -0.2817400409522669, -0.28100279135078027, -0.2811180587254423, -0.28121179135818053, -0.2814685423946913, -0.281420688056413, -0.28009294358045694, -0.2789005057105805, -0.2797500789831471, -0.2841057579610601, -0.2834449405943215, -0.2812565511831358, -0.28242918615900603, -0.28297661581185946, -0.28147027735603586, -0.2798627185754936, -0.2816693985262397, -0.2825443983078003, -0.2831274380564024, -0.2818131635808412, -0.28207223778330415, -0.28072193664545453, -0.280881754979075, -0.27852534981413263, -0.2807421737709525, -0.2818580058366893, -0.28194929314725226, -0.28206374661882494, -0.28252757506330584, -0.2812640888730907, -0.2793215089670107, -0.28119771307407143, -0.28218351722429585, -0.2820347216042726, -0.2823020811853462, -0.28178670932460764, -0.28126045167446134, -0.2815090044417195, -0.2816918948425927, -0.27994604690114877]|
2019-04-30 18:43:01,969 | INFO : Best of geration |18| has accuracy of |0.556110| and fitness_score of |-0.277398|
2019-04-30 18:43:02,157 | INFO : Testing generation |19|
2019-04-30 18:46:19,215 | INFO : Fitness scores of this generation: |[-0.27324349242610996, -0.27290543500257997, -0.27221899263712823, -0.2724550336193876, -0.27194048571748797, -0.271482628786645, -0.27194363067344746, -0.2719419864570202, -0.27318931919376865, -0.2713863999462452, -0.2716955166487467, -0.27117641689826033, -0.27262815270496876, -0.2728215619414842, -0.27277728140759633, -0.27092873421656033, -0.2720951009364355, -0.2721836792368467, -0.27269807609976554, -0.27286236901469785, -0.2731258465217895, -0.2724732655854452, -0.2718387258701584, -0.2724198517547984, -0.2704037532919929, -0.27209817600899, -0.27123986950942447, -0.27265384771994183, -0.27261068212742706, -0.2728289061865839, -0.2722671589478344, -0.27251868258122686, -0.2734956799923968, -0.2720264643227973, -0.27226449599882374, -0.2724138355376769, -0.27268964757724684, -0.27419924506930266, -0.27167928964913296, -0.2721164213759559, -0.2732465402812374, -0.27340317188071556, -0.27190272228247453, -0.27325559981218, -0.2725059658694429, -0.2728731540190119, -0.2731088641042612, -0.27095393607405577, -0.2715188424806206, -0.2723515311167354, -0.27213926775520353, -0.2733236599941643, -0.27164925180730365, -0.27319302364271514, -0.27194470405375876, -0.2712692261553135, -0.27280684056736176, -0.27369104298401853, -0.2695402553089622, -0.27192559181427467, -0.27175160222718503, -0.27196410253745357, -0.2720681407216455, -0.27184000533251534, -0.27333915667469, -0.2726548150485876, -0.2718623273125311, -0.27305885544236824, -0.27196198087565754, -0.2721311275650855, -0.27422404086508717, -0.2712127650878867, -0.2746018880889529, -0.2729940532421579, -0.2702638037350713, -0.27037047222763505, -0.2713242218607948, -0.27308111340821195, -0.2721367112329217, -0.2714750309379733, -0.27327071214411536, -0.2721210303862079, -0.27096177007065336, -0.2712517214470169, -0.2723702783487281, -0.2742373194418797, -0.2736005808321797, -0.2707970309014223, -0.27342351304025064, -0.2724480831704172, -0.2719657762723715, -0.274275710043453, -0.2733382258893681, -0.27348615778546753, -0.272677477200826, -0.27073752896315384, -0.2730342120945859, -0.27127021117275263, -0.2725400948200096, -0.27332068693881134]|
2019-04-30 18:46:22,688 | INFO : Best of geration |19| has accuracy of |0.558603| and fitness_score of |-0.269540|
2019-04-30 18:46:22,878 | INFO : Testing generation |20|
2019-04-30 18:49:30,230 | INFO : Fitness scores of this generation: |[-0.28465563476894773, -0.2835868838415966, -0.27978962167625515, -0.2844030958225285, -0.28500552421511566, -0.2865464457087387, -0.2823674008587367, -0.2795252655358875, -0.2827436271970628, -0.28428578162692253, -0.2847930747358238, -0.2860977269405693, -0.2828761680194965, -0.28086372188448366, -0.2819591103905466, -0.2779622786589877, -0.2845465359846931, -0.2835699143688873, -0.2836392973612876, -0.28518030067644506, -0.28314365116179796, -0.2811485369988966, -0.2833682399125121, -0.2830522559178631, -0.28198930991990534, -0.28688496745684566, -0.28474765088898024, -0.2841082781856686, -0.28722717110657586, -0.2807039720979751, -0.2794223782770774, -0.279530535456282, -0.2832140058144185, -0.2838263742423435, -0.28831143926711106, -0.2838618482264998, -0.2791814287256332, -0.28295538149672933, -0.28532171718000826, -0.2828546917377824, -0.2785965302512387, -0.28471947495079686, -0.2856753100704284, -0.282828356177289, -0.28323947665243665, -0.2831938864654815, -0.2800250461670608, -0.28067005563915043, -0.280662053378459, -0.28338029528904823, -0.2858029404714097, -0.28400138640835276, -0.28272202503087834, -0.28170316565225567, -0.28307276455120806, -0.2800484403495875, -0.28182241836419475, -0.2838176045887071, -0.28695368058810944, -0.2858409572611837, -0.27929063883032734, -0.2808447587577736, -0.27960412996521905, -0.2788314015617198, -0.279941199288379, -0.28468992277912425, -0.2839020634601019, -0.2838531275410458, -0.28394580160465716, -0.28277900909406567, -0.28182193350333434, -0.28117604698665544, -0.28173350121370805, -0.2833160551189028, -0.28554654866456985, -0.28360054261004763, -0.2859717698691927, -0.2805629665225879, -0.28110275454650635, -0.28182331577145675, -0.28357737565337265, -0.2828044096066941, -0.2850364112375279, -0.28401689750576453, -0.28413547221486923, -0.27981096870219546, -0.27914059054258183, -0.27876486216262997, -0.28016300074655004, -0.28634015477485786, -0.28491904716348754, -0.28732253762796456, -0.2841336542732036, -0.2810664137833798, -0.2812736616954545, -0.28184639790613725, -0.2847673398067509, -0.28283504079774496, -0.2867334256479643, -0.2831444522172078]|
2019-04-30 18:49:33,756 | INFO : Best of geration |20| has accuracy of |0.552369| and fitness_score of |-0.277962|
2019-04-30 18:49:35,163 | INFO : Testing generation |21|
2019-04-30 18:52:56,335 | INFO : Fitness scores of this generation: |[-0.26824916899204254, -0.26822557168915595, -0.26812318648861105, -0.26814708290412137, -0.26913215707538074, -0.26868948249759605, -0.2689138645409075, -0.26987655216290907, -0.26793208041043615, -0.2697056889732069, -0.2685111011197535, -0.2683384174362953, -0.2698177345523683, -0.26761360976136533, -0.26918698749781145, -0.2689402824941954, -0.267803260237588, -0.2687845132475555, -0.26886291688418584, -0.26901692129168775, -0.2685728972674879, -0.2686622418417521, -0.26855486998589734, -0.2689585384659484, -0.26790244718118433, -0.2693429061331632, -0.26730350868544084, -0.26776334676883945, -0.2698657334170824, -0.2692208505542244, -0.2701762320363327, -0.2697572071402351, -0.26889755553232625, -0.2705614895603652, -0.2693083197305051, -0.26823122320212955, -0.26884953434634307, -0.26854085795779414, -0.2681419887410473, -0.26906617762852303, -0.2681128999679245, -0.26860245396449767, -0.2687142079044705, -0.26817050820372706, -0.26858367549983025, -0.2679018677956975, -0.2697095661928805, -0.2676981601917427, -0.2696761900753331, -0.26904626138858756, -0.26827078734682624, -0.2681725457584931, -0.2682076012430015, -0.26872955030687384, -0.26913906559195744, -0.26899203955212986, -0.2700064411588729, -0.26850279373381525, -0.2682759620226417, -0.26851437758875285, -0.26810152898018835, -0.2680267045666713, -0.2693558149573018, -0.2673801716744656, -0.26923877989267647, -0.26900847311034526, -0.2678503733897746, -0.26818549145081655, -0.2686090432259812, -0.26747394621311277, -0.2687405822132019, -0.2694308765476345, -0.2678784778711133, -0.2674786845995361, -0.26928918830791376, -0.2689594001126436, -0.2680761174647355, -0.2691948408820878, -0.2688032952280132, -0.2685932633343223, -0.2693532268061533, -0.26954419903289567, -0.26825219740165523, -0.26801340424423326, -0.2687661107553356, -0.2693609531534596, -0.27060938994485906, -0.2681259139724731, -0.2690277760562721, -0.269894087782362, -0.2676703490408286, -0.26792633111811487, -0.2686086522228635, -0.2688492386923733, -0.26901820739674054, -0.2681034222808962, -0.2683606752040196, -0.2690000503165895, -0.2680784591106062, -0.268204190179797]|
2019-04-30 18:52:59,846 | INFO : Best of geration |21| has accuracy of |0.559850| and fitness_score of |-0.267304|
2019-04-30 18:53:00,036 | INFO : Testing generation |22|
2019-04-30 18:56:29,935 | INFO : Fitness scores of this generation: |[-0.2812359065001963, -0.2818272189689864, -0.2834807945986281, -0.2827389613947263, -0.28336265459426047, -0.28295013979769346, -0.2819161476227152, -0.28323821432819307, -0.2823862540002209, -0.2831981291896419, -0.2814764279653044, -0.28182126062665563, -0.28385304867206346, -0.2820566812120724, -0.2824441349312617, -0.28355062930576574, -0.28424386527885226, -0.2826648951960791, -0.28115304051999335, -0.2820936414664006, -0.28237182104919717, -0.2846736550654051, -0.2832476721597899, -0.2827607700976056, -0.2818957817720555, -0.28299552585133825, -0.2816457336901142, -0.2820344790124303, -0.2815043335267265, -0.28269210907604675, -0.2841746786107589, -0.2825386684976126, -0.28228702986664816, -0.2814205558999404, -0.28167393160032417, -0.28166928315310286, -0.28268696771409857, -0.2831370188125147, -0.2828937377953677, -0.2820901224856775, -0.2841132126356426, -0.2826919162836237, -0.28195850548821705, -0.2817253247826092, -0.2822639485446292, -0.2845645856931114, -0.2834057912184358, -0.2830149137613943, -0.28328887024900123, -0.28282615567785296, -0.2814630905956307, -0.2822332811014202, -0.28146951544118737, -0.28330278006777304, -0.2822512339327727, -0.2844275923520788, -0.2835694315725067, -0.2814942591884188, -0.2820232195935382, -0.28208818925608053, -0.2836279426888785, -0.284175111298037, -0.28418758354688944, -0.283443131498508, -0.283095047869734, -0.282941821651193, -0.2818438078366197, -0.2819174985306182, -0.28271517826492204, -0.2827925968788357, -0.2848541572367075, -0.28359536688209686, -0.2825960677705313, -0.28070193612169553, -0.2810400593160845, -0.28184001957392174, -0.2824421347387066, -0.2837155126611884, -0.28167555504262265, -0.2827099385460833, -0.28225679026668654, -0.2812995579866433, -0.2812747212801555, -0.2818670530022113, -0.2826575193980899, -0.28417245220196874, -0.2828927736487182, -0.2835708678968182, -0.28269940324058473, -0.28105691435167296, -0.2813954740854978, -0.2817653211369972, -0.28298520852722253, -0.2842760444056508, -0.28117784906190246, -0.2832076301792458, -0.2831868714084935, -0.28103748164586606, -0.2818183454197627, -0.2819047824655524]|
2019-04-30 18:56:33,470 | INFO : Best of geration |22| has accuracy of |0.561097| and fitness_score of |-0.280702|
2019-04-30 18:56:33,670 | INFO : Testing generation |23|
2019-04-30 18:59:56,109 | INFO : Fitness scores of this generation: |[-0.27835983672040576, -0.279451004812058, -0.2775764799181451, -0.27977680240539793, -0.2787775200732211, -0.2786446322786047, -0.2793798158143429, -0.2772762505456488, -0.2797236932243439, -0.2796606571750438, -0.27885876944724547, -0.2789037676409204, -0.27789246078501356, -0.2768835724192731, -0.27654198936008395, -0.2800671963140051, -0.2797388574861466, -0.2797221136378481, -0.27899842173495193, -0.27801893242496123, -0.2780942701278849, -0.27855174660365634, -0.27885206630255316, -0.2789126705457555, -0.2796453008943416, -0.27889076899340814, -0.2785299135015366, -0.27880544621259606, -0.2792942886339857, -0.2776570773346627, -0.27734993521837475, -0.2794304888299171, -0.2795650857560178, -0.27973132098608827, -0.27958303886525177, -0.27853890099423995, -0.27833125829062566, -0.2786653310219024, -0.2783054886663214, -0.2800717279314995, -0.2795054428913492, -0.279417655949897, -0.2792941799189182, -0.27946557618202045, -0.2779610667456972, -0.2799474985041517, -0.2772176892674984, -0.28011253238358397, -0.2795306069419739, -0.2792131631298268, -0.2794187802583613, -0.27947486992529097, -0.2780652751947971, -0.2784392125428991, -0.2802230981436182, -0.28032976579158864, -0.2796380058406515, -0.2799905858775403, -0.2796736694238287, -0.27885046306442707, -0.27822356106753043, -0.27818065724791363, -0.27759080250212487, -0.28048710039955504, -0.2798069492299506, -0.27904394814308653, -0.27874168772646724, -0.2790869254064053, -0.278354400713393, -0.2781262879676007, -0.277818938661763, -0.27837008366242366, -0.2792948029142745, -0.27966333897189893, -0.2790386937717174, -0.2763328934286503, -0.2766151417760139, -0.27770012712225, -0.2771246613657221, -0.2800372872263827, -0.27960512187886744, -0.27973975640662174, -0.2792619448868518, -0.2773160831091252, -0.27823236318344763, -0.2759575466684839, -0.27913790484692186, -0.27921638254155506, -0.2796013799436549, -0.28004797294418865, -0.27952148787518766, -0.27657145819765455, -0.27746734768152237, -0.27973158400743564, -0.2798483635516877, -0.27854576145714904, -0.2798966906013641, -0.27989431418319966, -0.27951302339738987, -0.27850338077925624]|
2019-04-30 18:59:59,691 | INFO : Best of geration |23| has accuracy of |0.569825| and fitness_score of |-0.275958|
2019-04-30 18:59:59,880 | INFO : Testing generation |24|
2019-04-30 19:03:08,798 | INFO : Fitness scores of this generation: |[-0.25134765256095576, -0.25293672044534943, -0.2535196106444608, -0.2529046079059979, -0.25235340026047853, -0.25008706412873827, -0.250398112578435, -0.2529214593070047, -0.2529415182165197, -0.249365659514526, -0.2528155342684136, -0.25305464434194136, -0.2519610944363448, -0.25247012548618486, -0.25289675029548436, -0.25291536231567197, -0.2508006289869815, -0.250374697752901, -0.2529233663200258, -0.2519407632114651, -0.25266391669844723, -0.2535194592835667, -0.25511090195662267, -0.253731461661356, -0.25217908271798145, -0.25123289227485657, -0.25256212646359794, -0.2517171645755166, -0.25242638406721324, -0.25310669604453956, -0.25399253906698915, -0.2531241683272628, -0.2506303132117332, -0.25032795791153434, -0.25208497463582874, -0.2524019956320256, -0.25289233351075974, -0.2526538099523063, -0.25310400450551834, -0.2522685466720177, -0.25066069755199794, -0.25079744758906664, -0.25223966922845925, -0.25205975166849187, -0.25145589432737847, -0.2538227073781125, -0.25145252505401233, -0.25241521074696704, -0.25132637974378225, -0.2505725383221566, -0.2519557215608992, -0.2520329750872947, -0.25180193607334617, -0.25345534918544527, -0.2528063505887985, -0.25355497190544196, -0.2527476351808857, -0.25043098655369905, -0.25276483843723935, -0.2528463502724965, -0.25127570760679674, -0.2523223426159438, -0.25333841440376936, -0.25143092850575577, -0.2512978383146965, -0.2498904033018662, -0.2509036895122614, -0.25167635304702296, -0.2531589015244364, -0.2538732296980179, -0.2508576663362013, -0.2538217680679785, -0.2506610289350286, -0.2499658086815396, -0.252644807100296, -0.2521729978086712, -0.2525773883402885, -0.25170434595228314, -0.2546999545784684, -0.2541883571727856, -0.25038898998015635, -0.24967875110136495, -0.25001038235050066, -0.25262834950610324, -0.2508144341073595, -0.2515428400522954, -0.2516183298718822, -0.25241814070456736, -0.2508013116883802, -0.25083605300735784, -0.2520837528748555, -0.25201523250287716, -0.2526679024905772, -0.2532430934207933, -0.25227141078259496, -0.2518769026742325, -0.2516487615334021, -0.2511865383869893, -0.25135487667075146, -0.2515278983492035]|
2019-04-30 19:03:12,384 | INFO : Best of geration |24| has accuracy of |0.567332| and fitness_score of |-0.249366|
2019-04-30 19:03:12,584 | INFO : Testing generation |25|
2019-04-30 19:06:20,505 | INFO : Fitness scores of this generation: |[-0.2736234333133325, -0.276675722328946, -0.27697356475982815, -0.27725613745860755, -0.2735890329349786, -0.2772642725612968, -0.27538698888383806, -0.2755210044560954, -0.27776836312841624, -0.27338997670449317, -0.27254361228551716, -0.27517659252043813, -0.2765346855740063, -0.27466832351638004, -0.2771619295235723, -0.2779566071694717, -0.2767396445851773, -0.2758059685002081, -0.27565341955050826, -0.27441793779144064, -0.27408424974419177, -0.2750418814830482, -0.27638974209548905, -0.27720737375784665, -0.27691637264797464, -0.27594976034015417, -0.27300677413586527, -0.2774182673310861, -0.2765907763969153, -0.2742393770022318, -0.27709625218994915, -0.27666328160557896, -0.2768687556963414, -0.2766668724361807, -0.27583478880114853, -0.27601074520498514, -0.2744156538974494, -0.2741249353857711, -0.27660184213891625, -0.27657292992807925, -0.277653630124405, -0.27551016525831074, -0.2740071993903257, -0.2755461117485538, -0.27639933105092496, -0.2750280009349808, -0.2749982660752721, -0.2788003492169082, -0.2773947424720973, -0.27576918702106923, -0.2750220888410695, -0.27676799695473164, -0.27613600104814395, -0.2751132884877734, -0.27563990221824497, -0.27563430776353925, -0.2776124805677682, -0.2757573942071758, -0.2765857558697462, -0.27588718570768833, -0.27572006720583886, -0.27680580562446266, -0.2767414359259419, -0.277185064565856, -0.27673235652036965, -0.2741870526224375, -0.2738599185249768, -0.2766140262247063, -0.2738166298950091, -0.2757406305754557, -0.27564075018744916, -0.27600509126205, -0.27709661761764437, -0.27668063691817224, -0.27486425801180303, -0.2748883640160784, -0.2757687366101891, -0.2755175121128559, -0.2753558033728041, -0.2755219333921559, -0.2772227592067793, -0.2744556380202994, -0.27370435500051826, -0.27605936338659376, -0.27570632193237543, -0.27462851454038173, -0.27653962140902877, -0.2772657093591988, -0.27704698080196977, -0.2743782049510628, -0.2753479158272967, -0.2749573616310954, -0.27616510377265513, -0.2760669577983208, -0.27771718974690884, -0.2747343798982911, -0.2770174442557618, -0.273704047256615, -0.2765904883854091, -0.276869383873418]|
2019-04-30 19:06:24,113 | INFO : Best of geration |25| has accuracy of |0.566085| and fitness_score of |-0.272544|
2019-04-30 19:06:24,373 | INFO : Testing generation |26|
2019-04-30 19:09:46,661 | INFO : Fitness scores of this generation: |[-0.2776126012867651, -0.2776736939684281, -0.277742169183102, -0.2779584171026, -0.2779807285513989, -0.2779761271326789, -0.27670149387000226, -0.2773012360892639, -0.27709681143783366, -0.27684828829626706, -0.2782747866329885, -0.27787991039785725, -0.2777977349201166, -0.27818095966007944, -0.27799101299891765, -0.2771772951612261, -0.27729361323171137, -0.2767371600670996, -0.2780354884758308, -0.2779319479620482, -0.2777471959464898, -0.2775581867510874, -0.2775892846081524, -0.27787665852658594, -0.27715432183939104, -0.2771091231521038, -0.2784873451131847, -0.2779133157926684, -0.27795548352706256, -0.27737297027925106, -0.2779248932545835, -0.27766779802314323, -0.27713788336981676, -0.27747195390452795, -0.2778518871890566, -0.2778658064487873, -0.27761836131014733, -0.2768916946069887, -0.2776304037166448, -0.27744326428618543, -0.27748527020278996, -0.27654702564500605, -0.27793077193594384, -0.27779846395864044, -0.27737651387304385, -0.27722438590219106, -0.27744892831836643, -0.2781793961250253, -0.2766558705941315, -0.277034383668834, -0.27811144768057616, -0.27800011307190137, -0.27745970206268245, -0.27716220820806997, -0.2783821159954051, -0.2776445231969462, -0.27780112791137007, -0.2776260867116315, -0.2781344729674543, -0.2776832095097286, -0.27730833365725666, -0.27722219426586564, -0.27778374101281417, -0.27780813136262067, -0.2769046004617441, -0.27643555231061595, -0.27795133520760446, -0.27831106058008825, -0.27735641953115986, -0.27711971340421393, -0.2780757272974381, -0.27777674553195214, -0.2763857289235133, -0.2764538322707311, -0.27745706299772727, -0.27781868847303615, -0.27722597462430315, -0.277328332874286, -0.27726064108894943, -0.2782939787142877, -0.2776157157239652, -0.2772346683964921, -0.2781226870310483, -0.2779006131198139, -0.2771194032521379, -0.27758172017386296, -0.2775508296729142, -0.2778638976194894, -0.27764888381857195, -0.27661907751640863, -0.2781551030738157, -0.277643632718675, -0.27743556619824616, -0.27754137022361697, -0.2780558826996459, -0.2776801059727437, -0.2775842220725267, -0.27698519176963016, -0.2782266143292, -0.27802165580350297]|
2019-04-30 19:09:50,299 | INFO : Best of geration |26| has accuracy of |0.562344| and fitness_score of |-0.276386|
2019-04-30 19:09:50,483 | INFO : Testing generation |27|
2019-04-30 19:13:05,746 | INFO : Fitness scores of this generation: |[-0.2687139460781835, -0.26856732121053734, -0.268274111061726, -0.26845508737946455, -0.26873146902840095, -0.2687313688813515, -0.26870326352006985, -0.2686165990132206, -0.26879008980292196, -0.26874489795486883, -0.26900250312854657, -0.2688805517722975, -0.26825212451084607, -0.26840963720713024, -0.26853147998171034, -0.2686551570330026, -0.26840921505442206, -0.26917223415847097, -0.26883871746513077, -0.2690249150654055, -0.26900364762207246, -0.26852317286549876, -0.26826770755479923, -0.26884674460820435, -0.26852483456989507, -0.2687317507446937, -0.26854639084271664, -0.2681475982913431, -0.26858001964272193, -0.2684876869028469, -0.2687238597926104, -0.2684409945078616, -0.26870452174038256, -0.2685051733592771, -0.2681926097509996, -0.26866917638283855, -0.26860477547600586, -0.2687524383641639, -0.26827597356629823, -0.26861331074867606, -0.26862597527369014, -0.26819035571138816, -0.26897240222062707, -0.26881697310029334, -0.2688150921801351, -0.2686229309945736, -0.26869045881167897, -0.26870244443416597, -0.2691329260198575, -0.2691036213681383, -0.2684028511902071, -0.2685408514344467, -0.2691264720457905, -0.2687027292431525, -0.2684384082285863, -0.26878459065590266, -0.26846606337799217, -0.26880464146159727, -0.26904728550393625, -0.26866778222457416, -0.2686391532139958, -0.26842705388114135, -0.26837902693253646, -0.2687930406545693, -0.26858785596658596, -0.2686460518049744, -0.2686232953139071, -0.26876076808515587, -0.2680940218129248, -0.26814093392974925, -0.2683358220278092, -0.2688384545299242, -0.2681813285598215, -0.26904046906615203, -0.26847325569053865, -0.26845176709148116, -0.2684184490509753, -0.2682960289829182, -0.268093652320358, -0.26902943978894434, -0.2685496243946957, -0.2686369470267926, -0.2683215720754749, -0.2690625562420431, -0.2683893027732957, -0.26832326864296535, -0.26860024929046633, -0.2687508534429208, -0.26873027389904236, -0.2684656736423384, -0.26851418558156714, -0.2682444517904857, -0.26874338180389046, -0.26848286809224003, -0.26865149587392806, -0.26887038693113147, -0.26881678264658404, -0.2687166862330347, -0.26862339293057064, -0.2688714967302556]|
2019-04-30 19:13:09,277 | INFO : Best of geration |27| has accuracy of |0.564838| and fitness_score of |-0.268094|
2019-04-30 19:13:09,465 | INFO : Testing generation |28|
2019-04-30 19:16:22,211 | INFO : Fitness scores of this generation: |[-0.2653700687112786, -0.2645268945982962, -0.2652545437946186, -0.2645052671432495, -0.26481547583511106, -0.2647883653084993, -0.26525714437722603, -0.26564558062242183, -0.26538689847870583, -0.26473671948159494, -0.26532659650126816, -0.26466339284723456, -0.2653119809977658, -0.26491692328786515, -0.26457460512925973, -0.26557063653474644, -0.26487530125326764, -0.26474536757369144, -0.2649361688496072, -0.26470163957778114, -0.2655658727481371, -0.26490575603116084, -0.26518128815786546, -0.2654968678673386, -0.26576621660263666, -0.2645001486464814, -0.26514921641294215, -0.2646468529056558, -0.2651365378519872, -0.26493273428825787, -0.26518151309940363, -0.26570515949409323, -0.26526816081611704, -0.264321021127812, -0.26509308155044253, -0.26557192977491795, -0.2646439119235619, -0.26496272431664813, -0.2660086398080235, -0.265554070889533, -0.2650888014089811, -0.26461590704940136, -0.2647344523515457, -0.26513875017077215, -0.264797971451477, -0.264480524407678, -0.2653699167124875, -0.2657231289745767, -0.2652051882310347, -0.2646856551125889, -0.26523162421090896, -0.2652910236434225, -0.2652009345573701, -0.26551823710506056, -0.2653796607519919, -0.26559996076952885, -0.26513001996598323, -0.26448077164885603, -0.26523963749269786, -0.2647787176923596, -0.26493861500199856, -0.2644641974589208, -0.2647300006904246, -0.2649212103762549, -0.2652975318037269, -0.2643508914606277, -0.2647218623639265, -0.2647577812482705, -0.26506328457718964, -0.2644145328959663, -0.2651874803718709, -0.265285570652057, -0.2653403801795764, -0.26438375946247217, -0.26506248679194416, -0.2658851232839909, -0.26549969623972486, -0.2654056522673938, -0.2647598121827577, -0.26570337038218, -0.264901659427545, -0.26454146355737895, -0.2650813960528874, -0.26519924770424136, -0.2645087667278477, -0.26537516483893764, -0.2654611715625772, -0.2658469451196266, -0.2652118850004423, -0.2646744711137874, -0.2649501494038633, -0.26491011856319185, -0.2652694663523516, -0.265351266155154, -0.26548363459415925, -0.26519259226905717, -0.26482374747316323, -0.26424411244881457, -0.2650040722254551, -0.264472538844133]|
2019-04-30 19:16:25,741 | INFO : Best of geration |28| has accuracy of |0.566085| and fitness_score of |-0.264244|
2019-04-30 19:16:25,929 | INFO : Testing generation |29|
2019-04-30 19:19:43,093 | INFO : Fitness scores of this generation: |[-0.27763959933426857, -0.27777362018169105, -0.27769329103247137, -0.2780096594184244, -0.27693000708544413, -0.2769829513911447, -0.27718882177619597, -0.27770673718145267, -0.27768141227620236, -0.27730385850062306, -0.2774981876417973, -0.2777656090948976, -0.27800139837174254, -0.27720194924104613, -0.2771441699994256, -0.2776055338180257, -0.2772931840112583, -0.2770900294555578, -0.27776570733783884, -0.2773473755856035, -0.27781514701260307, -0.27766353899877555, -0.27695045534025, -0.2773436975950378, -0.2776892536468422, -0.2774918749164872, -0.27807111822145053, -0.2775269944880752, -0.27719469281188913, -0.2770839818312867, -0.277015457521595, -0.27716011557275344, -0.2780705913792243, -0.2766214598237508, -0.2777293650201613, -0.27744701537433164, -0.277920609882775, -0.27747491770048965, -0.277592957128892, -0.27717764922151805, -0.2772452044975705, -0.27745315598359394, -0.27748411861118777, -0.2777767644357891, -0.27778653975025275, -0.2774072608434613, -0.27733278776332193, -0.27726516502842546, -0.27708018179519284, -0.27755861763200157, -0.2778185681272216, -0.27802066072974335, -0.27704806078230826, -0.2773768349194771, -0.27709450623999576, -0.2768630267585877, -0.27784784899623644, -0.2765253801035148, -0.27770810451025846, -0.2775512979110896, -0.2780592518355452, -0.27714548754133556, -0.27697573868369635, -0.2773007755747302, -0.2772535357738833, -0.2769519024109945, -0.27775090522682333, -0.2775340891207294, -0.27787121737684023, -0.27795716007492377, -0.27749162792374066, -0.27758268204737196, -0.2773736239701379, -0.27770454328545363, -0.27751104725663867, -0.2781835971604678, -0.27766775092216395, -0.27787956442700296, -0.27712772092829685, -0.27721288363895163, -0.27722353642018266, -0.2774744461649159, -0.2776284472441429, -0.2778999007376535, -0.2780568871979832, -0.27735198176797277, -0.2775194294543427, -0.2774514333395448, -0.2776085900832758, -0.27708392630646206, -0.2781564600078463, -0.2775552973565734, -0.2781842304270927, -0.2770784639509321, -0.27685114632239277, -0.27761939735224095, -0.2771687392870818, -0.27732573423431, -0.27797415625647603, -0.2775065690322641]|
2019-04-30 19:19:46,648 | INFO : Best of geration |29| has accuracy of |0.566085| and fitness_score of |-0.276525|
2019-04-30 19:19:46,831 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 19:19:46,835 | INFO : Testing generation |30|
2019-04-30 19:23:08,456 | INFO : Fitness scores of this generation: |[-0.27692478843914564, -0.2765927483317673, -0.2758962954564761, -0.276707877042473, -0.276236760584257, -0.2766299495453476, -0.2769306157545377, -0.27653607674824293, -0.2769105870877543, -0.2761417437945643, -0.27620545548777425, -0.2764136663367671, -0.2773347166276747, -0.2769774559684979, -0.2756466169511118, -0.27692945269487235, -0.27687586555557864, -0.2764277018526549, -0.2763886257525413, -0.2764527453209764, -0.2768597534266851, -0.27601597382817217, -0.27582382059866384, -0.2765981765524034, -0.27623609323655407, -0.27648024193702203, -0.2766123635794527, -0.2761857658624649, -0.27617507769215494, -0.27639865477879844, -0.2768707874000713, -0.2767117259963866, -0.27671873649602297, -0.27647380710289043, -0.2766678865878813, -0.2767525965488085, -0.27651840573356995, -0.2759994931759373, -0.27666068573792774, -0.2769950353971092, -0.27658834966921036, -0.27678538461526236, -0.2762583289736061, -0.2766707827967982, -0.27634759840144907, -0.2763404527979512, -0.27629780769348145, -0.27689722263684835, -0.2768054740723743, -0.276545145626991, -0.2762098943353981, -0.27638679447994435, -0.27680135910869924, -0.2767601550586762, -0.2763790589186453, -0.27679828725835326, -0.27718288203080493, -0.2765571763118108, -0.2762295514665624, -0.2764556548608247, -0.2771258359314293, -0.2763135109216936, -0.2766795600293785, -0.27708986202875774, -0.2766441094939427, -0.27672528791171247, -0.2764874804404474, -0.2758078189626817, -0.27663397946024454, -0.27646390116342934, -0.2767918570387748, -0.2768866063766582, -0.2764782920319547, -0.27654264812828394, -0.276312947625755, -0.276680385008935, -0.27671692034890577, -0.276463280538077, -0.27563197673648915, -0.27677838151813833, -0.2765466550345062, -0.27655319683654334, -0.27672212697485443, -0.27633119584411703, -0.27657991721425007, -0.2765297285651648, -0.2765249688779154, -0.27651758161924217, -0.27666078040035824, -0.27641738095591145, -0.2764945514740482, -0.2763984664473482, -0.2766630464023159, -0.2765782224875624, -0.27636971377557323, -0.2769279713912677, -0.27699229669186376, -0.2760602294116892, -0.2764645440283642, -0.2770659582589262]|
2019-04-30 19:23:12,017 | INFO : Best of geration |30| has accuracy of |0.563591| and fitness_score of |-0.275632|
2019-04-30 19:23:12,420 | INFO : Testing generation |31|
2019-04-30 19:26:35,903 | INFO : Fitness scores of this generation: |[-0.2758943482662582, -0.27558092665373696, -0.2754535554141567, -0.2753266362228187, -0.2753300235509755, -0.2752906474154918, -0.2756095604425797, -0.27535562868612456, -0.27557845994800856, -0.2753184000085051, -0.2752415293384863, -0.27538929358563863, -0.2758392067168691, -0.27558077182364604, -0.2757873921883832, -0.27537595198173187, -0.27529575710856374, -0.2754871478132274, -0.27521211198715895, -0.2753236967784834, -0.27569657277264625, -0.27579960010374927, -0.2754240639961539, -0.2755993698853524, -0.275470879565639, -0.2754880079966631, -0.27516381361307707, -0.27549501007865596, -0.2754014990638305, -0.2757800366648991, -0.2752235745517116, -0.2753142811401888, -0.2756256524597849, -0.27539666307347227, -0.27556193492618664, -0.2754759401566036, -0.275653289290683, -0.2757091719971893, -0.27503377872506385, -0.2758698591080536, -0.2758636149067307, -0.2751783987686536, -0.27556948663853476, -0.27537527929237643, -0.27553440026631526, -0.2756479478830907, -0.27558897526418763, -0.2758557742026091, -0.27531794410323346, -0.2751680091755329, -0.2753850425683211, -0.2756153074603652, -0.27575260271960483, -0.2757510100372414, -0.2754974641593828, -0.2753039105175052, -0.2754579747355523, -0.27532231845766714, -0.27564782948619254, -0.27536774709205963, -0.2756272156545362, -0.27563276676157367, -0.2751465359874699, -0.2757127585515292, -0.2755762560984709, -0.275315440195834, -0.2754139713869816, -0.27559348110892684, -0.27546479847933547, -0.27570107936390725, -0.2752400614130942, -0.2755747218570564, -0.2757461035883965, -0.2753692281108591, -0.27535885834447993, -0.2758098872184519, -0.27551085215010673, -0.2756796564709227, -0.2756215424399479, -0.27550575721181914, -0.2752829283505151, -0.27532639862394986, -0.27525743869936536, -0.2755098259021585, -0.27551703648330655, -0.2754189557961256, -0.2753351894747063, -0.2754489657101322, -0.275646728242076, -0.27535282503557346, -0.27516098474179834, -0.2752026090863177, -0.27587741649982267, -0.27558854081775913, -0.27551739913190043, -0.27572685724567103, -0.2753839904116741, -0.2754615962154036, -0.27584399308548224, -0.27535987635141274]|
2019-04-30 19:26:39,510 | INFO : Best of geration |31| has accuracy of |0.559850| and fitness_score of |-0.275034|
2019-04-30 19:26:39,694 | INFO : Testing generation |32|
2019-04-30 19:30:02,697 | INFO : Fitness scores of this generation: |[-0.2692086639248322, -0.2691455082497864, -0.26895192577460103, -0.2690330087163738, -0.2686002312001781, -0.2689792779840042, -0.26922071253027874, -0.2686957233280779, -0.26929133123605054, -0.26853107858762565, -0.26845568276454357, -0.2688182645590506, -0.2686982123511974, -0.2686432131261469, -0.2690688446721184, -0.26924309337807595, -0.2691042856217545, -0.26871145875933017, -0.2689077578972433, -0.2688563414683966, -0.2691945285022816, -0.26927728464948797, -0.26924796363460685, -0.26890243903220257, -0.26905424553100193, -0.2686745003283581, -0.26863251226806195, -0.2691641694892233, -0.26902331286501663, -0.26934146262774955, -0.26887345099560567, -0.2692419174397103, -0.26946283191721015, -0.26875027329008155, -0.26897920182096624, -0.26873156935255105, -0.2688634653514791, -0.268923603012183, -0.26939695747656245, -0.2693778012679002, -0.269139548662667, -0.2690290945573388, -0.2687806397815731, -0.26903189179774756, -0.26854771519097215, -0.2690834668752189, -0.26903475965851936, -0.26910109989275444, -0.26940208751464556, -0.2686620676489634, -0.26907286333425023, -0.2688621715964558, -0.2692225816093873, -0.26908966953230795, -0.2691726371367401, -0.2692305875576545, -0.2690274121326821, -0.2687178983727348, -0.268778552964469, -0.2688895885214627, -0.2690144098250665, -0.26910490014842736, -0.26912241440231555, -0.26978049645914093, -0.2689783701272768, -0.2686023031718263, -0.2689034694962412, -0.26910864907168897, -0.2685545602970034, -0.26878933765899354, -0.2692626919562571, -0.2692902340510181, -0.2690386342250298, -0.2686073746497386, -0.2688346547501109, -0.26893580054568356, -0.2689721836525703, -0.2693953606848405, -0.26911092159625527, -0.26954104646901106, -0.26926548673170747, -0.2685362515744762, -0.2686125617996554, -0.26895085303025823, -0.26893390290369495, -0.26890220835665674, -0.26930272098735114, -0.2695444605757143, -0.268884355999599, -0.26848843863634303, -0.26870085602608795, -0.2690183888250422, -0.26873718800945817, -0.26916840680848775, -0.26906702414015743, -0.2694621108681242, -0.26906313851614977, -0.268774345712127, -0.2687806778979079, -0.268787874351038]|
2019-04-30 19:30:06,183 | INFO : Best of geration |32| has accuracy of |0.567332| and fitness_score of |-0.268456|
2019-04-30 19:30:06,370 | INFO : Testing generation |33|
2019-04-30 19:33:26,156 | INFO : Fitness scores of this generation: |[-0.2699749677283444, -0.27009654963473906, -0.2693278311128668, -0.26977442508692934, -0.2703251135077694, -0.2700445570534082, -0.2699916502125829, -0.27047074232384455, -0.2704005813677248, -0.27000325693072175, -0.269475122560843, -0.2696297046699398, -0.26976269426391564, -0.27017275942601177, -0.27016568362569926, -0.27000576104941987, -0.2702189552054988, -0.270006840499185, -0.2695017223753374, -0.2695901599362028, -0.2695184707534399, -0.26983819251580776, -0.2701180463822054, -0.27062293116173014, -0.2704750862714055, -0.2700847863740058, -0.2698694242776441, -0.26971772266663524, -0.26998839833789307, -0.26957373501514076, -0.27013791843855695, -0.27045726879752224, -0.2699890362737562, -0.2704525196241389, -0.26990912515196586, -0.26964292868221407, -0.2701078612955926, -0.27035486519479635, -0.27016643836772697, -0.27031223970851737, -0.2698597841375737, -0.2699054331302071, -0.27011530912465614, -0.2695915760825292, -0.2698760326120922, -0.2700689974591601, -0.2708182943810662, -0.2703080111734873, -0.2700431953302676, -0.2701313032163419, -0.2701089270948935, -0.26989879360873636, -0.26959037982659945, -0.2702037014549585, -0.27042015434669364, -0.27012737756438676, -0.2704660226937107, -0.2707377048454982, -0.26982474873820655, -0.26953815206063453, -0.2696559339297189, -0.27031299261023384, -0.27072429281773325, -0.27035340847228645, -0.2705668026952149, -0.27008136092937535, -0.2701535709648967, -0.2694781016674545, -0.26961420700668715, -0.269888454739996, -0.27093727997452804, -0.27027809555582005, -0.2703566480097439, -0.2701017686860453, -0.27011017665731535, -0.26982314158365023, -0.2695387025817121, -0.2701887477108901, -0.2703418022544264, -0.27054238272942516, -0.26991522464034656, -0.27013470446891924, -0.26987151578247404, -0.2695036870684269, -0.270394791730588, -0.2698706226061574, -0.2701193726659536, -0.2703697519193736, -0.27023501522678267, -0.26996660855212373, -0.26986881842215854, -0.26945735843811963, -0.2698569311726865, -0.27040892639320246, -0.2703307085007215, -0.2705048052705735, -0.2700892549445875, -0.2703102462940651, -0.2701630926103615, -0.2697191220714892]|
2019-04-30 19:33:29,867 | INFO : Best of geration |33| has accuracy of |0.567332| and fitness_score of |-0.269328|
2019-04-30 19:33:31,475 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 19:33:31,478 | INFO : Testing generation |34|
2019-04-30 19:36:51,746 | INFO : Fitness scores of this generation: |[-0.28095399503780205, -0.28103896893867075, -0.2808094498229353, -0.28097503041801153, -0.2809021419858279, -0.2812618096076579, -0.2808590054278738, -0.28084840242060194, -0.28090216369603244, -0.28125975501164063, -0.280693236279161, -0.2809696017296114, -0.2809307605844654, -0.28122163830787933, -0.28103875268228834, -0.28146259326290946, -0.2810195622320511, -0.2807971382269421, -0.2806299273398524, -0.2807461417876111, -0.2810062967284552, -0.2807317388967525, -0.2812161315268966, -0.2810288181131133, -0.2809231276614792, -0.2808818507013722, -0.2807516767962338, -0.2809496275249526, -0.28084471493726143, -0.28079410794021564, -0.28135314515250537, -0.2811297524990168, -0.28117464280116816, -0.2809456318704349, -0.2810114976273824, -0.28101887763887934, -0.28091128663307535, -0.2810609169348112, -0.28100535934043724, -0.28119156129089584, -0.2808481913256785, -0.2808504906098437, -0.28084718559936067, -0.2809796943356613, -0.28085500006281466, -0.2809575252861893, -0.2808727141462427, -0.2812908267321652, -0.28114136327386136, -0.2814105438130476, -0.2809357554478655, -0.28107070424202135, -0.280949125230429, -0.2806796223333437, -0.28120219797887447, -0.2811912988584102, -0.2812087690847727, -0.2807608244470421, -0.28090413062014924, -0.2806992750257662, -0.28124152759633186, -0.2812977444285749, -0.2812734903100652, -0.28065170559106273, -0.2806119186012712, -0.28072437789808746, -0.2806952297104315, -0.2809491171528915, -0.2808953155626756, -0.28094625538634227, -0.28103229200828334, -0.28112858857543965, -0.28096280666888346, -0.28080378643395615, -0.28099357797499974, -0.28081910417154576, -0.28105545902730433, -0.28115439229807043, -0.2810911209470139, -0.2808111885930694, -0.28070941124177023, -0.28095308223232596, -0.2807569452315394, -0.2807528910221652, -0.28085858329634844, -0.2808312401612911, -0.2811118351649165, -0.2811428523401925, -0.28118229620960594, -0.2808948362322703, -0.2807813964477957, -0.28115841166030636, -0.28082584467244476, -0.28053780296660685, -0.2812116157022941, -0.28135719341307935, -0.2810606729902633, -0.2808681914542753, -0.28087031883561214, -0.28093020437165017]|
2019-04-30 19:36:55,372 | INFO : Best of geration |34| has accuracy of |0.566085| and fitness_score of |-0.280538|
2019-04-30 19:36:55,560 | INFO : Testing generation |35|
2019-04-30 19:40:04,021 | INFO : Fitness scores of this generation: |[-0.27710588616454257, -0.2772793557139353, -0.2773961872480717, -0.27725732944813014, -0.27692992162902325, -0.27738045743392215, -0.2773487812750567, -0.2765517854344301, -0.27672712609975664, -0.27761885053883945, -0.277105163612801, -0.27739465397423235, -0.27765578637479255, -0.2773285736928837, -0.2766050202965242, -0.27672388432431516, -0.2766881318013203, -0.277230395568357, -0.27667830841175256, -0.2765047254651414, -0.2770029332380572, -0.2774684505838576, -0.2780130524110992, -0.27734568554336103, -0.27702322045797134, -0.2772526166003769, -0.2778410567782232, -0.27715334469352026, -0.2774060609677026, -0.27741861627804293, -0.2779387520061984, -0.2772842985713136, -0.27653345020480175, -0.2768489273257275, -0.27722123438391943, -0.2768774946448219, -0.27697646469496096, -0.2780078958673596, -0.277241182154145, -0.27646633079932437, -0.27707172614904857, -0.277489710769218, -0.2776668511980302, -0.2777136936474638, -0.27719215040879625, -0.2777913843447737, -0.2777491793098291, -0.2772116238150854, -0.27734217616532353, -0.27780000995303583, -0.2778569107481058, -0.27725749428836144, -0.2767066845508037, -0.2771851827247509, -0.2781411650517175, -0.2767221944955375, -0.27627672125195074, -0.2774369642447634, -0.2777627805456581, -0.27635133167520104, -0.275946381923074, -0.27756377386848957, -0.2772629147248644, -0.2767668114163569, -0.2773409493236621, -0.277410726700581, -0.2774376023359813, -0.2774621490620973, -0.27769067129158875, -0.27781792250906284, -0.27742309342776095, -0.2772787032780311, -0.2767905230591406, -0.27773300382111576, -0.27666794548885454, -0.27633296825084447, -0.2772284558205189, -0.2769483476258907, -0.27709156064571683, -0.2770314543079044, -0.2766637572114398, -0.2769118673573886, -0.27661781711697087, -0.2769108738642016, -0.27699636399003974, -0.27803454878913914, -0.27714262476105905, -0.27737246880392813, -0.27674310880083264, -0.2768322492783495, -0.27700429907478236, -0.27718078546009617, -0.2770342990075899, -0.2771221872929221, -0.2773525612235564, -0.2767364863785471, -0.27707057956343367, -0.27653258915264084, -0.2767486103590099, -0.2770357757683117]|
2019-04-30 19:40:07,572 | INFO : Best of geration |35| has accuracy of |0.568579| and fitness_score of |-0.275946|
2019-04-30 19:40:07,840 | INFO : Testing generation |36|
2019-04-30 19:43:21,519 | INFO : Fitness scores of this generation: |[-0.2728736871861136, -0.2732222464717465, -0.27308314560372154, -0.2731537989996098, -0.2730632086472256, -0.27316780756285164, -0.2722389989306407, -0.2728439093923863, -0.27281403725529896, -0.2728976982611197, -0.2731213706388395, -0.2727465062045757, -0.27290792435162353, -0.27332621730036205, -0.2728387673573239, -0.2727726400511746, -0.27276395350204086, -0.27250126507056593, -0.27346393812463116, -0.27297866089967054, -0.2730836230234354, -0.2732822383014263, -0.27277258639472995, -0.27329666093911653, -0.27256927320373403, -0.27251439293225604, -0.27310846991254467, -0.273199192014496, -0.27227158816876235, -0.2731629644708378, -0.27329046015508873, -0.27337710847579894, -0.2722610035305651, -0.2725662485746199, -0.2732165319684111, -0.2733747494932065, -0.27284320983499166, -0.27284228467524296, -0.2730884494359601, -0.27299684804285507, -0.27256744131139277, -0.27282006621606064, -0.2729069353253753, -0.2730627879806997, -0.27272499003160144, -0.27300696399967367, -0.273207527803786, -0.2730272745276675, -0.2724571999760322, -0.2724773544404242, -0.2729100099929566, -0.273068368434906, -0.2732185014665372, -0.2729960278657729, -0.2726530360648171, -0.2732445336111779, -0.2726880747656273, -0.27273343340972817, -0.2729909534378307, -0.2727355205227809, -0.27341233911337676, -0.27307595042780103, -0.27302887272319676, -0.2729960302266564, -0.27249154663134995, -0.27251203327512546, -0.2735284718956967, -0.27325564592218204, -0.2728273112464834, -0.27267117737006746, -0.27304513433587896, -0.27269685243873437, -0.27284128853568324, -0.2720720395752432, -0.27317921578148263, -0.2730771661295322, -0.2730126539436878, -0.27324728152634187, -0.2732249724644202, -0.2732911577195297, -0.2728936734452169, -0.27288441645142475, -0.27339124072481086, -0.2729647415287701, -0.2731234548391138, -0.2733475129300184, -0.27274897295996975, -0.2731345178168497, -0.27232667576874237, -0.27287531334431575, -0.27298192124921106, -0.2728597130549788, -0.27295070809959876, -0.2730293471994714, -0.2731483728000166, -0.2729210018682382, -0.27279963669340307, -0.27294189967368365, -0.2728962850423507, -0.2730641528780078]|
2019-04-30 19:43:25,056 | INFO : Best of geration |36| has accuracy of |0.567332| and fitness_score of |-0.272072|
2019-04-30 19:43:25,246 | INFO : Testing generation |37|
2019-04-30 19:46:44,706 | INFO : Fitness scores of this generation: |[-0.27617239699913904, -0.2760182950976332, -0.2755326287633569, -0.2764357323653599, -0.2759372657043694, -0.27610294824168524, -0.2757129749426475, -0.27621833734963774, -0.2764663933649571, -0.27614707945013894, -0.275338105813286, -0.27592670711187217, -0.27618151381170963, -0.27576675815342444, -0.27682972987728005, -0.2761677446273657, -0.27594412856200745, -0.27555190804442004, -0.27555899688830743, -0.2757082410994366, -0.2759633152971606, -0.27610435917885345, -0.27668319922932505, -0.27631418491609, -0.2763662420257309, -0.275955712707085, -0.2759252895970316, -0.2757278348919908, -0.27694422523298207, -0.2761458691760633, -0.2764209883981908, -0.27602865052293746, -0.27637119589472664, -0.2760984937114828, -0.27525909079249794, -0.27598072777133015, -0.275862721014305, -0.27601013155378534, -0.2765121377078739, -0.27616487716782023, -0.27555526918208106, -0.2760158264601724, -0.2751403741582611, -0.2759487113127342, -0.27619933438371624, -0.27645243030680705, -0.27628498812751656, -0.27649124199469416, -0.2763529985966767, -0.27612823385458724, -0.2758251205880261, -0.2757906223895282, -0.27584427894925223, -0.2762479346003053, -0.27631082346100777, -0.2764784402924882, -0.2758898939077671, -0.27616523869291565, -0.2756250353430855, -0.2758226459195628, -0.275910158287844, -0.2764158624340091, -0.27635941531883895, -0.2764775493264904, -0.27623967300858016, -0.27609099283726257, -0.27556890806502843, -0.2754419645966863, -0.27553105895688546, -0.27588745625414085, -0.27660551369190217, -0.27593534080939885, -0.2763090149185361, -0.2758560915494106, -0.2760412704133423, -0.2761579071628977, -0.27598714883158193, -0.2763453968883266, -0.2758450162657619, -0.2764578283714825, -0.2762786914787349, -0.2756966913592886, -0.2755522381800872, -0.27610601199096474, -0.27633526122428964, -0.2759478379812466, -0.2763991350429298, -0.27694453367820154, -0.2760505345622463, -0.27561556129060555, -0.2754697093244135, -0.27602152134892505, -0.2758143275976181, -0.2762072973350096, -0.276241910245997, -0.2760326102816847, -0.27615795474080645, -0.2760097034760481, -0.2753557071001572, -0.2754520442358841]|
2019-04-30 19:46:48,247 | INFO : Best of geration |37| has accuracy of |0.568579| and fitness_score of |-0.275140|
2019-04-30 19:46:48,437 | INFO : Testing generation |38|
2019-04-30 19:50:05,225 | INFO : Fitness scores of this generation: |[-0.25700795652726327, -0.256880299446274, -0.2572518986571266, -0.257198734410915, -0.2571627272135881, -0.25708812614341814, -0.25708914631192226, -0.25723506122019635, -0.25717206801994735, -0.25716980474900053, -0.25751848224864665, -0.25722371827227525, -0.2571113296077553, -0.256986847080021, -0.2571497874850609, -0.25734918833856124, -0.25716626715947344, -0.2570811421666519, -0.2573811671281435, -0.25718350351664676, -0.25653595041977356, -0.257108894322651, -0.257026311616043, -0.2568753811429782, -0.25721578755561847, -0.25709278834422666, -0.25706927960805864, -0.25714041860437536, -0.2572441026568413, -0.25731568754347695, -0.2574158337146762, -0.25722777138812, -0.2569899151707629, -0.25719409723238773, -0.2574908831212894, -0.2570113363978733, -0.2574797068240054, -0.25727807930165747, -0.25722603713083697, -0.25744664859789684, -0.2571247924253883, -0.2573061104280403, -0.25669276209391023, -0.25652726762086514, -0.2573697754372674, -0.2571927998439375, -0.25674007990094555, -0.2571161791053881, -0.25694842326892425, -0.2573373527546604, -0.2570905978286482, -0.2572376937212714, -0.2568456826574472, -0.25719839361417723, -0.257466481123344, -0.2572072581219745, -0.2568074960306466, -0.25673056173934994, -0.2572827883154513, -0.25707999906356793, -0.25653300858495465, -0.2571965143623122, -0.25722708142396195, -0.2571702669318541, -0.2571293610226677, -0.2569031028009682, -0.2569172901426812, -0.2574000117784164, -0.2572578379368208, -0.25709990111280634, -0.2570937139217753, -0.2571894279625042, -0.2568491590040994, -0.25741338171064854, -0.257500606420708, -0.25693306077765415, -0.2569989498300725, -0.2569139605410487, -0.25711389846471416, -0.2572145780256714, -0.2573067065642541, -0.2569396812468767, -0.25669675950993254, -0.25714629924440957, -0.25672738404428386, -0.25707000179822187, -0.2571359622370766, -0.2572892203657742, -0.25713414402611284, -0.25738915161465303, -0.25712943281305123, -0.2572776758257883, -0.2567320686866002, -0.2567316689809044, -0.25733004326382314, -0.25730896864580105, -0.25685594578733645, -0.2572468651840127, -0.25707071050103886, -0.25724549057433405]|
2019-04-30 19:50:08,796 | INFO : Best of geration |38| has accuracy of |0.564838| and fitness_score of |-0.256527|
2019-04-30 19:50:08,987 | INFO : Testing generation |39|
2019-04-30 19:53:37,737 | INFO : Fitness scores of this generation: |[-0.27140783096503274, -0.2711603466500148, -0.2711887953302111, -0.2706836045711242, -0.2714697708716205, -0.27122182139052003, -0.27112106561345634, -0.2709975442722485, -0.27123238339885125, -0.271007667101492, -0.27137511721010293, -0.2712603984710133, -0.2711312236247466, -0.27069012847731844, -0.2713528470758045, -0.2721333092928293, -0.2712839068422865, -0.27131890485293914, -0.270978366770413, -0.27112922715051296, -0.27109080793904394, -0.2707872070552179, -0.27125311238843147, -0.27120682007416497, -0.2711915787635793, -0.27132938750470875, -0.2711011737675105, -0.2713790184218898, -0.27103274207550954, -0.2709024837437533, -0.2713152861329544, -0.2712517389830686, -0.2712794958959894, -0.2710672595012044, -0.2711249684684226, -0.2711562203676679, -0.2712307470397647, -0.27089510609331086, -0.27132970237614884, -0.2711931170045969, -0.27141198753365214, -0.2712496983905933, -0.2712399291938165, -0.2712259326704139, -0.2711151331618113, -0.2708385208357137, -0.27089821198375563, -0.2714931191904667, -0.27133626062029076, -0.27121180288065955, -0.2714983065165242, -0.27083054323345873, -0.2713455795408916, -0.2708150138937815, -0.27084028351703077, -0.2710033999559022, -0.2714635942277591, -0.2714528452796338, -0.2713138671574996, -0.27101675329836833, -0.2714674036916109, -0.27078283501625783, -0.27081610803742784, -0.2710590467442198, -0.2713288737297778, -0.2714500159610434, -0.27146746185566, -0.27121517827503633, -0.27115987889536197, -0.27096152155916137, -0.27178586779719394, -0.2718421619081605, -0.27152630334489297, -0.27123931651299094, -0.27111286387477757, -0.271044952080239, -0.2710354412903058, -0.2707642466392582, -0.27099903335293973, -0.2712697714252054, -0.2709604622374128, -0.27122538345457925, -0.2710986085393638, -0.27127990044450834, -0.27094647705870095, -0.27086429812261703, -0.2710997608920779, -0.27137114719861943, -0.27123626264155454, -0.27122607273457633, -0.2709651894619818, -0.27147530787976126, -0.27080474569943375, -0.2708466013055013, -0.2716278094134302, -0.27164428026114346, -0.27043551324762605, -0.2712188727163296, -0.2711953998084695, -0.2710358406504295]|
2019-04-30 19:53:41,252 | INFO : Best of geration |39| has accuracy of |0.567332| and fitness_score of |-0.270436|
2019-04-30 19:53:41,458 | INFO : Testing generation |40|
2019-04-30 19:56:57,345 | INFO : Fitness scores of this generation: |[-0.2800628800146483, -0.2808301164391073, -0.2809292107971536, -0.28029602161935857, -0.28047212689007456, -0.28051094929813536, -0.28032990972939376, -0.28042182298628865, -0.2804508883052984, -0.280421244383261, -0.2804572727480853, -0.28074610530323274, -0.2808038017183945, -0.28024671095851306, -0.2811215759028454, -0.2802176760962686, -0.28017129134890195, -0.28080161081979405, -0.2805196148771289, -0.2801342847681529, -0.27973088551614733, -0.28065555230588524, -0.2806783655305972, -0.28048053147220936, -0.2803308769708147, -0.28052885981427655, -0.2804618664589283, -0.2803976770138016, -0.28051584541193536, -0.2804664954341747, -0.28097127445948283, -0.28002066074593646, -0.28054207284003496, -0.2806038439173151, -0.2808351379038917, -0.28057674152424206, -0.28030506649834885, -0.2805291963992892, -0.28044837891954827, -0.2806750089936965, -0.28042797545424186, -0.2805590723968438, -0.28079317376722357, -0.28112179063562603, -0.28067351724146994, -0.28048602285215984, -0.28134490471534634, -0.2806085741801842, -0.28030347680622664, -0.281203507999512, -0.28045600919506036, -0.2807352768659994, -0.28041352681513576, -0.2805525908699712, -0.2807128315892171, -0.28017273525128494, -0.2800691883910347, -0.280430243853983, -0.2807365507894271, -0.28039676972941774, -0.28092483760839376, -0.28047139587736614, -0.28036924924802137, -0.27984870653096083, -0.2805810828214964, -0.28066846773632476, -0.28135773431308364, -0.28050107873875546, -0.2803864547781445, -0.2803186646134064, -0.28037034888827317, -0.2803176326073102, -0.2803819334587535, -0.28075928865252314, -0.2808023014332394, -0.2804260465845063, -0.27992715303962296, -0.28025549614953027, -0.28078221459243746, -0.2803511280767821, -0.28003635365717316, -0.28080011612257444, -0.2805526232397234, -0.28077422902994864, -0.2802869086027951, -0.2811062437154957, -0.2805447320428652, -0.2807429947613462, -0.28025679058722547, -0.28099156870833925, -0.2806593383083472, -0.2807208660587266, -0.27996914418464575, -0.2808114211200862, -0.28057977114174815, -0.2799559970814231, -0.2803028217844061, -0.2804568714235683, -0.2806212529036644, -0.2805342681303218]|
2019-04-30 19:57:01,021 | INFO : Best of geration |40| has accuracy of |0.571072| and fitness_score of |-0.279731|
2019-04-30 19:57:01,385 | INFO : Testing generation |41|
2019-04-30 20:00:26,708 | INFO : Fitness scores of this generation: |[-0.2821593918391057, -0.2829567485146814, -0.28148670710839546, -0.2823377909125747, -0.282563894733533, -0.28311227491727703, -0.28258328527599963, -0.28267774495992576, -0.2825146887574468, -0.2829372875981622, -0.2830012942458297, -0.28309926498043647, -0.2816623185758476, -0.28190540733399455, -0.2831686145371503, -0.2825722291812047, -0.2816754594758466, -0.28307056230109734, -0.2823069331434754, -0.2821188947489789, -0.2822135436135131, -0.2819836219330808, -0.28282926123481134, -0.2825395778134778, -0.2822773224181002, -0.28276106818123264, -0.2824522187491437, -0.28156977439964853, -0.28280063328501936, -0.28222123929509174, -0.28221320712172593, -0.28269223560084095, -0.28279900072036207, -0.28211204164677317, -0.28263013315451396, -0.28222058629906094, -0.28235318795875747, -0.28234218503977804, -0.28293924953963784, -0.283403203890727, -0.2826405925614698, -0.2826450550788874, -0.2826022679383332, -0.2827542242225823, -0.28238364910936214, -0.2827648585205441, -0.2827594421050689, -0.2821628256990864, -0.2821401842572429, -0.28243000557771075, -0.28299706574674843, -0.28190634904561696, -0.2819945661871283, -0.2819039556715224, -0.28275078403818477, -0.2830298240776654, -0.2821645297863343, -0.28233976277324174, -0.283027484595358, -0.28206627669038475, -0.2819721018438702, -0.28269236180577073, -0.28271693796724884, -0.28214379842276566, -0.2823120360230063, -0.2831513945076678, -0.28324233235658947, -0.28183755138376215, -0.2817742575903435, -0.28244849547251566, -0.2826467619256095, -0.283238753974736, -0.28319826316427776, -0.28262934925498906, -0.2821645182263744, -0.2824144033459691, -0.28203898052255194, -0.28207797781602517, -0.2819024130806431, -0.28244589406389137, -0.2821558872620026, -0.282425125290801, -0.282546350309202, -0.2828628291059901, -0.28218085849070335, -0.2821126683905079, -0.28258975770499734, -0.2828775647882227, -0.28262164423594605, -0.2831529458990326, -0.2823550202795216, -0.28227562031469067, -0.2817274299678621, -0.2827244364135377, -0.2824793849233631, -0.2820458588925926, -0.2818721488371745, -0.28222306918453527, -0.2823713172573943, -0.2819318197540812]|
2019-04-30 20:00:30,284 | INFO : Best of geration |41| has accuracy of |0.561097| and fitness_score of |-0.281487|
2019-04-30 20:00:30,474 | INFO : Testing generation |42|
2019-04-30 20:03:46,724 | INFO : Fitness scores of this generation: |[-0.26890615667771856, -0.2686892332013594, -0.26879193555871284, -0.2693500317564798, -0.26870824845012176, -0.2691860541017777, -0.26880262308164476, -0.269849667855359, -0.26869164174849836, -0.2687127904881031, -0.26868484228029166, -0.2691399025534271, -0.268397775784545, -0.26948778509000026, -0.26890915572096447, -0.2691665741008356, -0.26890997490204804, -0.2689549401812597, -0.2687582163635744, -0.2692126709386843, -0.2689032537401269, -0.26953323863515066, -0.26911441987260765, -0.2690165515066287, -0.26915181549864076, -0.2688727244871472, -0.2694748262473203, -0.2688953528437046, -0.2687852905977757, -0.26943204432999324, -0.2696812990608565, -0.2690418698645513, -0.26891486199077114, -0.2691386662218549, -0.26939886742775593, -0.2686568300111578, -0.26894753422212164, -0.26941255620860177, -0.2697557991797771, -0.26918628398978384, -0.2689803027231759, -0.269063971786324, -0.2688604948170688, -0.2692314486711397, -0.2690178201012655, -0.26959555731454027, -0.2690935800108341, -0.2691016371917287, -0.2687160263094333, -0.26897931254784996, -0.26905845923161287, -0.2689423625075489, -0.2685385144905213, -0.269027830345915, -0.2691197752405744, -0.26926004700704453, -0.2695243321427512, -0.2689210852351757, -0.26919533033436593, -0.2683955626750211, -0.268910028436862, -0.2698325596271305, -0.26965840128036817, -0.26923689380151417, -0.269112234296055, -0.26871560401872757, -0.2692385386709773, -0.26935914711121023, -0.2687638241490093, -0.26972881290343925, -0.2698140792890426, -0.26919685733427695, -0.2691740050228364, -0.26916862745350656, -0.2691052486590289, -0.2688727616716962, -0.26924991593995223, -0.26986710574101963, -0.2692613990755256, -0.2688272233949889, -0.2687952177787046, -0.26881986933016994, -0.26888211820650537, -0.2691377973884618, -0.2685662384153506, -0.26947390633985535, -0.2696757774834239, -0.2689544139378661, -0.26924768065640686, -0.26918801329004655, -0.2687551782492104, -0.2689604466114569, -0.26879317117940393, -0.2689836439189561, -0.2694191450372748, -0.269557675664578, -0.26883538767285303, -0.26878996742974726, -0.26876260203505875, -0.26918646206549546]|
2019-04-30 20:03:50,315 | INFO : Best of geration |42| has accuracy of |0.563591| and fitness_score of |-0.268396|
2019-04-30 20:03:50,505 | INFO : Testing generation |43|
2019-04-30 20:07:02,886 | INFO : Fitness scores of this generation: |[-0.2684162683454175, -0.26840386418409123, -0.2686615904466294, -0.2686390240084041, -0.26866610102497246, -0.26852208954020235, -0.2690583110863764, -0.26900807111258235, -0.2693288157404603, -0.26855782814812207, -0.2692102934479966, -0.2689020392538125, -0.26861197325001307, -0.2684610444288425, -0.2689917341788274, -0.26860287303526353, -0.2681932927564133, -0.2681061241137805, -0.26884076037064164, -0.2684494697392365, -0.26849840716882184, -0.2681740239640623, -0.2687731156200486, -0.26824541824690634, -0.26859105060203886, -0.26848305021481583, -0.26880613378944157, -0.26893541931980003, -0.2684206861459176, -0.26864323788667077, -0.26848951931924697, -0.268646576534366, -0.2686413642782994, -0.26850680417792744, -0.26884103794808617, -0.2690130122179209, -0.26836818040803423, -0.2683228807204874, -0.2687341420739952, -0.2687608524054352, -0.2688296812155282, -0.26832017469481734, -0.2688032249284093, -0.26895417463640836, -0.2687172676903249, -0.2682477497903287, -0.26850524075313553, -0.268585643449495, -0.26845580711173206, -0.26893746588245254, -0.26840352282778657, -0.2690556714386063, -0.26842776416598113, -0.268682807148385, -0.2687047874007618, -0.2685744199452894, -0.2691791003085594, -0.2689135394533643, -0.26921690353064404, -0.2686435365714684, -0.26800882655646785, -0.26849368309117777, -0.2685440899705786, -0.26883881357961176, -0.26908124116964116, -0.2686202912640622, -0.2684936717184099, -0.26891759708996305, -0.26872663473982134, -0.26840729513707673, -0.26871128140871925, -0.26867950457221107, -0.26910501869737974, -0.26892515798010735, -0.26866028566567135, -0.2687799499604465, -0.26873597702755736, -0.2683996668609202, -0.26840901163743364, -0.268592519106749, -0.2685491706522272, -0.2687539710933008, -0.26891226883796504, -0.2690771067747354, -0.26850308156542746, -0.2682126847589999, -0.2684794699351833, -0.2681756288947313, -0.2684659622845892, -0.26918309328419965, -0.2688451574418308, -0.2690690912416571, -0.2680747273356415, -0.26824522500436354, -0.26847434648751706, -0.26878063128690133, -0.26829935065283583, -0.26879963382732036, -0.2682840398357232, -0.2686226156561874]|
2019-04-30 20:07:06,403 | INFO : Best of geration |43| has accuracy of |0.568579| and fitness_score of |-0.268009|
2019-04-30 20:07:06,588 | INFO : Testing generation |44|
2019-04-30 20:10:15,984 | INFO : Fitness scores of this generation: |[-0.27702935664531064, -0.27736435299191403, -0.2771327395868652, -0.27799098829136176, -0.277160617577679, -0.2780091312768705, -0.27763788358253594, -0.2775219101458788, -0.27790642995387316, -0.27819184717886586, -0.27743599782971773, -0.2771514839328387, -0.2770625229596215, -0.2771220963776988, -0.2769508704214412, -0.2779283734476742, -0.27816980644403133, -0.27769570129320903, -0.27788764413665323, -0.2774564278695513, -0.2765823870568591, -0.2766962109462303, -0.27759296485387225, -0.2779237888753414, -0.27789418306201696, -0.2771833646932946, -0.27784626635120196, -0.27765646018087864, -0.27735341553959775, -0.2770888671717223, -0.2771404606892782, -0.27795298003098545, -0.2780592828331625, -0.2775514307157958, -0.27777024720083265, -0.27715813593171973, -0.27653818632311683, -0.27768393321072354, -0.27711541523389954, -0.27816529999322753, -0.27877103904371753, -0.2774199162445524, -0.2775810385013328, -0.2775666867656743, -0.27761240829439726, -0.2779820823274991, -0.2769390636068933, -0.2777397178989999, -0.27810093503007116, -0.27758334779783206, -0.277357094866388, -0.2773702046560014, -0.27696293236359076, -0.2774838978315101, -0.27726646874319105, -0.2778663638540927, -0.27813676930963993, -0.2778438070022008, -0.2775935475331019, -0.27788923971135826, -0.2769808294799398, -0.27742961251779513, -0.2772684092907345, -0.27842555282747045, -0.2781816449783304, -0.27692553751608906, -0.2776766774956794, -0.2782896046033677, -0.2770823057302657, -0.27784908738206415, -0.2774604808758287, -0.277090794625966, -0.2780544172753306, -0.2777264750946094, -0.2777074876734439, -0.2774754402172916, -0.27695332303204956, -0.2780768606154358, -0.2770946732557872, -0.2774040988262962, -0.27835098851253004, -0.2773818449281594, -0.27803376968950033, -0.27764518909594593, -0.2774301362497842, -0.2774957601419267, -0.277270800598404, -0.2778421925271259, -0.2767720827284981, -0.27726157425957565, -0.27745156285955624, -0.2774864514084423, -0.27714818080558495, -0.27682182861163335, -0.2773010829901871, -0.2778151333332062, -0.27854448556900024, -0.27808881934513063, -0.27765224013915835, -0.27734119510825944]|
2019-04-30 20:10:19,520 | INFO : Best of geration |44| has accuracy of |0.567332| and fitness_score of |-0.276538|
2019-04-30 20:10:19,706 | INFO : Testing generation |45|
2019-04-30 20:13:30,015 | INFO : Fitness scores of this generation: |[-0.26829379903589795, -0.2680549145559406, -0.26767474664465024, -0.2688260227681356, -0.2681731646371424, -0.26874179691315847, -0.26896201926987273, -0.2687334335286326, -0.2679264841786918, -0.26803191950083544, -0.2683327269180411, -0.2683334522476342, -0.2689817294574244, -0.268659419017781, -0.2684993732876333, -0.2679187752354375, -0.26782263204503287, -0.2685988753123682, -0.26812182122488115, -0.26842942675785236, -0.2689774926045125, -0.2692271260921978, -0.2686909803719383, -0.2682299680073545, -0.26797235960745736, -0.26855584263945315, -0.26809774590746, -0.2684393079406387, -0.26904933104273593, -0.26850460637420703, -0.268938862937248, -0.2683636324773647, -0.267889536054763, -0.2685896158457952, -0.26820623625513057, -0.268004299024677, -0.2688704873899363, -0.2689872214696415, -0.2686003677523021, -0.2678290235651268, -0.26800060540533527, -0.26811323445470003, -0.26841059664917144, -0.26800351807925477, -0.26878538928997864, -0.26879929710431116, -0.268409116415253, -0.2682527534400152, -0.26799539670683564, -0.268428602330746, -0.26845638833676505, -0.26848592070137955, -0.2685136494864605, -0.2691163605144936, -0.26783516284353864, -0.26791395874652063, -0.2682030972129279, -0.2685701649552181, -0.2681895279208755, -0.2679104370175834, -0.2693863123942801, -0.268894965158494, -0.2681778683012705, -0.26825880362289894, -0.2680331605136203, -0.269060008251782, -0.2680774219933047, -0.2680201857227988, -0.26908869307092914, -0.2686882500695454, -0.268565547847192, -0.2683133235219207, -0.2679797649335631, -0.26848611804593797, -0.2681740691040873, -0.2680268881309454, -0.26843140535415944, -0.2691096355150367, -0.2683900520684635, -0.26804184621361676, -0.2685491003311715, -0.2682905816428148, -0.2681521333969674, -0.26821351559215806, -0.2694197155511264, -0.268887056894241, -0.2687693248320239, -0.26801793547976055, -0.268059440663869, -0.26891085515068275, -0.2676821216773182, -0.2684296608881552, -0.2692957669256968, -0.2689203909235944, -0.26896592596144536, -0.2678851400564913, -0.26842108043060425, -0.2686263273239519, -0.268372402984613, -0.26788067654781406]|
2019-04-30 20:13:33,548 | INFO : Best of geration |45| has accuracy of |0.566085| and fitness_score of |-0.267675|
2019-04-30 20:13:33,978 | INFO : Testing generation |46|
2019-04-30 20:16:46,628 | INFO : Fitness scores of this generation: |[-0.2652833335547648, -0.265390398695305, -0.2655022564259442, -0.2655319996392912, -0.26512902638071656, -0.26531340730296005, -0.2652797882017698, -0.2653053274043648, -0.26565997656063073, -0.26586738711185837, -0.2650929559889495, -0.26559277770921025, -0.26541330868547613, -0.26535498844810707, -0.26532014847594726, -0.2653813395161851, -0.2653487032638685, -0.26565007611018854, -0.2653926201247323, -0.26566864847476096, -0.26543954199803643, -0.26544627150780875, -0.26547441930569987, -0.2648966303157172, -0.26495358658471285, -0.2655854337826008, -0.2656430595135213, -0.2654442998958533, -0.2653643954751761, -0.26516579848171073, -0.2657174563526843, -0.2654819229489684, -0.26517565637628676, -0.2654864034076488, -0.26576156953882485, -0.2653210380521423, -0.26559251751709406, -0.26534691796598836, -0.2651546821163393, -0.2655908860216648, -0.2653102158112431, -0.26555258987219527, -0.26507414665956985, -0.26541363912120364, -0.26547277849291484, -0.2659513075771987, -0.26539383058801724, -0.26544457584817766, -0.26517558428242044, -0.2653057426544621, -0.2656790754549255, -0.26573151254204586, -0.2654464189334878, -0.2655393501739544, -0.2655261901027612, -0.26518853382102137, -0.26513992676185133, -0.2654505842540851, -0.26499633269669476, -0.26514797656076183, -0.26557964261646017, -0.26572377242957407, -0.2654287121909156, -0.2652918560277596, -0.2651586076637065, -0.2646297495275273, -0.26557146987470975, -0.26536658174975747, -0.26529950022433124, -0.26541194788896855, -0.2654659798959406, -0.2652144746611229, -0.26470559247317177, -0.26513472959366186, -0.26544769032302823, -0.2651590358325489, -0.2650390330148642, -0.26550519694378, -0.26556222474495744, -0.26524687018204157, -0.2650191470683282, -0.2654455439610915, -0.26547701481704966, -0.26536214966203053, -0.26509428222533604, -0.26560967757537995, -0.26517279376740466, -0.26513127847151324, -0.2654605994864208, -0.26535690894676683, -0.2657599427351138, -0.2654762131940499, -0.26511648654144776, -0.26507534235385466, -0.26553951240167384, -0.2655350373946378, -0.26488225383399067, -0.26533324068242853, -0.2652894243961427, -0.2653877861351766]|
2019-04-30 20:16:50,658 | INFO : Best of geration |46| has accuracy of |0.561097| and fitness_score of |-0.264630|
2019-04-30 20:16:50,852 | INFO : Testing generation |47|
2019-04-30 20:20:02,735 | INFO : Fitness scores of this generation: |[-0.27393897117670973, -0.2739137391519655, -0.27445344772198305, -0.2742890964965431, -0.2746257238647565, -0.27487725019454956, -0.2745183289321372, -0.2749539351517381, -0.2745910168640197, -0.2742266295448182, -0.27366800832640287, -0.27416210298905835, -0.27443680180713975, -0.2750221438824184, -0.2744933476929221, -0.2738831606176164, -0.2740578435851333, -0.2744682433248377, -0.27453725644790666, -0.27395785787478594, -0.2746215947901581, -0.2749422896070545, -0.274780583760095, -0.2741593861796148, -0.2745002375032896, -0.27401256047679184, -0.2746356929781215, -0.2742511207689774, -0.27431370078030626, -0.2739797771787968, -0.27399822826288184, -0.27458233485957123, -0.27493047606107057, -0.2749844342808064, -0.27440463678907107, -0.2750301436772422, -0.27501252455776243, -0.27514904406335616, -0.27434438811678463, -0.2740255090114481, -0.2743427452722104, -0.2742190743519876, -0.2742846898075675, -0.2743405487531978, -0.27502868755334087, -0.27486297278717803, -0.2742774601425984, -0.27430188257137395, -0.27408777707828685, -0.2749617428871509, -0.2743686907956389, -0.27445819081903317, -0.2748847156425182, -0.27449353603549015, -0.2742639051543342, -0.2740735654252457, -0.2743194589133706, -0.27444834719980116, -0.2742883420450076, -0.2739313512432332, -0.27462312335870703, -0.27471515732287277, -0.27454935869121766, -0.27405411038809624, -0.2744219699143823, -0.2746057565114936, -0.2747352737553266, -0.27358322403057905, -0.2753803942208928, -0.27474877968126415, -0.2746986610278521, -0.2740037933228508, -0.27427618431936857, -0.27420323093732196, -0.27404184791506553, -0.2744417022955931, -0.27500365752211503, -0.27472178398076097, -0.2743562395069875, -0.2740130402198454, -0.27455231527081964, -0.27461618783117153, -0.274516205195667, -0.27411501903652874, -0.27488214689858104, -0.2749208635618898, -0.27452781309886853, -0.2740374566340933, -0.27402956949339974, -0.27437143335266717, -0.27427556921565344, -0.27419711247323053, -0.2752462465341399, -0.27521088043578357, -0.2747846560007861, -0.27426899209314465, -0.27474635488051674, -0.27476847779994107, -0.27440342009743324, -0.2745185546458714]|
2019-04-30 20:20:06,804 | INFO : Best of geration |47| has accuracy of |0.564838| and fitness_score of |-0.273583|
2019-04-30 20:20:06,999 | INFO : Testing generation |48|
2019-04-30 20:23:16,527 | INFO : Fitness scores of this generation: |[-0.28072947509791873, -0.2800718997049769, -0.2799545307771875, -0.280119986435689, -0.28032796809432703, -0.2801829970211064, -0.2799054017854393, -0.28064424865836396, -0.2800115631261003, -0.28035541384591967, -0.2803523816646786, -0.2790784868625326, -0.28072811649479995, -0.2804084431140795, -0.2794335763388818, -0.2802794619437751, -0.28068281067620726, -0.2803618905194309, -0.2796172926185328, -0.28010990340775305, -0.2803492983546826, -0.2807518725001484, -0.28043611251979794, -0.27950821447809904, -0.2801404453198844, -0.2800474902358624, -0.2803428121116183, -0.28034210505835505, -0.2805949066757062, -0.2803759413574814, -0.28001125061183896, -0.28032899039600967, -0.28071737808918734, -0.2803869561864695, -0.28004549457392564, -0.2797933480608354, -0.28049159186695694, -0.2804530648463363, -0.2795946171524328, -0.28024636332048186, -0.280381250818935, -0.2804394110080299, -0.2798828028757638, -0.2804087717598731, -0.2805811431976633, -0.28082927569336846, -0.28018512775044924, -0.28030998334972135, -0.28006885494660894, -0.28016346911771584, -0.27995786398922634, -0.2797660502271915, -0.28059191113218257, -0.2804469589246522, -0.2805963946044992, -0.27943678077207795, -0.27974985389534485, -0.28081288113506564, -0.2798732098089446, -0.2802586104344884, -0.2802681031577084, -0.2807728210720447, -0.2799589458955537, -0.2798133290142094, -0.280934094562443, -0.2801609933376312, -0.2799930228005855, -0.2801985431701765, -0.2800495400341279, -0.2801931311777972, -0.27988416065863514, -0.2800571844665282, -0.28031140101065327, -0.2799704372882843, -0.28011587152787304, -0.27964956716659967, -0.280038796433615, -0.280343900579925, -0.28053106873407274, -0.2799377742163632, -0.2806078961136144, -0.28041684272092415, -0.2799383606932579, -0.2799622952391248, -0.2797866067208281, -0.28078333472986833, -0.27982733145766303, -0.280149366330663, -0.28075549033803676, -0.2807538941365863, -0.2801843293763082, -0.2796584482586712, -0.2804764574820842, -0.2804738808115688, -0.28056809388169457, -0.2797774371750858, -0.2805583742233591, -0.2804808302210012, -0.28007482142623413, -0.27996326531838933]|
2019-04-30 20:23:20,064 | INFO : Best of geration |48| has accuracy of |0.563591| and fitness_score of |-0.279078|
2019-04-30 20:23:20,260 | INFO : Testing generation |49|
2019-04-30 20:26:36,991 | INFO : Fitness scores of this generation: |[-0.2766653169616521, -0.27668571134479786, -0.27675265880475797, -0.2769869014942389, -0.2766823430659531, -0.27664391259602505, -0.27626413042596776, -0.276706700193153, -0.27697957398222506, -0.27659495115923366, -0.2773299626738047, -0.27680310569435573, -0.2764054745060506, -0.27670365829261945, -0.27660114125167723, -0.2768303223436685, -0.27639371773107446, -0.27638141995818494, -0.27687515393435524, -0.27650162341783374, -0.2767702070929164, -0.2768746186449802, -0.2761589280671353, -0.2767024938311937, -0.2762748343106225, -0.2764922113780924, -0.2764320334406208, -0.27708434482379785, -0.2775666542726455, -0.2766723288424152, -0.2765952895442359, -0.2767053669948372, -0.27680004618579535, -0.27668952893653365, -0.2765703107223665, -0.2759789809477415, -0.27689375714968434, -0.27626408105917116, -0.2764024968466742, -0.2766308364250677, -0.2771805281476151, -0.2763417862194905, -0.2769636783025248, -0.27661747027108136, -0.2768578476292624, -0.2765934957231549, -0.276342669515301, -0.27674315408837025, -0.27649501912135016, -0.2761744236131366, -0.27686481912144656, -0.27644262556656657, -0.27698412751979967, -0.2767014709844006, -0.27615589498401544, -0.2766573478420861, -0.27682918714855215, -0.2767246032147099, -0.2767811727127154, -0.27738015509123426, -0.2768848583423834, -0.2760521677329386, -0.27629300356983283, -0.27660399294800037, -0.2770575199195807, -0.27629330609556585, -0.2766829744624577, -0.2767509597507741, -0.27691366912113674, -0.2766967497283606, -0.2768444253279151, -0.2765650182104797, -0.2769462005268756, -0.27651259010965873, -0.2769226216101389, -0.2766526087368135, -0.2769931348965322, -0.2770969817053071, -0.27646205381309386, -0.2769514445831879, -0.2769669315529813, -0.2767623249682591, -0.27647757524852273, -0.27666498570562265, -0.27669442672845274, -0.2768468291317816, -0.2762544250531162, -0.27704929445180104, -0.2768948585223809, -0.27625471385691663, -0.2768122207560985, -0.2767114665546863, -0.2767259292304516, -0.2769981476632382, -0.27661515833984174, -0.2769093924074722, -0.2767695471537199, -0.27677643628750775, -0.27728205833503666, -0.2761117098249977]|
2019-04-30 20:26:40,542 | INFO : Best of geration |49| has accuracy of |0.568579| and fitness_score of |-0.275979|
2019-04-30 20:26:40,738 | INFO : Testing generation |50|
2019-04-30 20:29:57,766 | INFO : Fitness scores of this generation: |[-0.2793546568841053, -0.27937904799748464, -0.27991379855197873, -0.2800748495471104, -0.2801194895619607, -0.2793594649625073, -0.2797125984321941, -0.2795828660580867, -0.2795917994041557, -0.2797004611588093, -0.2800345414619332, -0.27924431849343234, -0.2797245614663677, -0.27957018705753917, -0.27984372158874876, -0.27977049186403813, -0.2797852280465039, -0.27960779943160613, -0.27995489242357574, -0.27980531976404205, -0.2796531497166338, -0.2792385524435832, -0.2797624588279184, -0.2796514476864597, -0.27965080849104595, -0.27972847392058053, -0.2797093808695385, -0.2797280151602408, -0.27976722607802706, -0.27970901797851755, -0.27947029642394333, -0.27955339402626594, -0.27988193422866825, -0.27974384741083164, -0.27992645225830476, -0.27972905357797173, -0.27956014716145533, -0.27915431512450317, -0.2798701192511887, -0.279987624034441, -0.27929917259916287, -0.2801797785719887, -0.2801741871499802, -0.28022830252675823, -0.2796265584168242, -0.2793211967818961, -0.27924664893733053, -0.27966767100925416, -0.2796346464384508, -0.2800262993209941, -0.27974652808753636, -0.27961292143372596, -0.27983686183586204, -0.27939201280718945, -0.27951531283190995, -0.2795576784543238, -0.27978374004008694, -0.2798008425091844, -0.2797965287673669, -0.27975989609468177, -0.2798594290115794, -0.2798405925003498, -0.2794902000226491, -0.2797775043593789, -0.28004096848154564, -0.2800757965147939, -0.2798126590855964, -0.2794873699345994, -0.2796184204729765, -0.27974690126058066, -0.27964767509441263, -0.27964028627257764, -0.27930130788448493, -0.2800927974516873, -0.2799170123615848, -0.27980588900616554, -0.28045336710047614, -0.2795022709847563, -0.2792815313120713, -0.28012582932872315, -0.2799111637557494, -0.27928352800104905, -0.2796393402820195, -0.27997561551952505, -0.2794924671532678, -0.2794398198184598, -0.27967732116557803, -0.279860423192182, -0.27996398356428087, -0.2799083382646302, -0.27994203620802627, -0.2799279453058001, -0.27958014524151775, -0.27936269511675516, -0.27960434738108014, -0.27977617893329143, -0.2800398823401256, -0.2797315086941783, -0.2800481202616599, -0.2796133240537743]|
2019-04-30 20:30:01,324 | INFO : Best of geration |50| has accuracy of |0.568579| and fitness_score of |-0.279154|
2019-04-30 20:30:01,519 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 20:30:01,676 | INFO : Testing generation |51|
2019-04-30 20:33:22,140 | INFO : Fitness scores of this generation: |[-0.2661387747963943, -0.2660590416294033, -0.26635085889848614, -0.2660446066977614, -0.26609345366389064, -0.265944406743777, -0.2662488995635577, -0.26618113790528247, -0.2661345675335092, -0.2667451552415298, -0.26586830297769126, -0.266058712692584, -0.26615203193015297, -0.26616377069451713, -0.26611221436053345, -0.2663148174851628, -0.2666355585984591, -0.2662531032737366, -0.26638776100961503, -0.266352579283849, -0.26583332948092014, -0.26635436691806813, -0.26636681720025124, -0.2663650787651202, -0.2661819781287242, -0.26632774091709804, -0.2657674890116783, -0.26601769690122984, -0.2657667848518339, -0.2660860076462482, -0.2660030905136281, -0.2658089834081251, -0.26652782564446076, -0.26598823472941663, -0.2658805362585574, -0.2662173322870233, -0.26598926435756143, -0.2663994410785578, -0.26637145821320807, -0.26631489173840667, -0.26634991121830914, -0.26624377268855853, -0.2661453095027956, -0.2658702538006723, -0.26593558039032134, -0.2663195157791935, -0.26612031518739493, -0.26591081319555726, -0.2662441745652991, -0.26592915637344966, -0.265963335579398, -0.26615000335173417, -0.2661915722034745, -0.2660047161040333, -0.26627282015347886, -0.2659764924291837, -0.26614725795169336, -0.2660601810715293, -0.26625859824951087, -0.2661427865088996, -0.2658294697097466, -0.2659564305833504, -0.26630049812591683, -0.2663507883831606, -0.2665091983847699, -0.26622193938931504, -0.2662400849458188, -0.26610121710152274, -0.2661215914339669, -0.26673486264748764, -0.2663191607442953, -0.2663586284649574, -0.26629963527291506, -0.26614709430831973, -0.2661248244639844, -0.26615394397644, -0.2659273401828809, -0.26651175887571216, -0.26640511626577645, -0.26617155634077255, -0.26610293044882305, -0.26606313587918795, -0.2660381876142685, -0.2659485399723053, -0.2660969511768912, -0.26628242564403404, -0.2659030250236813, -0.26580871394125083, -0.2662204127022102, -0.26642050251448895, -0.26582762913852087, -0.2661917736469689, -0.266170108503541, -0.26584639875902294, -0.2663194029007928, -0.266473190966299, -0.2662086249744825, -0.26610234538040595, -0.26609969368088715, -0.26580878812714487]|
2019-04-30 20:33:25,696 | INFO : Best of geration |51| has accuracy of |0.564838| and fitness_score of |-0.265767|
2019-04-30 20:33:25,889 | INFO : Testing generation |52|
2019-04-30 20:36:43,868 | INFO : Fitness scores of this generation: |[-0.26958339942826165, -0.2692049462616054, -0.2695324055120057, -0.2692928760269888, -0.26917389233907063, -0.270029000402276, -0.2690757270147598, -0.26880944776379206, -0.2692608820651871, -0.2699888841973411, -0.26913433544386445, -0.26915348343599854, -0.26948709260014925, -0.26917886381445366, -0.26935520516891104, -0.26909742374825324, -0.2691498661352918, -0.26933718426944386, -0.26930715065766003, -0.2695729564997106, -0.2695858839290594, -0.26941185784495736, -0.26888056323419207, -0.2689417755097346, -0.2689699213878781, -0.2697828292457107, -0.2690895675833708, -0.26923250865702536, -0.26924144208820816, -0.269367980099971, -0.2693766640876633, -0.2691733378016092, -0.26961310034483865, -0.26993782810525957, -0.2691874259048038, -0.2695917193601334, -0.26967382323897743, -0.26926130874484194, -0.2690560987182692, -0.26886275153534084, -0.2693399456201815, -0.2693082297354742, -0.26952436313130496, -0.26943853076766516, -0.26921124076531605, -0.26947428233483256, -0.2690689708672318, -0.26887580458245247, -0.26926790563499226, -0.2691900772206924, -0.26921227099069583, -0.2694420433122348, -0.2696786996585871, -0.26967264556027704, -0.2691386444895875, -0.26892571990786035, -0.26940456024961534, -0.2700672910883536, -0.26927712801235176, -0.26956805454360117, -0.26930780843192453, -0.26954113007370945, -0.2692881590985005, -0.2689304425435908, -0.26988666967239255, -0.2697105411610572, -0.26916454422707653, -0.2691248219776777, -0.26984198212234023, -0.2697280908721724, -0.2692015410443537, -0.2690898599967458, -0.2691933751495835, -0.2694362599475711, -0.26912375709979364, -0.26959233067783656, -0.27003045062613645, -0.26952573879092345, -0.26930269408070184, -0.26850310735453187, -0.2692963930906034, -0.2692210876084621, -0.2691004964650846, -0.26903293906084075, -0.2691374710961884, -0.26929337904344197, -0.2689389577098921, -0.2693792236007117, -0.2692335732427298, -0.2694888955432605, -0.26972344521603553, -0.26927252446903904, -0.26968906093267053, -0.26940949504671535, -0.26931071261954465, -0.26882861969517724, -0.2691076621510624, -0.26893134417097553, -0.2695476942592197, -0.2688690951836655]|
2019-04-30 20:36:47,500 | INFO : Best of geration |52| has accuracy of |0.571072| and fitness_score of |-0.268503|
2019-04-30 20:36:47,705 | INFO : Testing generation |53|
2019-04-30 20:40:06,816 | INFO : Fitness scores of this generation: |[-0.27594240667547126, -0.2762601504696163, -0.2758396422992935, -0.27595761659928175, -0.27580047611969366, -0.2761234855862989, -0.2758995454139216, -0.2763213889434812, -0.2757890584399005, -0.27606502134728494, -0.2762492782860101, -0.2760704726549195, -0.2757269852167904, -0.27662700991214784, -0.27608053812538896, -0.2758233409770828, -0.2758175873220454, -0.2760972747888812, -0.27598935162663785, -0.276006081529794, -0.27600521687671986, -0.276299133917129, -0.27611553021364055, -0.2756681267263454, -0.2762722818419459, -0.2761982209188737, -0.2761170417476415, -0.2758670668917066, -0.27595857431355875, -0.2757291641969447, -0.2763627959816267, -0.27584775791018795, -0.2755936816618943, -0.2759202940222028, -0.2758238705773445, -0.2759734599442508, -0.2759927366060847, -0.2759704310497731, -0.27617718391018925, -0.2760430635321043, -0.2757923600215678, -0.2757252445825114, -0.27567448266033256, -0.27589266921827515, -0.27588264924304035, -0.27667746075736077, -0.27575796505573336, -0.2755921575613827, -0.276085518016315, -0.2755827886288432, -0.27585884644484976, -0.27574124337460754, -0.2756836039574984, -0.27628246333439926, -0.27618952028514254, -0.2762786466476053, -0.2759858019426668, -0.2757081355320985, -0.27555637297091107, -0.27608363480593917, -0.27626941275937683, -0.2761816468079668, -0.2760404523776727, -0.2756803271840314, -0.2762439996207118, -0.275975585856782, -0.27634613676763037, -0.2760163668634456, -0.2762245259549702, -0.2761160877079015, -0.2763203924334017, -0.2760319823871192, -0.275791977199774, -0.27631792407838135, -0.2759002628215977, -0.27610869813273975, -0.27590389941547483, -0.2759319181460126, -0.27593312698748845, -0.2763972347576872, -0.2764052563126146, -0.27604245713198866, -0.2759475673495586, -0.27619540861906733, -0.27593559408382756, -0.2764386468508588, -0.27616746037467627, -0.2761252172473991, -0.2761242019789095, -0.2758349023901474, -0.27603190026832214, -0.2761055763800722, -0.2761574026187044, -0.27625617620405774, -0.2762764383929627, -0.27605507920727096, -0.27571542065702276, -0.2757144674902391, -0.27607386415108676, -0.2761238858266163]|
2019-04-30 20:40:10,350 | INFO : Best of geration |53| has accuracy of |0.568579| and fitness_score of |-0.275556|
2019-04-30 20:40:10,542 | INFO : Testing generation |54|
2019-04-30 20:43:44,645 | INFO : Fitness scores of this generation: |[-0.27191983832646227, -0.27173659448284837, -0.27196980810771554, -0.2718879650923699, -0.27181053231561353, -0.27191685569488394, -0.2716976603519808, -0.2719628539281221, -0.2720590070026017, -0.271937909461995, -0.2716844053902558, -0.2717152888530858, -0.27157743582125593, -0.27164793076695487, -0.2722437860640895, -0.27181171872586285, -0.27175740713090907, -0.2718338584903788, -0.27183515288062016, -0.2720051665330182, -0.2718394296693056, -0.27184553216108287, -0.2716618796720654, -0.27192665463631593, -0.2720954688812328, -0.27192881204081015, -0.27186184437675925, -0.27155661184675844, -0.2717854913804957, -0.2717060280825355, -0.2720099914687864, -0.27191443533443566, -0.27206487170720506, -0.27178972937176404, -0.27180025440967376, -0.2721303947745899, -0.27187052765445885, -0.2717560947796201, -0.2721413903841761, -0.2718743703666846, -0.27193461784988526, -0.2719126573267163, -0.27173073817107635, -0.2716715840290081, -0.27155625546227224, -0.2719443077039377, -0.27187127823974194, -0.27213510161816995, -0.2721519818944757, -0.2716904727759075, -0.2718362920520514, -0.2717144679681263, -0.2716250067098355, -0.271806532393223, -0.2720431075996028, -0.27209941085034584, -0.27203348759838625, -0.27164058254198736, -0.2718943082077873, -0.27171939962107633, -0.2720036232914421, -0.27189379687648085, -0.27202345597930494, -0.27179760417890053, -0.27184887588840106, -0.2719020530328912, -0.27197875818808354, -0.27163203798885294, -0.2716782814404178, -0.271851390920764, -0.27196092853101633, -0.27195958475517945, -0.27205525307565187, -0.27200890278062423, -0.2717963362105356, -0.27181192934318815, -0.2714696670973472, -0.27188647080897665, -0.27192344923529194, -0.27183337915674183, -0.27151616758908564, -0.27198649435808014, -0.2718060178077516, -0.2717180308415961, -0.27135924675357387, -0.271713135936425, -0.2721979369007469, -0.2719550444471323, -0.2718008595969251, -0.2719585594698068, -0.2716770944181912, -0.27208105656360865, -0.2720689866813252, -0.2721109998350504, -0.2720575961909673, -0.2718235179781914, -0.27205874882589887, -0.2718774113109556, -0.2716731302139035, -0.27174384353835396]|
2019-04-30 20:43:48,235 | INFO : Best of geration |54| has accuracy of |0.568579| and fitness_score of |-0.271359|
2019-04-30 20:43:48,432 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 20:43:48,435 | INFO : Testing generation |55|
2019-04-30 20:47:00,470 | INFO : Fitness scores of this generation: |[-0.2763341776373094, -0.27661710634435477, -0.27614186073473673, -0.2760290738456605, -0.2761121539627774, -0.27646800199229465, -0.27583766924707515, -0.27621848842031077, -0.276355741545558, -0.2760932600419772, -0.27677140904492453, -0.2760665472270104, -0.27612253232744705, -0.2760875540082915, -0.2759310541380393, -0.2766642967859904, -0.27666409078397247, -0.27612505738803167, -0.27618241783950415, -0.27537772248972925, -0.275867731686224, -0.2758640432566927, -0.27639466092774745, -0.27654248574062396, -0.2765516300538653, -0.27666833186358736, -0.27662740582436846, -0.2759839861016524, -0.27597829549197567, -0.27579728899556294, -0.27655988467628495, -0.27645114868095044, -0.27654430917219114, -0.2762227859021279, -0.27578460265016347, -0.27587834935177835, -0.27550310922557847, -0.2764102648616883, -0.27634010231939327, -0.2764796285906382, -0.27665439849359946, -0.2762747549108769, -0.2763366077683474, -0.2759203730771939, -0.2761211455717944, -0.2762753228542575, -0.27609138589417725, -0.2765362410103543, -0.27666568955439225, -0.27646927313323605, -0.27564828261210206, -0.27585337291422646, -0.2764662858752305, -0.2761262276847112, -0.2765915454283618, -0.2768789194524288, -0.2764097144337077, -0.276027128492531, -0.27628603741003754, -0.27612806431818426, -0.2760685188859178, -0.27557694898885593, -0.276477599451155, -0.27663007787053, -0.27592338461494237, -0.2761065268791036, -0.27622296876813235, -0.2760918514247526, -0.27553659128515345, -0.27653216838575245, -0.27636489801500974, -0.2767433745688514, -0.27695941735516516, -0.27601635331908864, -0.276182034984231, -0.27608189542304007, -0.2760643746638507, -0.27629571355748594, -0.2764805872320083, -0.27656273504621104, -0.2762731697344989, -0.27609227502947314, -0.2759784975726354, -0.2761772089360053, -0.2761646459173215, -0.27654978819191456, -0.2765642101958133, -0.27673787055046933, -0.27659289950602933, -0.2761704678598203, -0.27568436864959567, -0.2760669849486205, -0.27595519483612296, -0.27594668927945587, -0.27651569456384895, -0.2766003290420039, -0.27656669921258037, -0.2770036809930676, -0.276408881798648, -0.275718828532518]|
2019-04-30 20:47:03,975 | INFO : Best of geration |55| has accuracy of |0.564838| and fitness_score of |-0.275378|
2019-04-30 20:47:04,378 | INFO : Testing generation |56|
2019-04-30 20:50:33,250 | INFO : Fitness scores of this generation: |[-0.2712212517579025, -0.270861203576267, -0.27109273737789685, -0.27132730889264667, -0.27091218246802734, -0.27109231955351487, -0.27067115136953157, -0.2712056572633183, -0.2711784865393817, -0.27169827399688345, -0.27081983636287144, -0.2707564984665853, -0.2707582797124007, -0.27104283102158444, -0.2710829893144492, -0.2713608463465982, -0.2709121998643207, -0.2708615785075868, -0.27090954086583724, -0.27045726140154486, -0.27103970689565593, -0.2712783397427786, -0.2712196791979754, -0.2708486207874022, -0.2711793434025714, -0.2709792806444881, -0.27071739516200677, -0.27049557979558114, -0.270829294167018, -0.27107301369495107, -0.2714741268076258, -0.27146849874116924, -0.2708789749401752, -0.271278418066717, -0.2707933988015971, -0.27050467655991095, -0.2712649151543591, -0.2710890538085287, -0.27154464910613413, -0.27092708726166936, -0.2712977898780059, -0.27148416351724264, -0.27078363813483086, -0.2710847173617265, -0.2708207088003277, -0.27075966354749653, -0.2707411884634851, -0.2710062761637281, -0.27076429732120666, -0.2706553692061953, -0.2708277826275781, -0.2707763787858026, -0.27025230230061437, -0.27105799633023153, -0.27073355098008367, -0.27125188571363223, -0.27102575777243604, -0.27101849856267096, -0.2714859838611983, -0.27104555129587093, -0.2708199930107482, -0.27084104296667183, -0.271605602282787, -0.27100300080958184, -0.2710922822309803, -0.27129758344353916, -0.27080729857922714, -0.27083734132790493, -0.27084403849465083, -0.27090024541935814, -0.2706950146739728, -0.2710409348952436, -0.27094424244399384, -0.2707812626181733, -0.2705945312001995, -0.27099585203552545, -0.2710395066584011, -0.27095985454376614, -0.27133880072850675, -0.27117888049173206, -0.27133673761399735, -0.27107167137189075, -0.27094776931906417, -0.27101968496898626, -0.270906497199216, -0.27131710294343975, -0.2708823366491037, -0.2709787204118904, -0.27103203012842997, -0.27073730094317705, -0.27080929020529965, -0.2713817928879989, -0.27087715225195586, -0.2708136318512609, -0.27161987819868455, -0.27126629843240213, -0.2713733878555328, -0.2709602639543305, -0.2709877689795516, -0.2708573389763587]|
2019-04-30 20:50:36,831 | INFO : Best of geration |56| has accuracy of |0.572319| and fitness_score of |-0.270252|
2019-04-30 20:50:37,022 | INFO : Testing generation |57|
2019-04-30 20:54:12,112 | INFO : Fitness scores of this generation: |[-0.273553557269709, -0.27400592772703636, -0.2738744134532666, -0.2736732791787489, -0.2742545472330492, -0.27413918105355073, -0.27383415195054145, -0.2737278081667362, -0.27381363569956063, -0.2738638403071704, -0.27374368130931925, -0.27384343371986963, -0.2738598108730176, -0.2739540448177532, -0.2741485161281364, -0.27411525912930856, -0.27384624256968726, -0.2736634512504018, -0.2736410088622639, -0.27403839712370226, -0.2738991875251516, -0.2739000068602086, -0.27429077272099023, -0.2741236561433825, -0.2738410894850165, -0.27383924169336005, -0.2734848182083549, -0.2738433423155939, -0.2737964325925897, -0.2736119483278794, -0.2742771470176815, -0.27414492665481965, -0.27376273767313586, -0.2738859483058149, -0.27365791129326106, -0.27391813638705287, -0.27369709311009066, -0.27399511801189746, -0.2742301669169601, -0.2738381708785653, -0.27365459493639677, -0.27385370954108484, -0.2736852623364976, -0.2739318191113757, -0.2737098565457421, -0.27371708186902227, -0.27426589261776196, -0.27404629914846773, -0.2736545933776381, -0.2739137273260362, -0.2738179060143686, -0.27401473873693516, -0.2736988865430166, -0.27389153620312784, -0.2742282922212237, -0.27402219238738107, -0.2735485579873306, -0.27391099848773187, -0.2737629524791424, -0.27377658823096285, -0.2736593133967158, -0.27400842269433284, -0.2744042742055956, -0.27400229842671964, -0.2737956798599076, -0.2735903944560373, -0.2735610894301116, -0.2739814509204467, -0.2736479522647266, -0.273996446808408, -0.2740701730062164, -0.274031051213514, -0.2737805935925425, -0.273600764429615, -0.2738981258579347, -0.27383585547598144, -0.2739694307672047, -0.2739240858901676, -0.27413662266098227, -0.2740400668498193, -0.27382223505910513, -0.2739763585344119, -0.27348421600790873, -0.2741059888147118, -0.27390949275542437, -0.27393506785291016, -0.27415166717077477, -0.27398527615005897, -0.2739213330841606, -0.27407354999021394, -0.27393922618258404, -0.27390980412581756, -0.2737915447638421, -0.2738012013693536, -0.2742521467994629, -0.2742160129636736, -0.27372927554261584, -0.2736887108112709, -0.2738091797208603, -0.2737477105956999]|
2019-04-30 20:54:15,671 | INFO : Best of geration |57| has accuracy of |0.566085| and fitness_score of |-0.273484|
2019-04-30 20:54:15,877 | INFO : Testing generation |58|
2019-04-30 20:57:31,835 | INFO : Fitness scores of this generation: |[-0.2901945006990609, -0.2902324611730805, -0.29062896809934907, -0.2903508381460158, -0.2902292514464331, -0.2901399379627101, -0.29060701265683236, -0.29041590978169396, -0.29032643792148877, -0.2905831471113092, -0.2904544320652974, -0.2903141884783941, -0.29036262840748717, -0.2900009626546761, -0.29022296412044, -0.29023183077959386, -0.2904943341248137, -0.29038920816784647, -0.2902563344308497, -0.29040156778588533, -0.29021953913949555, -0.2906295696820878, -0.29009850664742554, -0.2902549437476174, -0.29042855420196345, -0.29057900591059665, -0.29033885959556494, -0.2906982958206628, -0.29072799146616085, -0.290346552974195, -0.2902458675908073, -0.29037804739091844, -0.29063246414313254, -0.2903574147638684, -0.29012253682185896, -0.2910424146436279, -0.29011277265006646, -0.28996768092492153, -0.29021887015723474, -0.29049226049464644, -0.29046948378055243, -0.2900559651267727, -0.29012593436924233, -0.2907277495495273, -0.2902884656587502, -0.29046119383214364, -0.29047241432389137, -0.2904318926955768, -0.290651231866447, -0.2909352470898584, -0.29056208455408344, -0.2908383019254741, -0.29052880334765985, -0.29027972980479877, -0.29039083052144254, -0.2904063461833873, -0.29002627598159636, -0.29046251981514, -0.2903909739692198, -0.2906866922506343, -0.29022694730273896, -0.28995940034138296, -0.290201904097238, -0.2902779156641687, -0.2904253685760851, -0.2906054765151301, -0.29057930332785836, -0.2903717221096571, -0.29019155426298626, -0.29021477440368665, -0.2904899229128568, -0.29050626780651856, -0.29056090232184545, -0.2905205249125327, -0.2902139900958031, -0.2906458064114981, -0.290510525048991, -0.2898812607729501, -0.2900911989361874, -0.2901952859709752, -0.29055097784550926, -0.2904258419151888, -0.2900588736626666, -0.29049817485090984, -0.29066277539113095, -0.29070388965047, -0.29015055034385373, -0.29001545195438505, -0.29057669077695186, -0.2901993178230557, -0.29029593521698127, -0.2906204196805214, -0.29015679919124754, -0.28993267933674527, -0.28995420055226345, -0.2901633699422843, -0.29070304312128675, -0.2903866090858269, -0.2900899511223139, -0.29079238673785696]|
2019-04-30 20:57:35,330 | INFO : Best of geration |58| has accuracy of |0.568579| and fitness_score of |-0.289881|
2019-04-30 20:57:35,535 | INFO : Testing generation |59|
2019-04-30 21:00:45,234 | INFO : Fitness scores of this generation: |[-0.25853403654333723, -0.2580757614208444, -0.258141518173731, -0.25789723201182924, -0.2580711324385998, -0.25787801459231185, -0.25847599725552206, -0.2583128093604015, -0.25847874000468063, -0.2582824631122196, -0.2579020129458252, -0.25788251060006867, -0.2582216563513461, -0.2581387461568208, -0.2587358983642852, -0.2588157756713474, -0.25812170016391395, -0.25831552471280633, -0.25776640983974985, -0.258416397822812, -0.25863457514566157, -0.2576960525705141, -0.25807314483039584, -0.2584469770102223, -0.25836977990753446, -0.25776378041960196, -0.25804087987395147, -0.2578775318748748, -0.2576937958798601, -0.25780038542277073, -0.2586840516783197, -0.2577251638264934, -0.25850129648708975, -0.2581390751851514, -0.2575549528737774, -0.2577338771969748, -0.25835485856629276, -0.2579128655350262, -0.2580783919101339, -0.2583157507026142, -0.2583854655513849, -0.25784235751682333, -0.25828503092308214, -0.2579027180447172, -0.258207362863515, -0.2575390150461496, -0.2580215673008307, -0.2580870266987069, -0.2584713233693298, -0.25831596987664435, -0.2580972895226671, -0.25794548531284245, -0.2583642644732522, -0.25826988385931793, -0.2579763069281129, -0.25814389059896425, -0.25857810535773035, -0.2585143301251758, -0.25858041430268053, -0.2583022344807338, -0.25828215640222013, -0.2578749972074021, -0.25876794655226804, -0.25830466691154, -0.2578580248516237, -0.25757189810008746, -0.25777164569350103, -0.25755606585019375, -0.25814836041275163, -0.258224059380758, -0.2580585288627265, -0.25807838776721015, -0.2580847875152468, -0.2582694533961771, -0.2573925517332393, -0.2584470759058212, -0.25787356375578807, -0.2575580862605518, -0.25827029187048495, -0.25865150166199347, -0.2574256726711855, -0.2589796651906497, -0.2582755361437263, -0.2577863008184818, -0.25825375371984305, -0.25762971206630825, -0.2584404982793492, -0.2587305191119156, -0.25917645072723183, -0.25836742659320744, -0.2574853481465926, -0.2581036149653619, -0.2582640810932279, -0.2579079575068213, -0.2580921823668373, -0.2583496452981581, -0.25838788648891875, -0.2581902950868478, -0.25830656650889616, -0.25775783158203946]|
2019-04-30 21:00:48,846 | INFO : Best of geration |59| has accuracy of |0.563591| and fitness_score of |-0.257393|
2019-04-30 21:00:49,037 | INFO : Testing generation |60|
2019-04-30 21:04:00,554 | INFO : Fitness scores of this generation: |[-0.2579486778000463, -0.25873753938351407, -0.25681616871406193, -0.25765067092788607, -0.25853224182199236, -0.25786030178224795, -0.25811342204918203, -0.25907477050755934, -0.25848872489282165, -0.2576465983833887, -0.2587140561205096, -0.2583398897211812, -0.2593191176389171, -0.25946626137491524, -0.2582697911424271, -0.25814772381895057, -0.2584706112346818, -0.2582415174418143, -0.25728824418202967, -0.2587370834695203, -0.25830447348521524, -0.2583455749317608, -0.25844217876417447, -0.25802898635554805, -0.25830150635193233, -0.2580174239335862, -0.25798207389569916, -0.2580560576775081, -0.25731812870256315, -0.2569249303115856, -0.2582270064360976, -0.25846087378738203, -0.2582937060555877, -0.2578936990207627, -0.2584593082423759, -0.25926399028758385, -0.2568056091094791, -0.2573781627996833, -0.2580147543839649, -0.25840850416186284, -0.25911626290079415, -0.2571557658260199, -0.2589303039695661, -0.25933140604193583, -0.2579824051498312, -0.2573065537091202, -0.25834171768486675, -0.25876444481467076, -0.25854841999951367, -0.25899182827071804, -0.2586381200668031, -0.2588336716535169, -0.257824514731545, -0.25766600707990933, -0.2579347190603746, -0.25789676276983414, -0.25833155746656883, -0.2574858662828935, -0.25803193634590216, -0.2590942863693631, -0.25802646590545114, -0.25682973808946863, -0.2584281540901612, -0.2581080724883572, -0.25766524540639557, -0.2581980339193766, -0.2581146344498547, -0.2592038966737314, -0.2580767687970558, -0.25798992940106574, -0.25924713131600774, -0.25843695439068615, -0.2582867844442351, -0.2585430748343116, -0.2577416718357784, -0.2587406451547392, -0.2571458732132363, -0.2568692323205042, -0.2579856881525664, -0.2582785866077671, -0.25875147007911253, -0.2569608965278727, -0.2577317878384154, -0.25815837792942303, -0.25883475060308225, -0.25726546492196817, -0.2575258158125357, -0.2587527296008614, -0.2586490204200632, -0.2580499995422926, -0.25800146395477924, -0.25897311188478384, -0.2590268986590844, -0.25727127839682024, -0.25798980096096835, -0.25904164122620865, -0.25765696888827994, -0.25711866228629704, -0.25744125941510043, -0.2584202548043918]|
2019-04-30 21:04:04,059 | INFO : Best of geration |60| has accuracy of |0.571072| and fitness_score of |-0.256806|
2019-04-30 21:04:04,573 | INFO : Testing generation |61|
2019-04-30 21:07:28,248 | INFO : Fitness scores of this generation: |[-0.2717430035592082, -0.27157764767512393, -0.27195572740993385, -0.2715745130357675, -0.27183984385928517, -0.2714806749086562, -0.2718219650066724, -0.27174723768604914, -0.2717136889845581, -0.27150091007277144, -0.2714397703393651, -0.2717400293800991, -0.27159200650579113, -0.2716366095970961, -0.2718722071487423, -0.2717963673973992, -0.27194283667992925, -0.2718573972179275, -0.2716941937520248, -0.27206925043430824, -0.2717491697703106, -0.27166996039861185, -0.2718871050068703, -0.2720940837649668, -0.27150982157995135, -0.27147832671283123, -0.2714825543232165, -0.2715881814509481, -0.27171165680694004, -0.2716493898612207, -0.2718754813986772, -0.27192186925152956, -0.27179405247136845, -0.27145436888891333, -0.27164282847789967, -0.2716697021167998, -0.2718152038102882, -0.27155905839433164, -0.27166690169987734, -0.27142202852661895, -0.27187212874203054, -0.27168193289126413, -0.2715976770477764, -0.27225919990027797, -0.27186414989509217, -0.2715002736571799, -0.2717333385195871, -0.2714986931775494, -0.2720393903904717, -0.27166331545220934, -0.27140378669546983, -0.27178687287668285, -0.27173584787812133, -0.2716539707202969, -0.2716369387976743, -0.2718980895988681, -0.27191069421761016, -0.2716887631082726, -0.27167706221431764, -0.2715016540547192, -0.27157481383894727, -0.27158947399590416, -0.2715825712160696, -0.2717923309762356, -0.2717351445941294, -0.2717889100911027, -0.2714689978236779, -0.2717782257791747, -0.2716484271296288, -0.2715173181643338, -0.2714833101573416, -0.2715620263708511, -0.2717915870391258, -0.2718451571619977, -0.27171901191249415, -0.2717738724131522, -0.2719551584306906, -0.2715789930840792, -0.27181724727213563, -0.2719647479481778, -0.2721147251762861, -0.2717640521294375, -0.2716213860955377, -0.27182678150437184, -0.2718185543446029, -0.27141274535727716, -0.27142365695301485, -0.2720019831252074, -0.2715717754219336, -0.271523043707596, -0.27172913235671065, -0.27194250046967744, -0.2717246076646994, -0.27145913811241734, -0.27198288859491243, -0.27210915852394124, -0.27169578046413695, -0.2718316279090156, -0.27161558804923336, -0.2715797759405708]|
2019-04-30 21:07:31,779 | INFO : Best of geration |61| has accuracy of |0.568579| and fitness_score of |-0.271404|
2019-04-30 21:07:31,961 | INFO : Testing generation |62|
2019-04-30 21:10:53,296 | INFO : Fitness scores of this generation: |[-0.26893007679713155, -0.26885347165971607, -0.26865757817970337, -0.269162086670509, -0.2688769358315219, -0.26937192459264825, -0.26914541130777214, -0.26882140695925, -0.2688380220058691, -0.26932461349423953, -0.26884583293207315, -0.2685966777348999, -0.2690787126850403, -0.26924949451344155, -0.2691463986201784, -0.2690731793076401, -0.26920777572979565, -0.26895893540140575, -0.2685066246265194, -0.26860998348197057, -0.26894915547146775, -0.26926301372892636, -0.26900445928847944, -0.26856908978162997, -0.2693267421684231, -0.2695239170466595, -0.26848897912394815, -0.2692703418831384, -0.26891667782058354, -0.2690892026517739, -0.26926228278543035, -0.26914807119155976, -0.26904843185507954, -0.2692559772432911, -0.26914642058304056, -0.26890978392120785, -0.2690348123086446, -0.2691742786264858, -0.26893913867846925, -0.2689232834761748, -0.268993996264919, -0.2691034254433492, -0.26920752500405937, -0.2688068321078556, -0.2689510806069255, -0.26920739187464593, -0.26904803437588476, -0.26890361785871, -0.2690955953736605, -0.2688667453286345, -0.2688281467959974, -0.2690953057997309, -0.2692284139662027, -0.26948823973377406, -0.26872346392906715, -0.2689846335940089, -0.2692718218000051, -0.2689218396676676, -0.2685893048064989, -0.26918653472109055, -0.26915184127372355, -0.269201305598763, -0.26915819799772783, -0.26886433915346686, -0.2687745541908634, -0.269172216216511, -0.2687284175134214, -0.2688515175704006, -0.2690683919074697, -0.2693697206216421, -0.268868614390298, -0.268577230552903, -0.268984192701704, -0.2687180929265978, -0.26867463270893865, -0.2688573189831006, -0.2683495612658145, -0.26874629558370067, -0.26909872396348633, -0.2689441078445241, -0.2693985782713935, -0.26884032640946437, -0.2688146000849536, -0.26879191669068725, -0.26876223242420744, -0.26897748417418765, -0.2692253199115413, -0.26910739673979905, -0.2690900637197042, -0.26906457101464415, -0.2686546483162176, -0.26936079992129425, -0.2692397806842061, -0.2690645876525065, -0.2691211868099612, -0.2685742305187356, -0.26870462114559235, -0.26900718012031427, -0.2687151668988796, -0.2687809898706942]|
2019-04-30 21:10:56,870 | INFO : Best of geration |62| has accuracy of |0.566085| and fitness_score of |-0.268350|
2019-04-30 21:10:57,055 | INFO : Testing generation |63|
2019-04-30 21:14:34,874 | INFO : Fitness scores of this generation: |[-0.27464533434043414, -0.27477426626678325, -0.27464516283696994, -0.2742391394830383, -0.2743400954270521, -0.2744618399167615, -0.27465255499974023, -0.2748146451581105, -0.27469019008289397, -0.2746998328155121, -0.2747424908015317, -0.27464450223256004, -0.274691739927285, -0.2745715208780185, -0.27419749791610293, -0.27457140239400674, -0.27476865979554377, -0.2745691647637734, -0.27444817110137865, -0.2743882542327706, -0.2744934760462657, -0.27469468761268445, -0.274452713243993, -0.2743904169121411, -0.27479256742295965, -0.2749064555638923, -0.27463092046699167, -0.27469184514201056, -0.27491586295212, -0.2746416772839374, -0.2742293684504333, -0.27456317156289534, -0.2748816449327015, -0.27456417813303724, -0.27468392483692256, -0.2747858005650012, -0.27445836340497554, -0.27455165433343004, -0.27437711192245506, -0.27453835321738657, -0.2745894225462612, -0.2746252097453164, -0.2745937467676348, -0.2746059511977751, -0.27466404263292793, -0.2745537808807814, -0.27455568954810106, -0.27473892377837833, -0.2747117673269415, -0.2749450747088521, -0.2745115537592004, -0.27451409516542885, -0.27447631100472886, -0.2743241840281186, -0.27416531024583146, -0.2745988726352168, -0.27484618981195763, -0.27469770483408884, -0.2744640449919136, -0.2744583756605213, -0.2747140026165057, -0.2743674327446296, -0.2744217436035386, -0.2743606637932558, -0.2748831896919065, -0.27513573371467337, -0.27453370501114205, -0.27453132372646205, -0.27439204797115735, -0.2745412362541641, -0.2743695406160787, -0.2744478414543962, -0.2748294092335664, -0.2745365665121152, -0.27430203407013837, -0.27437463057416994, -0.27452919487140875, -0.27446316855967834, -0.27428930971474774, -0.27430305162658997, -0.27492983998582426, -0.27483591132393453, -0.27469361238016754, -0.2748271484026867, -0.27458282260933015, -0.27447316090914264, -0.27434045628570347, -0.2746247857792583, -0.27460442288918835, -0.27472086203803797, -0.2745841011174221, -0.2745053124968457, -0.27465464693980407, -0.2746620634323464, -0.2740982697485427, -0.27439926246560253, -0.2747299914965324, -0.2744336099553425, -0.2745168815754288, -0.2745876563136029]|
2019-04-30 21:14:38,484 | INFO : Best of geration |63| has accuracy of |0.564838| and fitness_score of |-0.274098|
2019-04-30 21:14:38,680 | INFO : Testing generation |64|
2019-04-30 21:17:46,352 | INFO : Fitness scores of this generation: |[-0.2725010374658986, -0.27196821782149766, -0.2727122153106489, -0.2718176465285452, -0.27131226345112447, -0.2725231369859294, -0.2700578936620762, -0.272952307054871, -0.27137774440803025, -0.271496811822841, -0.2709999185643698, -0.27231615303378354, -0.2733540282437676, -0.2729368523547524, -0.2708786307196868, -0.27258574437153965, -0.2717124283313751, -0.2708219454476708, -0.2716180577089912, -0.271951566950271, -0.27304616248921343, -0.2734632398737104, -0.27138872679911163, -0.2716604604532844, -0.2716761174954866, -0.27243401172914006, -0.27157855002503645, -0.27133920098605907, -0.2726976535822216, -0.2732809129514192, -0.27213812784144753, -0.27156616472884226, -0.2726188258120888, -0.2714063654604711, -0.2706709151205264, -0.2722364380171424, -0.2727799537150483, -0.27294543432561974, -0.2710815000690912, -0.2707201198527687, -0.2721386828704884, -0.27172241399162694, -0.27160156855457707, -0.27214592679550775, -0.27231148669594213, -0.27215522480638404, -0.27200677151742736, -0.27151500833661935, -0.27257356345653533, -0.27198007083252856, -0.2715148699911017, -0.2713691819655268, -0.2722962034376044, -0.2726832512177919, -0.2723468658171202, -0.2710496717377713, -0.27284685639958633, -0.27130703863344696, -0.2724499278946927, -0.27186200289349804, -0.2730139031221992, -0.27353394651099255, -0.270646848176655, -0.2711166990430732, -0.27292976269596503, -0.27184216599715383, -0.2710061604255124, -0.27187109605262155, -0.2731140863738562, -0.2720393079676126, -0.27178519383857125, -0.27141467905358263, -0.2725424739875292, -0.2720177013623087, -0.2717170611023903, -0.2722753065981363, -0.2730228758956257, -0.2729788074367925, -0.27167761451319644, -0.27140647047444394, -0.2732932696216985, -0.2715553671121597, -0.2716926526866461, -0.27240319565722815, -0.27298029472953395, -0.2727401171859942, -0.27137511403937087, -0.2710276941719808, -0.27210944004749, -0.2710884492648275, -0.27090703609742617, -0.27195365679891487, -0.27256229323776143, -0.2731252976154026, -0.2709584230655118, -0.27099233693198155, -0.2720489978790283, -0.2714949934106124, -0.27178927236481715, -0.27223650499394064]|
2019-04-30 21:17:50,005 | INFO : Best of geration |64| has accuracy of |0.569825| and fitness_score of |-0.270058|
2019-04-30 21:17:50,201 | INFO : Testing generation |65|
2019-04-30 21:21:22,318 | INFO : Fitness scores of this generation: |[-0.27600031768953476, -0.2761383898453093, -0.2760343302922887, -0.2761264082312034, -0.2761990277289401, -0.2760082477005045, -0.2762722248455845, -0.27604699227160817, -0.275879768179527, -0.27592898880720296, -0.2761828314142158, -0.2763865971023029, -0.2764412080408636, -0.27588787953870897, -0.2761986285507011, -0.27627659545340816, -0.2763604705044527, -0.27612221999316133, -0.2759377058391596, -0.27603089555989935, -0.2760332159565402, -0.27593757749468223, -0.27619767308863824, -0.27615409058100626, -0.2759256567425373, -0.27615338053134375, -0.27603789380135785, -0.27638030955881054, -0.2759993861361248, -0.2758091334339499, -0.2765523712534455, -0.2760398293413767, -0.2761943849121652, -0.2760132128813586, -0.2758505011987906, -0.27605410308215517, -0.27625779451000587, -0.2757739219409349, -0.27594955541542193, -0.2758925950833662, -0.27614903039419897, -0.2761428777371572, -0.27617274192342967, -0.2762875459307342, -0.2759098441253466, -0.276228956372312, -0.27605639687870076, -0.27612877021750576, -0.2761747823707666, -0.27571007829397703, -0.2760855927817823, -0.27634745755711115, -0.2760772284270119, -0.2759318363140033, -0.27604539371196896, -0.27612051049501546, -0.2760783782230055, -0.2760576254730564, -0.27600289687720586, -0.2762178755073698, -0.27599834228866416, -0.27593423961492924, -0.27618990022254447, -0.27605181197705203, -0.27639198328761894, -0.2761333250417942, -0.27597279315255707, -0.2761846013617657, -0.2762578339975919, -0.2759783978162035, -0.2763831409955386, -0.27616328529488043, -0.2763520108294, -0.2761310498692444, -0.2761667962913538, -0.27664681889936965, -0.27603418247905626, -0.2757870200518015, -0.2760710643755423, -0.27604730754363827, -0.27603396887282594, -0.27581573357767547, -0.27615750191552746, -0.2762319037571657, -0.2763188675821967, -0.27620387633301036, -0.27586366437576915, -0.27617991854662005, -0.27651811425986067, -0.2760026602856643, -0.27590365530081934, -0.27599045121520466, -0.2764038868695399, -0.27601210571624135, -0.2764426440138053, -0.27577641419698, -0.27616860912517255, -0.2760959316730185, -0.27616822978895433, -0.27607037316597677]|
2019-04-30 21:21:25,894 | INFO : Best of geration |65| has accuracy of |0.568579| and fitness_score of |-0.275710|
2019-04-30 21:21:26,266 | INFO : Testing generation |66|
2019-04-30 21:24:46,281 | INFO : Fitness scores of this generation: |[-0.2682910425649894, -0.26891479185430994, -0.2690559268379823, -0.2688559744420651, -0.2689201878759014, -0.26886878247226115, -0.26891001527708236, -0.26905951255043203, -0.26890107501703014, -0.2683906682627105, -0.2684992675070215, -0.26861449191858483, -0.26932108267614113, -0.26917884286870597, -0.2690858828752178, -0.2694222917632451, -0.2693108582416588, -0.2685667076972524, -0.26879240621577255, -0.2687199549324201, -0.2693181388325744, -0.26889808759802863, -0.2691750174003934, -0.2690187755503643, -0.26893079692045263, -0.2681184183073859, -0.2678785740019201, -0.26931081482087593, -0.26912143245175646, -0.2688408036953946, -0.26908867924459395, -0.26927184905761326, -0.26868025936704854, -0.2687140276362171, -0.2688326435902762, -0.2683956990239093, -0.2684361937845874, -0.26883839552037153, -0.26926678695667067, -0.26866225024027995, -0.2688354917862185, -0.2687475260651883, -0.2687922970042706, -0.2690937648617159, -0.26833431832992694, -0.26820728461166005, -0.2690191857325725, -0.2686384259671955, -0.26883320463082144, -0.26823280093070206, -0.26869237795017287, -0.26904141166052975, -0.26853396865438045, -0.2691439945655574, -0.2689427456139645, -0.26901139142457964, -0.2690501062788515, -0.268505178746723, -0.26890510402537965, -0.2687756886776259, -0.2695620435498136, -0.2690811673945705, -0.2690783089916057, -0.26864003884959714, -0.2692543773278503, -0.2687183945315807, -0.26812719651958444, -0.2689340350755987, -0.27016663016417086, -0.2689120184916716, -0.26898534912547784, -0.2683599733352952, -0.26880149010191323, -0.26893521075720317, -0.26961705928284024, -0.2683968848215646, -0.2684271432395674, -0.2694090400459711, -0.2690677380641884, -0.26875045125956065, -0.2690555888690937, -0.2685695838396948, -0.2690436505099647, -0.2692540168707624, -0.26864633215216055, -0.2692742659750148, -0.26863813417553173, -0.26917948860388535, -0.2687625873274419, -0.26836809088386165, -0.26872314056961527, -0.2686467551522785, -0.2690467923079073, -0.2689261230775434, -0.2688724473755584, -0.26908730683673143, -0.26900772617559005, -0.2685553810317001, -0.2684756911499596, -0.2689467246879588]|
2019-04-30 21:24:49,803 | INFO : Best of geration |66| has accuracy of |0.564838| and fitness_score of |-0.267879|
2019-04-30 21:24:49,996 | INFO : Testing generation |67|
2019-04-30 21:28:01,443 | INFO : Fitness scores of this generation: |[-0.26575703197359013, -0.26633126875732555, -0.2660899569619351, -0.2664719382807997, -0.266290524200587, -0.2669126429837891, -0.26734244814916464, -0.2679005630719969, -0.2668307154602171, -0.266849181286585, -0.266050170946941, -0.26627819269980946, -0.26668343938524197, -0.26656784770481906, -0.26655265808447043, -0.26711692184978364, -0.2673828589882072, -0.26777202488699753, -0.2664675876540919, -0.2658343733552534, -0.2674045565305945, -0.26696759231794187, -0.2665525460482327, -0.26696846785722966, -0.2678431398889055, -0.2670707730816565, -0.2660480963124928, -0.2660356608024641, -0.26694478423342666, -0.2667242098162031, -0.2661084486625256, -0.2659290062322316, -0.26708045456675883, -0.26789479499901603, -0.26610444789288035, -0.2659673587469795, -0.26589702859649, -0.2666219154367474, -0.26549865301154063, -0.26665649851277085, -0.26780296430888356, -0.26706901619632467, -0.2665309504656532, -0.2655221199921004, -0.2669214402194693, -0.26583695522693646, -0.2662456678626872, -0.266875309810939, -0.26711790037360095, -0.2669162488086176, -0.26566720085704226, -0.26573978078399485, -0.2658347150145424, -0.2669816785692144, -0.2676332495615612, -0.2659872906085072, -0.26848256681915, -0.26811052393435064, -0.26613899040700373, -0.2660525709305247, -0.26577625797266263, -0.2667461238310467, -0.26587370644326197, -0.26608525263545846, -0.26768755955477497, -0.2667534835529874, -0.26642593724338237, -0.2660324810910703, -0.2664803677267878, -0.2668725473320587, -0.26632908823496976, -0.26754930956999007, -0.26751344038285635, -0.267235357474461, -0.26686080342377494, -0.26683514225790356, -0.2664080534589325, -0.2674688193039771, -0.2667523536265409, -0.2665004831842843, -0.2668915410608822, -0.26715271213334746, -0.26621763907735874, -0.2659128748072594, -0.26704904667627505, -0.2676845283426323, -0.26571795173565776, -0.26719346471707256, -0.26674276445178385, -0.2671473706861622, -0.2658482681543574, -0.2655739727027095, -0.267168472950643, -0.26652228465052935, -0.26584407746962624, -0.2670176783229697, -0.2676237175150382, -0.2676933850121703, -0.2654226198578974, -0.2654827742658577]|
2019-04-30 21:28:05,021 | INFO : Best of geration |67| has accuracy of |0.566085| and fitness_score of |-0.265423|
2019-04-30 21:28:05,219 | INFO : Testing generation |68|
2019-04-30 21:31:24,472 | INFO : Fitness scores of this generation: |[-0.2685467371744896, -0.2680523082613945, -0.26718337342365467, -0.2674614296253048, -0.26847894443060033, -0.26742629642362026, -0.26744981187937866, -0.2677997707653402, -0.26856035821473423, -0.2672700792328635, -0.26815567895102854, -0.26802859935742707, -0.2676877768849259, -0.26734043825695764, -0.2679600542828218, -0.26825206931402434, -0.2686689866567726, -0.2675870422885489, -0.266878475471219, -0.2685158042098159, -0.2681831747849486, -0.2676334166482313, -0.26766021171612525, -0.2682242565969033, -0.26790098080884167, -0.2675079931185317, -0.2675338823848696, -0.2678382064313141, -0.2679571683282283, -0.2672630730182377, -0.26749825446463343, -0.2682410164555507, -0.2687077963085317, -0.2668484694032527, -0.2675409200253771, -0.268516936175414, -0.2677252556850661, -0.2676814712139208, -0.2675036242648737, -0.26784898276204494, -0.2692473980695454, -0.2671303976049174, -0.2676005990647558, -0.2679943920961067, -0.2678202395897303, -0.2679199108103318, -0.2674665184385741, -0.26824926202421756, -0.26825914407399165, -0.2683224425831837, -0.26786406460537837, -0.2680625870935063, -0.26736135863101307, -0.26777568544024855, -0.2678810753929081, -0.2677636659634647, -0.26748366633902737, -0.2677058387380927, -0.2681041959506362, -0.26822262030484073, -0.26819915691418433, -0.2671027397931512, -0.26797434291732847, -0.2683765921463717, -0.268028364074764, -0.26726671951030617, -0.2682529900945834, -0.2680063868858921, -0.26798161403901544, -0.2677302351416047, -0.2679296459057438, -0.2685044899138052, -0.269316192260429, -0.2676240845402675, -0.2675004766836985, -0.2678940956717107, -0.26804070705130917, -0.2674483647653416, -0.2673999020635192, -0.26794001537917267, -0.268257690209951, -0.2673033883767342, -0.26757845458254886, -0.2684889411859548, -0.267712234227515, -0.26742902321379575, -0.2679271853459415, -0.26762438166274954, -0.2684238816375163, -0.26787108596581133, -0.2683618316788282, -0.2684992238434393, -0.26763574572196647, -0.2673736277800887, -0.26787814702560653, -0.26902131024581283, -0.2675829061265312, -0.26766886438674004, -0.2677753911311947, -0.2678875713206049]|
2019-04-30 21:31:28,135 | INFO : Best of geration |68| has accuracy of |0.559850| and fitness_score of |-0.266848|
2019-04-30 21:31:28,333 | INFO : Testing generation |69|
2019-04-30 21:34:51,666 | INFO : Fitness scores of this generation: |[-0.27877820116317203, -0.2780520882792102, -0.2782878384797159, -0.2784513094111117, -0.2786394599490537, -0.2786251407183573, -0.2789800851109499, -0.2789012271130156, -0.27851768740993776, -0.27854867199223915, -0.27876626003288224, -0.27846206633630627, -0.2787435304261967, -0.2786840312852117, -0.278868319816932, -0.2784568568189701, -0.27864042099364505, -0.2780733767026913, -0.2789334811850222, -0.2787770458324227, -0.2783813042733484, -0.27904958344862135, -0.2786418044995405, -0.2783044052516629, -0.2786505111498747, -0.2792259765777759, -0.27887727939440105, -0.27828963190138695, -0.278121249707873, -0.27868279563095755, -0.2781791012801096, -0.2785843831693341, -0.2786219421617999, -0.2788263702463961, -0.27882845929996697, -0.27875892248696194, -0.27842619572570937, -0.2789940879016579, -0.2780607144632739, -0.27827629057947034, -0.27831341160271694, -0.2785453304737628, -0.279099251499433, -0.27863519188172803, -0.278181038359682, -0.27876111029864786, -0.27846119005879955, -0.27823449792619237, -0.278651528194279, -0.27911857059615813, -0.27885164258008943, -0.2782052692717421, -0.2783747970344064, -0.27911009601133313, -0.27861415708136417, -0.2780453551672176, -0.27870329932538335, -0.27834752061052953, -0.2788191307982999, -0.2779727084551029, -0.2786736252600561, -0.27823935582966147, -0.2782596776050008, -0.27830353223991966, -0.27836258450668017, -0.27880333085616904, -0.27873260375268444, -0.2784944974555227, -0.2783477837097145, -0.278636117431218, -0.27854689696948687, -0.2786054856584458, -0.2791125998168648, -0.2785814071129896, -0.2785846567796376, -0.278894247676798, -0.27830021997054893, -0.27879050324063104, -0.2781838617281999, -0.27840727803236, -0.278887495844664, -0.2785238934491209, -0.27880416972908434, -0.27828100869755545, -0.2785906626971182, -0.2789183628416347, -0.27788888733544037, -0.278338436309449, -0.2782998610756354, -0.2784104637578576, -0.2792377379840006, -0.27838877141475676, -0.2784710186684203, -0.2784492132549514, -0.279163909922103, -0.2784918108386194, -0.27905284537526664, -0.2785021712501606, -0.27929181449427576, -0.27878393702164384]|
2019-04-30 21:34:55,277 | INFO : Best of geration |69| has accuracy of |0.562344| and fitness_score of |-0.277889|
2019-04-30 21:34:55,488 | INFO : Testing generation |70|
2019-04-30 21:38:15,063 | INFO : Fitness scores of this generation: |[-0.25441729252258044, -0.25407122309957997, -0.2539515808152923, -0.254230748521191, -0.25453056167829097, -0.25380662959039113, -0.2545597551339702, -0.25448002488042915, -0.25467291555664895, -0.2540317125152049, -0.25414380416824195, -0.2544924615378556, -0.2542245984316638, -0.2538599163580859, -0.2540582160123087, -0.2543184354925232, -0.2544674024727333, -0.25469996563695596, -0.2543476981441244, -0.25401518932793343, -0.2545341495813183, -0.25409082357994434, -0.2543630928853542, -0.2549922759278437, -0.25441214827339304, -0.2545509972216421, -0.2544413633034662, -0.2542918237168372, -0.2535857961753781, -0.2540725266522045, -0.25465838608734104, -0.2543830406369214, -0.254538926252584, -0.2542841627021854, -0.25407064920156763, -0.2543681966406958, -0.2543222388524688, -0.254311489446588, -0.25391846072425045, -0.25426324946061374, -0.2545906761436937, -0.2541422205311911, -0.25425788432503205, -0.25458910896249987, -0.2544315955803444, -0.2540744587085412, -0.25412823544459395, -0.2548869305303736, -0.2547088714606498, -0.25428418272188347, -0.25423046755178397, -0.2542799221378651, -0.25409473624696316, -0.2539276916467933, -0.2540692811649454, -0.25453164520558347, -0.2548970745855503, -0.25453673420327433, -0.2543712384149695, -0.254274933071236, -0.25438928039651815, -0.25413294122173163, -0.25441643459360636, -0.25469006119627824, -0.2543403237197028, -0.2543234149439568, -0.2540415674926381, -0.2539771054998447, -0.2545070827581335, -0.2539195343254083, -0.25386506419503285, -0.25467740685752266, -0.2540955994858214, -0.2544325509050302, -0.25411280312756285, -0.25362647656070286, -0.25490565322949454, -0.25419875596729175, -0.2536911985464693, -0.2545120679499824, -0.2542613474936202, -0.25471055471782317, -0.25385728392325474, -0.2539877954924279, -0.25401946679834, -0.25410757523574184, -0.254296985474291, -0.25451067082858964, -0.2541453623082818, -0.2542769731191341, -0.2542486995171582, -0.25415921505438954, -0.2544798343464804, -0.2538759256346842, -0.2540989939846924, -0.2545744829107058, -0.25412622417052716, -0.25436865180778656, -0.2541541918322898, -0.2545096484845561]|
2019-04-30 21:38:18,624 | INFO : Best of geration |70| has accuracy of |0.563591| and fitness_score of |-0.253586|
2019-04-30 21:38:19,011 | INFO : Testing generation |71|
2019-04-30 21:41:34,330 | INFO : Fitness scores of this generation: |[-0.2626578134056684, -0.2628337858227996, -0.2629702954678922, -0.2641203082628078, -0.2632891243911004, -0.26335215799443357, -0.2639039290649397, -0.26344393899848867, -0.2636927671126417, -0.2646806067443109, -0.26327912595357983, -0.2622186367307697, -0.2633369440699483, -0.2631973851237211, -0.2634965774309528, -0.26276327033300656, -0.26375558574994407, -0.2632786464449522, -0.2617844489512143, -0.26277182817727596, -0.26343828963266835, -0.26425976699536985, -0.26295159770561766, -0.26294294644046473, -0.26495618311403035, -0.2629439140359561, -0.2626972405491648, -0.2624537150602083, -0.26269344558586943, -0.26364277825430704, -0.2639681976926219, -0.2641394031477404, -0.2632904174897048, -0.263336432436565, -0.26258805382090644, -0.26278451946941583, -0.2641987848389256, -0.2637194245248228, -0.26452492137213013, -0.26307733393198734, -0.2637273186498934, -0.2630617106283033, -0.2641641791339393, -0.263073220473152, -0.26405084678181656, -0.2643645516923956, -0.26281142892601256, -0.2634899055098628, -0.26412962825448666, -0.2624201222717225, -0.26318509112875743, -0.26304571497010754, -0.26388871371746064, -0.26342034909102297, -0.2647467386615169, -0.2626393473900116, -0.26306530333854056, -0.2630991530042511, -0.2637873799816982, -0.26420295123044435, -0.2636318486016076, -0.26304779201745987, -0.26363280847802895, -0.26385465507303274, -0.2628010535025382, -0.2630948164173075, -0.26293685147622686, -0.2643693310988916, -0.2645489412116575, -0.26425500509438216, -0.2636438576219318, -0.26173060018200056, -0.26440403802437823, -0.26318033144280717, -0.2632365013565029, -0.26267123055887653, -0.2624154262714558, -0.2639046796404564, -0.26327001412172574, -0.26382694421587766, -0.2632387028084145, -0.2640382295927486, -0.26271520807399407, -0.26275543441643584, -0.2620793997972935, -0.26417828286821776, -0.2628599162977021, -0.26473387726792347, -0.2635340514215263, -0.2627347147545299, -0.2645137486694095, -0.2616704330788002, -0.26342068059487384, -0.2635056231204454, -0.26414395968119303, -0.26159516822647405, -0.26383516726730105, -0.26252285150794297, -0.26295635839840314, -0.2622148650186556]|
2019-04-30 21:41:37,943 | INFO : Best of geration |71| has accuracy of |0.568579| and fitness_score of |-0.261595|
2019-04-30 21:41:38,145 | INFO : Testing generation |72|
2019-04-30 21:45:08,462 | INFO : Fitness scores of this generation: |[-0.26860934907668516, -0.26854515835991377, -0.2684948360275107, -0.26822491637186, -0.26839117693840064, -0.2684656661330608, -0.2686431443438544, -0.2691176615176145, -0.2681047018639177, -0.26841554833216624, -0.268464644662818, -0.2684580666933492, -0.26847941421887334, -0.26856080832624296, -0.26853383007889603, -0.2683891552059274, -0.2687051480537967, -0.2685626586191138, -0.2688110801908705, -0.26843186133481256, -0.2686830856864564, -0.26866210802126, -0.2687346622434973, -0.26844327016706354, -0.2689428092443455, -0.26912603351935654, -0.2683766502560231, -0.2683483676451166, -0.2686310272162769, -0.26841699928916685, -0.268947727575201, -0.26826025048891705, -0.26866233449058924, -0.2690044124311174, -0.26887966043245026, -0.26847495112502784, -0.2686462031775399, -0.2686156537928428, -0.2683414147066617, -0.26806220816372084, -0.2687512294808675, -0.26877232209632274, -0.2686142036527918, -0.2684504149252908, -0.26858351756519044, -0.26855532378394004, -0.2688368936096541, -0.2684186770204912, -0.26856599854882696, -0.2683325831870935, -0.2686099543056467, -0.26869780057224263, -0.2684871594677543, -0.2686979439741338, -0.26872122947845545, -0.26858878976594636, -0.2685089683192864, -0.26910467132141713, -0.26860737651368677, -0.2682292307264101, -0.2687595798715688, -0.26865181490256074, -0.26851963735463324, -0.2684913302788086, -0.2686231117477717, -0.26876776067442015, -0.2686845591259107, -0.2685725452999274, -0.2690614879741306, -0.26852089155748576, -0.2684274494146917, -0.26872490825708845, -0.2687402957320562, -0.26861772168841624, -0.2684738350411256, -0.26846864438283513, -0.26909374447855333, -0.2686424611561131, -0.26931540837936235, -0.26815528791855303, -0.26867373020807556, -0.2686028173574579, -0.2684686232075008, -0.2685039089720326, -0.2684917452129704, -0.2687904839213306, -0.2686111984872504, -0.26812527969218136, -0.268624528327532, -0.2689163652384839, -0.26835325742630584, -0.26854243348434303, -0.2687241465223637, -0.26882800172295485, -0.26861448277724764, -0.26891663984248515, -0.26846506965090655, -0.2690797132271075, -0.2683203882859116, -0.2684702754499968]|
2019-04-30 21:45:11,991 | INFO : Best of geration |72| has accuracy of |0.567332| and fitness_score of |-0.268062|
2019-04-30 21:45:12,183 | INFO : Testing generation |73|
2019-04-30 21:48:25,524 | INFO : Fitness scores of this generation: |[-0.2576814141802505, -0.25769328528630464, -0.2581250449996784, -0.25706662649025946, -0.25743923030016613, -0.25763690096834685, -0.25760090442522904, -0.2573955004810068, -0.2573298292047895, -0.25734649562031214, -0.257631860901973, -0.257648029789359, -0.25749287850286334, -0.25714409884621514, -0.25713185356560414, -0.2577665517057134, -0.2575803798888115, -0.25815263878104633, -0.257617923135894, -0.25773717167431104, -0.2576452633537398, -0.2569618666037948, -0.2571208387125733, -0.2575708480822284, -0.2577881601873351, -0.2583482923073759, -0.25787863458348687, -0.2573380751234378, -0.2585823635564991, -0.25713439812933253, -0.2570399594453215, -0.25717566977493117, -0.2576421520278498, -0.2578092751632195, -0.2572318328609252, -0.257734291758274, -0.2583809635451479, -0.25700550759496865, -0.25711902555512506, -0.2574775780880622, -0.25756448153825384, -0.2579579667201559, -0.2575836273668246, -0.2578929598711751, -0.25840157599536917, -0.25718783326675554, -0.2570587177827558, -0.2577041287302727, -0.2575420086369193, -0.25793965029814003, -0.25795796937128274, -0.2579551651190151, -0.2584106522652269, -0.2569703273551352, -0.2574772072350321, -0.25806436210809797, -0.25802701937152805, -0.25754644071153826, -0.2583445157314858, -0.2578784695127503, -0.2575441467859506, -0.2571874982496468, -0.2576790224067516, -0.25746898633448867, -0.25713294976084267, -0.257440448355821, -0.25787787261306633, -0.2582374152656957, -0.2573865809933052, -0.2576321800123207, -0.25746799914017776, -0.2575343893593318, -0.2577395541841023, -0.256984088379425, -0.25718889082258223, -0.2577466343992327, -0.2581490559507245, -0.25716306534281536, -0.25790876613316605, -0.25779516638422306, -0.25742922857373285, -0.2571343428518143, -0.257659902784722, -0.2581375904366039, -0.2576993596578181, -0.25770555531076617, -0.25714361899225746, -0.25769161059690643, -0.25821370105801916, -0.2580084550234438, -0.25838212056394005, -0.25764328372380974, -0.25805200097019687, -0.2573442822341295, -0.2572206300216706, -0.2575175507424555, -0.25764956168358066, -0.25771308572989543, -0.2572813569768075, -0.25846389969068073]|
2019-04-30 21:48:29,096 | INFO : Best of geration |73| has accuracy of |0.562344| and fitness_score of |-0.256962|
2019-04-30 21:48:29,293 | INFO : Testing generation |74|
2019-04-30 21:51:44,679 | INFO : Fitness scores of this generation: |[-0.2647298740442185, -0.26475063957931366, -0.26414502494256287, -0.2647153825553901, -0.26482643597923655, -0.2645536419004202, -0.26457410804269943, -0.26429511918960247, -0.2647543776889934, -0.26449844778022347, -0.2646641404751469, -0.264020518235424, -0.264626340885811, -0.26482954665141945, -0.2650309244499487, -0.26465453930637417, -0.26451066667761874, -0.2649114936699762, -0.2644418775487472, -0.26477327811367374, -0.2646637411568971, -0.26482704511898403, -0.26494132245288177, -0.26492886327426224, -0.26478123933295994, -0.26458037058439327, -0.26375004846383543, -0.26485940567491684, -0.2647376714602989, -0.26502881489474983, -0.264817802947672, -0.26454095372601466, -0.2647640262456501, -0.26446933874531703, -0.264225873603102, -0.2650226757259053, -0.2649848221198601, -0.2645913418382406, -0.26499254974153114, -0.2649269142352483, -0.26461013795479255, -0.2639024980256663, -0.2640788469134885, -0.2644500627237208, -0.26364484829280305, -0.26472819432177963, -0.26443246582194285, -0.26496157104916435, -0.26446820592836423, -0.26451404025668607, -0.264842318425722, -0.26452193666687784, -0.2648708779255257, -0.2647233372006346, -0.264639952165239, -0.26455647706547203, -0.2646666492390282, -0.2646715287666987, -0.2645090217428172, -0.2649359958903754, -0.2643517513814218, -0.2646692290573436, -0.2648274766500382, -0.2651364234111765, -0.2644488999948782, -0.26493579872390804, -0.26450560844558124, -0.26440851899850015, -0.2646280433434774, -0.26487160326146025, -0.2644913543892257, -0.26469242676873417, -0.26487379981314435, -0.264905112412046, -0.2644679305855842, -0.26504466611453714, -0.264230196692926, -0.2643162910004749, -0.26467952855369625, -0.26529499756939273, -0.26437872867373857, -0.26458991143633337, -0.2642505002372405, -0.26418143806650357, -0.26428816637352986, -0.26447044017122073, -0.2648306579383857, -0.26469205566408005, -0.26489301458658543, -0.26435654824051785, -0.26478557529694896, -0.2641960123882574, -0.2638518904500148, -0.26479646399178924, -0.2649198178311481, -0.2648889931904919, -0.26487700482282567, -0.26463815219262066, -0.26415078407701326, -0.26369681658551974]|
2019-04-30 21:51:48,224 | INFO : Best of geration |74| has accuracy of |0.563591| and fitness_score of |-0.263645|
2019-04-30 21:51:48,414 | INFO : Testing generation |75|
2019-04-30 21:55:14,499 | INFO : Fitness scores of this generation: |[-0.27443726612254976, -0.27469809298636394, -0.2745371863245964, -0.2747549257182982, -0.27426398163079285, -0.27480865141842514, -0.2748910353344399, -0.275200793100521, -0.2747835407499224, -0.2746137193753384, -0.27426193544524724, -0.27493797274073584, -0.2749942898051813, -0.273911718185991, -0.2747549578140024, -0.27491934086428954, -0.2748418375034817, -0.27451801744755355, -0.2744582958635874, -0.27459673798875883, -0.2744795214966871, -0.2748084390128497, -0.27495105520356444, -0.27483835886232555, -0.2747784536448307, -0.27510215449729003, -0.274409610114526, -0.27474070283351465, -0.27479828166542575, -0.27495648176409304, -0.27503766837762667, -0.27456154943211003, -0.27445228680735456, -0.2748678634758107, -0.27437589897890574, -0.27434835424646736, -0.2745824241312221, -0.27483123856363817, -0.27465849416330457, -0.2744240737578366, -0.27467439012834804, -0.27473969958955424, -0.27467964944662526, -0.27401614126865753, -0.27458081361837683, -0.2750856322236359, -0.27506749466992914, -0.2746634236595128, -0.2744410686660558, -0.27479294197983106, -0.27434172151843084, -0.2747684356814716, -0.2746634333161637, -0.2745201901998371, -0.2743699991842732, -0.2750340621045325, -0.2748424780089408, -0.2747418499726336, -0.2745724587934092, -0.27479938919423147, -0.2749117886647582, -0.2747261289507151, -0.27509630867862145, -0.2747695311903954, -0.27458835133584214, -0.27467723801964894, -0.2751294611953199, -0.27467423770576715, -0.27471907327417283, -0.27483516634674743, -0.2748142010299489, -0.2749804064747877, -0.27441286265384407, -0.2746140097035095, -0.2748914795694873, -0.27463898726855407, -0.2748355298070237, -0.27513547069975175, -0.27484763705870136, -0.27456827494315805, -0.2745431669289246, -0.2747895646141842, -0.27420888339402155, -0.2745035591069609, -0.2749827762483619, -0.2747887964302208, -0.2748916276032105, -0.27441198972519487, -0.27456981735304, -0.27493419251404705, -0.27493577379500495, -0.27466878993436694, -0.27495510859880595, -0.2745461464335676, -0.2747480464167893, -0.2747087944240775, -0.2750348966452293, -0.27476257852977143, -0.2739438081800472, -0.2746647300198674]|
2019-04-30 21:55:18,187 | INFO : Best of geration |75| has accuracy of |0.563591| and fitness_score of |-0.273912|
2019-04-30 21:55:18,378 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 21:55:18,650 | INFO : Testing generation |76|
2019-04-30 21:58:41,158 | INFO : Fitness scores of this generation: |[-0.27855399141818177, -0.27950138301203103, -0.2787919301034767, -0.2784965876694564, -0.2795434273206271, -0.27911824746664626, -0.2793572776483529, -0.28106584419042635, -0.2789465081997407, -0.2797311667775933, -0.28116221742315606, -0.27925019905025705, -0.2787741340232856, -0.2785455158232769, -0.2794402688741684, -0.27941821335436223, -0.2781273459558522, -0.279853995793905, -0.2803793192018956, -0.2795247126084108, -0.27871616441251595, -0.2783406998539146, -0.27923993531600894, -0.2797450280779011, -0.27974565207084895, -0.2795572578361183, -0.279743886310539, -0.2792770194483327, -0.2785868099430105, -0.2788867625124725, -0.2796884466221918, -0.27966771397616835, -0.2786353275780276, -0.2795802905009343, -0.279290626228074, -0.27899906759733684, -0.2786119314995441, -0.27960528089449954, -0.27960775514225383, -0.27976176606648134, -0.2787073496387992, -0.27960627714356223, -0.27983909244939087, -0.27795140548940106, -0.27937412076380663, -0.2790540174031869, -0.279415264125272, -0.27927407382172104, -0.2786672274708311, -0.2796094441588545, -0.28197001482977535, -0.27925277542281934, -0.2790106094473011, -0.2789610411439623, -0.27883434148280173, -0.2791522706384624, -0.2789040466586312, -0.2801066552981352, -0.2805063589151962, -0.27963544275516117, -0.27860622058857926, -0.279053128409735, -0.279897031657425, -0.27888132287905765, -0.27874025986308143, -0.2801387409369151, -0.27953016419550436, -0.27975679011571974, -0.279200017725155, -0.279139926199948, -0.278857613439525, -0.2788722759638077, -0.2786133488019307, -0.28017157834746464, -0.27923116590077185, -0.27941564931755974, -0.2793277641246607, -0.27923895511435065, -0.2797905108976714, -0.27896188314144427, -0.2791851940718326, -0.2793275576917243, -0.28071600711826006, -0.2796520329875387, -0.278841882562026, -0.27847226657273566, -0.279040494790444, -0.2793029547829331, -0.27962228432024794, -0.28088327390807016, -0.2788339057466486, -0.27979143062135675, -0.27824084307902897, -0.2785908523605857, -0.27988171599286815, -0.2797660253969304, -0.27947641063085843, -0.278919497470716, -0.27842278674845294, -0.27979264449287244]|
2019-04-30 21:58:44,855 | INFO : Best of geration |76| has accuracy of |0.563591| and fitness_score of |-0.277951|
2019-04-30 21:58:45,056 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.562500|
2019-04-30 21:58:45,059 | INFO : Testing generation |77|
2019-04-30 22:02:10,988 | INFO : Fitness scores of this generation: |[-0.26899877563118935, -0.26922462639081607, -0.2695132017463118, -0.26923802120426854, -0.26880942755839327, -0.26949649605040366, -0.26917433276117503, -0.2691844471904275, -0.26901518225997356, -0.269297373388986, -0.2692286978465515, -0.2692291939651573, -0.2690369095857982, -0.2689884519511527, -0.26943805207917976, -0.26900535473947995, -0.26917747739743403, -0.2692838479038123, -0.2695534380951098, -0.26913057365915277, -0.2698249675660998, -0.26939949769895155, -0.26909356787391414, -0.2693819911679724, -0.26872359384055977, -0.26895275126610485, -0.26918675672713216, -0.2692076278093097, -0.26902616920543243, -0.26883408206177284, -0.2692275682443773, -0.2692370445027456, -0.26910260952190385, -0.26939087623095775, -0.26943592354655266, -0.2691234352046644, -0.2694669548872408, -0.26921469016143906, -0.26967818685039713, -0.2695929290174128, -0.268741502600548, -0.2690308051040539, -0.26931857907182566, -0.26932475691313273, -0.2690555958056843, -0.26900116288727455, -0.26944185124075676, -0.26928286919636385, -0.2685851543568648, -0.26949901993458086, -0.2693285223424107, -0.26930396934295747, -0.2693186520629532, -0.2688453125224991, -0.269442655146122, -0.2693131407006429, -0.2687676853121637, -0.269096117364345, -0.2691938601188607, -0.2693669838974109, -0.26878646077526797, -0.2692530245857907, -0.2694098868376606, -0.2692737787716336, -0.2688214634186946, -0.2691733539923207, -0.26919788146739476, -0.269186225852796, -0.26927154719993307, -0.2692118572828534, -0.2688590565307455, -0.2689743173810152, -0.26901302896030654, -0.26891920916163004, -0.2693783953212775, -0.2692978103327882, -0.26912607019255447, -0.2688498453615786, -0.26907956194910376, -0.2692477282668863, -0.26883334738130754, -0.2691086530276052, -0.2695896374982792, -0.26901229405468635, -0.2695266078789156, -0.26907652379064767, -0.26932477373834496, -0.2690182448579715, -0.2685865962693652, -0.26895663406249587, -0.26953958331064864, -0.2688571379243673, -0.26874896231015305, -0.2690185203247673, -0.26908423727030284, -0.2695698091698872, -0.26876214212113686, -0.2691376623544064, -0.26912149009141295, -0.2691770500124811]|
2019-04-30 22:02:14,672 | INFO : Best of geration |77| has accuracy of |0.562344| and fitness_score of |-0.268585|
2019-04-30 22:02:14,893 | INFO : Testing generation |78|
2019-04-30 22:05:52,654 | INFO : Fitness scores of this generation: |[-0.27234296645123535, -0.272641532662456, -0.2729150976140075, -0.2727040063749793, -0.2733206471051175, -0.2728692243069959, -0.27277372461155147, -0.2729900368883566, -0.2724650025367737, -0.27270973339402604, -0.2726857202184712, -0.2729749151534098, -0.27275690429049765, -0.2726292200980742, -0.2729674093562401, -0.2726090151108116, -0.2727843343480233, -0.2729695137293061, -0.27301026143910695, -0.2726405991367036, -0.2726927043470137, -0.27290230397066456, -0.2728803242642455, -0.27260812996355305, -0.27248683787562367, -0.27282554719345703, -0.27285201271618803, -0.27258969296706964, -0.27293515790459566, -0.2727523244963102, -0.2732609958005098, -0.27261577797082304, -0.2725189914732623, -0.27307985300666715, -0.2727164366493927, -0.27264963432323713, -0.272972651639599, -0.2728127361806624, -0.27293238647144996, -0.2731082821550545, -0.2726630354951496, -0.27305329811353624, -0.2731453892643466, -0.27255908678645735, -0.2724931761531011, -0.2728317765370468, -0.2728244495172442, -0.2727404986788159, -0.272720720431556, -0.273128881264318, -0.2732091205617401, -0.2731177053568553, -0.2731422270733886, -0.27260961309532444, -0.27292167825932884, -0.2733450720280957, -0.27251818483592544, -0.27296442722250347, -0.2729345061662007, -0.27318334184541293, -0.27293105776324594, -0.27274711373393523, -0.27295025327454314, -0.27275024195390246, -0.27266336258935053, -0.27345226652051774, -0.27278521181615584, -0.27320910012063804, -0.2725634881689505, -0.27247013383847807, -0.27300213034167614, -0.27311258813354866, -0.27247300769653787, -0.27274317097810147, -0.27315914872233854, -0.2727950389034178, -0.27251859468185097, -0.27277329845662496, -0.27307119124506146, -0.27319276541288645, -0.27235640879789014, -0.27277140134682687, -0.27317920118753164, -0.27281866366146534, -0.272663651653594, -0.272697223658942, -0.27310573155163254, -0.27323806922128596, -0.2727597814396115, -0.2730153122928245, -0.2724810294578412, -0.2727309009048836, -0.27248801080727136, -0.2726100682846608, -0.2726344827494007, -0.27247341501932204, -0.272402090894664, -0.2727153061357744, -0.2731180630578585, -0.2727871344133389]|
2019-04-30 22:05:56,380 | INFO : Best of geration |78| has accuracy of |0.562344| and fitness_score of |-0.272343|
2019-04-30 22:05:56,589 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 22:05:56,593 | INFO : Testing generation |79|
2019-04-30 22:09:45,824 | INFO : Fitness scores of this generation: |[-0.2708457267476473, -0.2708355007845109, -0.27098450883997893, -0.27085227431487463, -0.2716028788928899, -0.2709354906523936, -0.27090862024226575, -0.2712211172056102, -0.27073645315621675, -0.270968675148211, -0.27125687385493774, -0.27045372251537514, -0.2712021624783855, -0.27112571848603295, -0.27090208086842615, -0.2708021632104002, -0.2710156192232115, -0.2712903998919724, -0.27116777040326945, -0.27100921091356306, -0.2715111702590551, -0.2715220643734524, -0.2709169550784765, -0.2709049098081099, -0.2703885776098641, -0.27073621578807194, -0.2714730855471418, -0.2709277277776722, -0.2714048507290424, -0.2710013709219561, -0.2708435670396713, -0.27066743750526584, -0.27081420720523935, -0.27091555971153314, -0.27105455996406763, -0.27107372236215815, -0.27141445022815425, -0.27172740314002003, -0.2709169039673435, -0.2706877031145019, -0.2707449744745324, -0.27151745212642325, -0.27132889814487277, -0.27065582277791617, -0.2713067695453448, -0.2715411324275344, -0.27083271288679683, -0.2709386784954734, -0.2708096831346687, -0.2707241972137434, -0.27134904928677994, -0.27064644251945397, -0.2710554568849181, -0.27092391360562373, -0.2708716228349211, -0.2708517330710862, -0.27108403323040026, -0.2710309929147828, -0.2714391550028552, -0.2711452443193933, -0.2710686545417628, -0.2717357284923094, -0.2709147859315978, -0.27091536317527115, -0.2708051257803361, -0.27105883551688353, -0.2711928474368886, -0.2711755392654665, -0.27141700667016816, -0.2710937618428967, -0.27139710179508514, -0.2706701001762023, -0.27068624078987347, -0.27099331797729925, -0.2709249061009915, -0.2709969387944011, -0.2713163557039407, -0.27098772629030043, -0.27080497664867453, -0.2707457192924928, -0.2712595152920947, -0.27085031684551836, -0.27100170580041855, -0.27108079714237265, -0.270744128529759, -0.2713851382184965, -0.27101189736933384, -0.27080378758703233, -0.27066678746649386, -0.27076130433145007, -0.2710622200012687, -0.2710395823762736, -0.2707934766137468, -0.27109429459317336, -0.2710036925318738, -0.2708223074644594, -0.27124498404885106, -0.27101746393594617, -0.2712358068393436, -0.271083765684778]|
2019-04-30 22:09:49,529 | INFO : Best of geration |79| has accuracy of |0.561097| and fitness_score of |-0.270389|
2019-04-30 22:09:49,729 | INFO : Testing generation |80|
2019-04-30 22:13:17,468 | INFO : Fitness scores of this generation: |[-0.28624616128317315, -0.28648892600343834, -0.28632316631930216, -0.28688924838297114, -0.2863851000803598, -0.2867903303100456, -0.2861001578547199, -0.2868597131245625, -0.2866964706722994, -0.2864896080323628, -0.2863865991741974, -0.2876165352808022, -0.2859432683413073, -0.28646612528318205, -0.28681300552735417, -0.2869209486135044, -0.28651027436952414, -0.28633544806923183, -0.28663148411682676, -0.2862001111418564, -0.2867969838173493, -0.28659715091589816, -0.28653300067652826, -0.28722078959393943, -0.2867837580649749, -0.28637705035276295, -0.28601458349398207, -0.2866592810761114, -0.28650587639823466, -0.286429368561099, -0.2864406292112718, -0.2860433513888661, -0.2865775868018962, -0.2863834992699001, -0.28615593854685006, -0.2865171413984358, -0.2866099874795594, -0.28580570753131596, -0.2865613442585335, -0.2864770845781942, -0.2871020038305602, -0.28640238311349975, -0.28628748359147066, -0.28660843720347245, -0.28667192605341446, -0.2861183886850102, -0.28654525285552007, -0.2867594969846447, -0.2866685073012891, -0.28643655110590205, -0.28618368316696297, -0.28714128727128047, -0.28663806557100013, -0.28669071456660394, -0.28625850064784103, -0.28732112799742204, -0.28696284355213925, -0.28675456761573415, -0.2856572849317367, -0.28634541754767023, -0.28641867688538863, -0.28611524921396503, -0.2866356667154324, -0.2863778240562226, -0.28695379021745293, -0.28677448394320765, -0.28618227718224437, -0.28683088446811117, -0.28656472344391093, -0.28608386940467434, -0.2860652659990773, -0.28681223557232327, -0.2863559249024954, -0.2869011729215243, -0.2864618742410441, -0.2858022726285532, -0.28637742121582443, -0.2861207985544797, -0.28608249701698374, -0.28597110116518804, -0.2868185144218599, -0.28607920969124906, -0.286743070953381, -0.2864832178406093, -0.2862906376397388, -0.2862011251149711, -0.28622901749721963, -0.28635253308352476, -0.28619077565692225, -0.28638598656062014, -0.28648434394264816, -0.28676882992434943, -0.2865034952667189, -0.2856944068248228, -0.2864479268004435, -0.2870985405600589, -0.2870255406969082, -0.2863982716887634, -0.2855663393039881, -0.2864462268648681]|
2019-04-30 22:13:21,270 | INFO : Best of geration |80| has accuracy of |0.563591| and fitness_score of |-0.285566|
2019-04-30 22:13:21,688 | INFO : Testing generation |81|
2019-04-30 22:18:23,663 | INFO : Fitness scores of this generation: |[-0.27511671981300795, -0.2750381553602595, -0.2751294135429546, -0.27484187221950745, -0.27508025692163546, -0.2746468976890229, -0.2749385875075144, -0.27521122085906913, -0.2747802038006815, -0.2751232940935312, -0.2751169787078125, -0.27516116340150953, -0.27491021123949183, -0.27498804784480113, -0.27497513477505725, -0.2751300154733752, -0.275300169611848, -0.2749469666525736, -0.27510151353840295, -0.27471828316536023, -0.27495721192903605, -0.2754259062278188, -0.27481272191485906, -0.2751500239082762, -0.2751280539333526, -0.27499045281572615, -0.27454946754244686, -0.2746361218988601, -0.2751746451572275, -0.27476742923965813, -0.2749926122043352, -0.2750000932933312, -0.27483288221509883, -0.2750912942396806, -0.27458921647083606, -0.27527219014424326, -0.2750297927932937, -0.27467172097889125, -0.27495044168279764, -0.275304675734761, -0.27504902226374156, -0.2748009156792444, -0.27508949156692447, -0.27476204308034874, -0.274566802859071, -0.2751882202180446, -0.27480075306094526, -0.2749272350438844, -0.2747398447484396, -0.27545437537435247, -0.2748786875020128, -0.27464791042371656, -0.27529759863933945, -0.27501718661686275, -0.2749169003604548, -0.27500791376988015, -0.27488252711790334, -0.27504895053811274, -0.2748705331982653, -0.2749505225285844, -0.27520123594840445, -0.275283825067989, -0.27521769396467954, -0.27508601297689683, -0.2749714554974263, -0.27481564961793037, -0.2746826665658, -0.2748352876567417, -0.2750522991511805, -0.2749862825941122, -0.27522988640956086, -0.2756020205365705, -0.27499471323864366, -0.2748634865082734, -0.27537447727503217, -0.27514081941834795, -0.27500766443653146, -0.2748015232141491, -0.27511438461129073, -0.2751536560405748, -0.27500206389467197, -0.27504487234183383, -0.27472141560126623, -0.2751687173782191, -0.27516249270865145, -0.27474902042161087, -0.2751807993515105, -0.27537396500164757, -0.27504303089369675, -0.2750273824091137, -0.27450316063213914, -0.27489601627271715, -0.27464444994161535, -0.2747598252344696, -0.2750572468956743, -0.2750623034201158, -0.2747224070506882, -0.2749788661993974, -0.27478421112450774, -0.27490761874635267]|
2019-04-30 22:18:31,714 | INFO : Best of geration |81| has accuracy of |0.566085| and fitness_score of |-0.274503|
2019-04-30 22:18:32,282 | INFO : Testing generation |82|
2019-04-30 22:32:18,058 | INFO : Fitness scores of this generation: |[-0.2574925853056219, -0.2577890196678099, -0.25841430686312733, -0.25773178386103557, -0.2582936724216477, -0.2581360706354032, -0.2579178245337198, -0.25832731619842697, -0.2580424151319899, -0.25765399541452083, -0.2587997784244267, -0.2579802665707201, -0.2581500215329007, -0.2578448569579735, -0.25836448789617344, -0.25761404873077487, -0.2577512362104021, -0.2580780978098877, -0.25789839293229155, -0.25815897262388743, -0.2579679319010768, -0.2580786664901702, -0.25787781247975716, -0.25790198354370264, -0.25816462061060874, -0.2585064093569644, -0.25881205016001047, -0.258009323632035, -0.25795733429268203, -0.258398301757324, -0.25746439608468674, -0.25789171518194576, -0.2587306401222863, -0.25775751081734327, -0.25781861020693664, -0.2584798419670448, -0.2581795855585171, -0.2583988891960165, -0.2583478807753373, -0.25792774720477796, -0.2583859786188245, -0.25792505403305593, -0.25827695136986245, -0.25831459259629574, -0.2580067198266775, -0.25878927801870194, -0.25751227375921826, -0.2579197681404914, -0.2579494541769781, -0.25838337655937965, -0.25850809225431903, -0.25786320438826765, -0.25796718972580307, -0.2578910499080325, -0.25793522230935684, -0.25744175143560205, -0.2579187862067521, -0.2575602591524982, -0.2579322781322438, -0.258022706904918, -0.25798777517245963, -0.25836402291498, -0.25769116228055566, -0.25716274038809844, -0.25789277300198005, -0.25777764821409854, -0.25832329381876484, -0.2576708390862156, -0.2583755320521726, -0.25804674848711134, -0.25757458903484187, -0.2576433840824408, -0.2577982069848344, -0.2572361752999901, -0.25766884208699986, -0.25833880247634505, -0.25815086955920225, -0.2581604905528009, -0.25831304791025633, -0.25716357067105555, -0.25797151171219124, -0.25843465368819174, -0.25805356822481595, -0.25798470756338465, -0.2579581076507672, -0.2582016614055114, -0.25771145546956026, -0.257886655486572, -0.2581728291608982, -0.2580997737210843, -0.2580124494246631, -0.25836464311998614, -0.2574372350844765, -0.2586302550189826, -0.2580681163056345, -0.25760390611532924, -0.25806986587248965, -0.25759404045034817, -0.25821425268370707, -0.2577808414476769]|
2019-04-30 22:32:26,390 | INFO : Best of geration |82| has accuracy of |0.564838| and fitness_score of |-0.257163|
2019-04-30 22:32:27,075 | INFO : Testing generation |83|
2019-04-30 22:40:48,048 | INFO : Fitness scores of this generation: |[-0.26636799490014157, -0.26622508794486105, -0.26593011423580715, -0.2663043872616091, -0.266488317504421, -0.2664017699320208, -0.2666634956596198, -0.2664913437426924, -0.26614838475166086, -0.26623325017313443, -0.266555308305717, -0.266591991903586, -0.26683853816736, -0.26649755821726123, -0.2663238489726832, -0.2664757326662124, -0.26638623416892715, -0.2660492842274529, -0.26618646132154067, -0.2666083443258609, -0.26679894006387755, -0.266876158597586, -0.26643835039405556, -0.26659787128438484, -0.2657893219168161, -0.2670417074244339, -0.2662227282469923, -0.26671885910046683, -0.26684609452796565, -0.26622960758167546, -0.26604189062035166, -0.26625208436817555, -0.26626646338955506, -0.2661402461386019, -0.2665115082831858, -0.266382264442273, -0.2666931950285301, -0.26593897632368796, -0.2662533083995739, -0.2664700819479002, -0.26602064776462275, -0.26583179203676177, -0.266306830205388, -0.2664733876871479, -0.26664764504436844, -0.2666175395276371, -0.2662902892261118, -0.2662136387470719, -0.2659951164484858, -0.26597010602171606, -0.2661839946843944, -0.2663851950473927, -0.26673556338031806, -0.26686876409172594, -0.26664520167074834, -0.2664573115485531, -0.2664388330145316, -0.2662169013458949, -0.26617606859523935, -0.26674021090139877, -0.2667647902365331, -0.2662600171003308, -0.26655057588448894, -0.26675456259529906, -0.26553757548644824, -0.26612355325605486, -0.26656800225846, -0.26651090043564357, -0.26662885835329136, -0.266537448091732, -0.2666362992819998, -0.26668566568279184, -0.26597035686661313, -0.26615169920496173, -0.26652174734777506, -0.2667009972452701, -0.2667059017071774, -0.26685495049386593, -0.266489525436313, -0.2661356697757761, -0.2659066542462035, -0.2664431015198881, -0.26652043469093895, -0.2666616492051553, -0.26657009141689, -0.2665388079529459, -0.2665223304208342, -0.26581852450654225, -0.2660187798571753, -0.2661598696783706, -0.2662249196815741, -0.26643266664309934, -0.2662878715648101, -0.26680579815398564, -0.2664170321988893, -0.2663250304237529, -0.26618047334722705, -0.2662333087617909, -0.2665547806951966, -0.26643385211904563]|
2019-04-30 22:41:01,209 | INFO : Best of geration |83| has accuracy of |0.564838| and fitness_score of |-0.265538|
2019-04-30 22:41:02,019 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-04-30 22:41:02,061 | INFO : Testing generation |84|
2019-04-30 22:49:55,378 | INFO : Fitness scores of this generation: |[-0.2657769993856186, -0.265833329909095, -0.26571765437540484, -0.2657411468737736, -0.2659789556864558, -0.26564427019982806, -0.26574337795921943, -0.2655825334169516, -0.26557477409156355, -0.26565866894656565, -0.2659367693633568, -0.26601524460243015, -0.2658310172761359, -0.2657920213915953, -0.26552504750831823, -0.2657487893068209, -0.2654104783858468, -0.26576548746628004, -0.2658892880398326, -0.26563577935463045, -0.26589077720191423, -0.2656194399133688, -0.265591483835767, -0.26548250714634974, -0.26568093114509816, -0.26551404354594105, -0.26616629790060403, -0.2659535533407839, -0.26534661945955057, -0.2656992150061741, -0.2656714888062419, -0.26548705313627313, -0.2656324916042206, -0.2657333791891976, -0.2663275601751194, -0.26567669049268816, -0.2653793493149484, -0.26569824520407653, -0.2657023193541823, -0.2655469778380016, -0.2656670586637607, -0.2655228880665651, -0.26564479932734153, -0.26601917046780993, -0.26554142820035537, -0.26549105250799077, -0.26554637102455625, -0.2655027137569538, -0.26580159338872605, -0.2656257859453922, -0.2660407488484208, -0.26614840728480643, -0.26587368747810036, -0.2658784646177437, -0.26602964575697735, -0.2656471930989405, -0.26576504801831596, -0.2657263165385258, -0.2658185447316344, -0.26594796140746374, -0.26556834610315355, -0.2658903812762441, -0.2659288210476317, -0.2652893495268938, -0.26562051061631703, -0.26604934809048003, -0.265797759701566, -0.2658045067020306, -0.2662224573787393, -0.26577596947914217, -0.2657459360978952, -0.2656219796073146, -0.2657711928392329, -0.26566011822078284, -0.266100167319542, -0.2657011850487168, -0.26604485975169556, -0.2656735902788436, -0.2654144351893082, -0.2656372016886385, -0.2658580098664615, -0.2661760197725238, -0.26577010441844057, -0.26528601561922854, -0.2654159994023602, -0.2658099383570072, -0.2655035183742279, -0.2655912144791062, -0.2655776698687455, -0.2658818734400883, -0.26589418366187956, -0.2659744254608707, -0.265707624122137, -0.2658163141004923, -0.2653456408666765, -0.2652888963589581, -0.2658380911026786, -0.2660111081218574, -0.26579225717521293, -0.26528199852966683]|
2019-04-30 22:50:07,032 | INFO : Best of geration |84| has accuracy of |0.563591| and fitness_score of |-0.265282|
2019-04-30 22:50:07,789 | INFO : Testing generation |85|
2019-04-30 22:57:58,849 | INFO : Fitness scores of this generation: |[-0.2796993309313113, -0.280107207394935, -0.2798181069461075, -0.2796290837698155, -0.2793823227554828, -0.2797082592775156, -0.2792666327577453, -0.2800569368509559, -0.2796003288245416, -0.2799275387917553, -0.2794972001700788, -0.27919839080926534, -0.2793166292411787, -0.2792120309429126, -0.2800064897752023, -0.2798636941625191, -0.2801010373073655, -0.27977590967674515, -0.27922291053576515, -0.2793296831953633, -0.27938785464377014, -0.2793453304885744, -0.2791526169256047, -0.2797606706216529, -0.27993606816272476, -0.2804770228696299, -0.2791384911617717, -0.279269094671215, -0.2799362121401606, -0.2797297641366452, -0.28002895361131375, -0.2798422589092641, -0.27974815841193673, -0.2798015058443353, -0.2792768338107848, -0.2791381121889965, -0.27964929357036816, -0.27955744979349345, -0.28018973049548296, -0.28051083709474084, -0.28018855082022176, -0.27999501561259366, -0.27938506618007886, -0.2799602158971735, -0.27937447152159234, -0.27960482098766276, -0.27971084315229106, -0.27976710053983034, -0.2796648555510753, -0.2799196237245122, -0.27946712700901805, -0.2792520968763678, -0.27925596312359646, -0.2799398907133051, -0.2796947514420157, -0.28051019124351106, -0.27992596517543533, -0.27999740946400276, -0.2794839906934145, -0.27945223732574564, -0.27914936612318225, -0.2795362604093981, -0.27941527539813843, -0.2797771920491983, -0.2799284635363398, -0.279907021168116, -0.2796772681512274, -0.2793760325860333, -0.28004458794991177, -0.27932917662300505, -0.28025550354976914, -0.28019701964683363, -0.2793954224199862, -0.2795120978409106, -0.2792167340044503, -0.27922325447067486, -0.2798324937487508, -0.2790498294540354, -0.2799173580096649, -0.27960769677752845, -0.2800855126466837, -0.28033733609560374, -0.27970824504757785, -0.27858705798516403, -0.27937964645323454, -0.27929490247556754, -0.2797969418603021, -0.27999061191672675, -0.28032946647018997, -0.2796428710356489, -0.2793717990453179, -0.2791836778591345, -0.2796327149545824, -0.2792757217948501, -0.2802330852226094, -0.27972195391450916, -0.2798425929771887, -0.2799561121710786, -0.27970528991909716, -0.2790606115181167]|
2019-04-30 22:58:08,734 | INFO : Best of geration |85| has accuracy of |0.566085| and fitness_score of |-0.278587|
2019-04-30 22:58:10,515 | INFO : Testing generation |86|
2019-04-30 23:04:10,924 | INFO : Fitness scores of this generation: |[-0.2704721094268457, -0.27060572006837663, -0.2706638696754295, -0.2705806235136074, -0.2704801212890587, -0.27082982821575785, -0.2710921230767696, -0.2709525623593108, -0.2707867218830775, -0.2705422249526358, -0.27064943762133126, -0.2708886320151436, -0.27066404392221927, -0.27078273784699836, -0.27075489680644904, -0.27104185990587026, -0.2708407632822524, -0.27061999029559164, -0.27073126142437265, -0.271112537149541, -0.27072839884723093, -0.27063857569731603, -0.2703584029875212, -0.27102159363135, -0.270783137956128, -0.27081711684359616, -0.2704082126205162, -0.2706193526949451, -0.27082970026754394, -0.27047575834358056, -0.2708174499724834, -0.27076752546557786, -0.27071684241731125, -0.2705760153738163, -0.27061483683874055, -0.2704280851526426, -0.27078877254461653, -0.27103564055927937, -0.2702931179328458, -0.27072713062617065, -0.27081519275331106, -0.27044591198573936, -0.2710681193374431, -0.2707900820608436, -0.2708567346003987, -0.2706398701078829, -0.2702285748687449, -0.2711177608722519, -0.2710754458416741, -0.2705816115301242, -0.27092275710577063, -0.27134529132419843, -0.2706494453241273, -0.27072100363133267, -0.2707879723808903, -0.27117760993424406, -0.2703938113503356, -0.2706111610372025, -0.27063409892768897, -0.2705871980068123, -0.2709356546674643, -0.2707723940416748, -0.2708316351417435, -0.27077820174539186, -0.27060154050397744, -0.27045343893989987, -0.2702499707957963, -0.27047086447777274, -0.2711283480177641, -0.2707441359458445, -0.270374989411423, -0.27078214199141637, -0.27095085177962536, -0.2708776008477477, -0.2709662961992559, -0.2706038853441589, -0.2705578812196074, -0.27100004453454013, -0.27120107513224434, -0.27079375645815507, -0.27060687169773473, -0.2705730375410326, -0.2707983141139572, -0.27079855210990506, -0.2705702323872129, -0.2708395523890812, -0.27035885651179226, -0.27086723600629264, -0.2708212900276263, -0.2708393353883651, -0.27025996868422786, -0.27055500875834687, -0.27076428054345386, -0.27083580205447066, -0.2705352246652256, -0.2707233627591783, -0.27099391681713897, -0.2711678819299726, -0.2705875703449764, -0.2704917091300263]|
2019-04-30 23:04:15,614 | INFO : Best of geration |86| has accuracy of |0.567332| and fitness_score of |-0.270229|
2019-04-30 23:04:15,865 | INFO : Testing generation |87|
2019-04-30 23:09:42,434 | INFO : Fitness scores of this generation: |[-0.2638438859326087, -0.26404699279578736, -0.2638657092687729, -0.26389960746450897, -0.2639874482061151, -0.26420763107928863, -0.2639405908650902, -0.26419312588897553, -0.26382612068534905, -0.2640016875359283, -0.26431242880178335, -0.26409943372984174, -0.2638927977419534, -0.2640560895312654, -0.2638537460688092, -0.2641281883402343, -0.2640700886767029, -0.26410769996432615, -0.26388603513733794, -0.2640207073996981, -0.26394084932005535, -0.2638886157950294, -0.26404565142100495, -0.26385578790627773, -0.26376595709387307, -0.26351977695576945, -0.2641863306531595, -0.26398222510586916, -0.2638986431773946, -0.26379838809280903, -0.2640664061258897, -0.2641393435080654, -0.2639532198604678, -0.2639157388634088, -0.264419025258401, -0.26420286319420155, -0.26399683608181385, -0.26443665527807325, -0.2638989459214216, -0.2640008110161127, -0.26413774018276126, -0.2635217626661315, -0.26450120918047326, -0.2640250884672174, -0.2639896108565048, -0.26402786586708427, -0.26398144138046736, -0.264009815876112, -0.264013913893642, -0.26414860408424323, -0.2642321093627302, -0.26404002643986507, -0.2639820626886176, -0.2638780909264967, -0.26396042530164754, -0.2641649209278238, -0.26395767974017464, -0.26383683276435915, -0.26369194225143494, -0.2639694265759986, -0.2638326874306874, -0.26383312525815517, -0.2640965148139894, -0.26374088669198026, -0.2640444274716971, -0.2640456878720921, -0.2640146234916228, -0.26390482771785834, -0.26383625291639257, -0.2642635913901346, -0.2641469731007983, -0.2644984783039416, -0.2643097299798656, -0.26359979725446203, -0.26398844222347856, -0.26408230714238684, -0.26391663707729696, -0.26420471387517785, -0.26427453597771067, -0.2636813891481748, -0.26408041390210857, -0.2635805405577264, -0.2639241409741405, -0.2638829080737055, -0.26394982257589894, -0.2643251232037089, -0.26363046861905715, -0.26411001213084107, -0.26410415694748185, -0.26414841375659426, -0.2637498057306606, -0.26408718917361196, -0.26380156558975487, -0.2642616028148577, -0.2640953468656598, -0.2641957489618223, -0.26400245100872405, -0.2640991696171201, -0.26414772576259443, -0.26367039807330017]|
2019-04-30 23:09:46,615 | INFO : Best of geration |87| has accuracy of |0.562344| and fitness_score of |-0.263520|
2019-04-30 23:09:46,846 | INFO : Testing generation |88|
2019-04-30 23:13:44,539 | INFO : Fitness scores of this generation: |[-0.2590632468364597, -0.2586506777777781, -0.2586302174121336, -0.2592200921495366, -0.2586199567452365, -0.25817956775426865, -0.2588559473846473, -0.25842245565909966, -0.25818680952382245, -0.25864147377851743, -0.25881364922118344, -0.2584707503225289, -0.2586433545631521, -0.259032488453622, -0.2589547634611722, -0.2585338186594396, -0.25860316557140134, -0.2588650854974011, -0.2590402092760295, -0.2581433688406072, -0.2584211553623474, -0.25919464805157355, -0.2585258568862295, -0.25862140904844194, -0.25819721993278055, -0.259034389788224, -0.2591149094058018, -0.25826822903031615, -0.25887457483442, -0.259296487310743, -0.25884952435111686, -0.2590261661246711, -0.2585341124460588, -0.2588373268254442, -0.25900744490958505, -0.2584777919977319, -0.2590531701940337, -0.25913316206215253, -0.25846510477899726, -0.25882529912918223, -0.25823332844119445, -0.2589934938678555, -0.2588968436702404, -0.25867993384599686, -0.25848684525665117, -0.259020157499251, -0.2589498759776938, -0.25898847361308297, -0.2583477549206198, -0.2585199889696501, -0.2588391579151933, -0.2588275287519483, -0.2585811031361421, -0.258833866517723, -0.2586721642052426, -0.25859664107849395, -0.2589690012772099, -0.25859183847319844, -0.2587770225565418, -0.2583327499626119, -0.25830669528226446, -0.2593864047887668, -0.2589030569674922, -0.25856534932173936, -0.25875962384386, -0.2585988768857289, -0.25907045274096374, -0.2590139839871257, -0.2580065469628845, -0.25909750531214515, -0.25852323569406094, -0.2581166128074032, -0.2582281819648213, -0.2584959800336875, -0.25858382554420456, -0.25851496389391376, -0.2586689072301964, -0.2587151871689784, -0.2588777215360037, -0.25897439457232657, -0.25777362834881334, -0.25904828280794856, -0.2584422054195326, -0.2583838302909938, -0.2590676024069194, -0.25917556360850924, -0.25863053050695683, -0.25881406435974286, -0.2583341538370435, -0.2584480522991785, -0.2594955833811386, -0.25840815159133057, -0.25891416256918626, -0.25921738586005044, -0.25866274170431436, -0.2587552428050758, -0.2582003148942212, -0.25833333064528075, -0.25883492282013487, -0.2582164734017615]|
2019-04-30 23:13:48,883 | INFO : Best of geration |88| has accuracy of |0.567332| and fitness_score of |-0.257774|
2019-04-30 23:13:49,138 | INFO : Testing generation |89|
2019-04-30 23:17:41,333 | INFO : Fitness scores of this generation: |[-0.24192142620214968, -0.24317200528666577, -0.24428792224336632, -0.24392369643455128, -0.2438816880565053, -0.24371662842853187, -0.24330698568457446, -0.24229722039047377, -0.24297658905320105, -0.2439962984334193, -0.2420597659098193, -0.24231511020339658, -0.24466648457296225, -0.2438560376119186, -0.24406365562447518, -0.2415583878087356, -0.2428137938003369, -0.24580986370152957, -0.24503964733649797, -0.2452669051463294, -0.24381806310516838, -0.24342908606668223, -0.24358960177599048, -0.24324527242525812, -0.24308970864578214, -0.24495816431237977, -0.24299812417126557, -0.241638036854064, -0.2416944985566118, -0.24343864659824713, -0.2435992222463069, -0.24213375304846485, -0.24477408458833738, -0.24451643702962472, -0.24289455689122325, -0.24254212979511294, -0.2437889626074265, -0.2436623233182548, -0.2445562177174829, -0.24156213748882704, -0.2435736453052059, -0.24409296420390295, -0.24426287840300076, -0.24068130218661954, -0.24333932969067662, -0.2437830938886634, -0.24448246592363435, -0.2425895881893389, -0.243190621046742, -0.24510882714671403, -0.24260678720313872, -0.24213459112184466, -0.2422080794391076, -0.2435083813597803, -0.24413905770522062, -0.24365442343089613, -0.2438022823077146, -0.2445167861043605, -0.24297735181891864, -0.24291349620027927, -0.24329988678474598, -0.2432595717265467, -0.24434983115559736, -0.24074881580645727, -0.24153460254850945, -0.24473095835591646, -0.24389288631255315, -0.24273884931220066, -0.24359845827780496, -0.24337363189645947, -0.24390414043125017, -0.24237178058902245, -0.24339479014210638, -0.2433216388049147, -0.24352930806944723, -0.24225407631675225, -0.24375056899716502, -0.24378666007732597, -0.2429380583923494, -0.2418175563550316, -0.24203567507555668, -0.2435338714331255, -0.2443731188640466, -0.24267941031755352, -0.24415619524337787, -0.24485175304883264, -0.24380331042101566, -0.24277154319489483, -0.242592442329689, -0.24333599583985024, -0.24339263328255026, -0.2429315404373434, -0.24274688731929112, -0.24366689817520534, -0.2442850703081208, -0.24274453594278328, -0.24436055698469616, -0.24374418956281893, -0.2426407873095953, -0.24232347510053437]|
2019-04-30 23:17:46,005 | INFO : Best of geration |89| has accuracy of |0.569825| and fitness_score of |-0.240681|
2019-04-30 23:17:46,226 | INFO : Testing generation |90|
2019-04-30 23:22:54,926 | INFO : Fitness scores of this generation: |[-0.2710549084992556, -0.2707872729260962, -0.2712419549306551, -0.2709606419076453, -0.27123951066385854, -0.2713912255935497, -0.2713506498358228, -0.2708998564835433, -0.2709186334650476, -0.2711937167308666, -0.2709624547582049, -0.27134259073407974, -0.2711350386078422, -0.2714192486785866, -0.2707425562830476, -0.2714471178693133, -0.2712924016581906, -0.2711534275637045, -0.27122381805897233, -0.27118698369849337, -0.271882204504518, -0.2712685141887341, -0.2708288575564469, -0.27122799008638115, -0.2710630451287185, -0.27086789383516685, -0.27116084033316307, -0.2708457801844571, -0.2712248565552832, -0.2714170991004883, -0.271157912768565, -0.2713642379680237, -0.2710076867938637, -0.2707905575826571, -0.27104587318537593, -0.2711067775508145, -0.2712939503369155, -0.27089283313903656, -0.27069934779828364, -0.2715899630205019, -0.2710888899051464, -0.27067847405518447, -0.2708340021339687, -0.27080193179827944, -0.2711083765153761, -0.2713393006291423, -0.27103726728098254, -0.2712564950401371, -0.27115236706547924, -0.27081480479383324, -0.27105388572285105, -0.2710620750497271, -0.2713883144336266, -0.2709621302076391, -0.2712785980918191, -0.27149528238204096, -0.270985945032074, -0.270745476553371, -0.27069385124967765, -0.2713397334922444, -0.27128807079422845, -0.27124945139075135, -0.2708918262611736, -0.27130331386338463, -0.27115480781911494, -0.2711133955420552, -0.2708872094914153, -0.2710290052495398, -0.27145107702299076, -0.2707434854843281, -0.2709005858812418, -0.2715572281019552, -0.2711739432323467, -0.27095859915345577, -0.27124059462285305, -0.2708892056515643, -0.2713423741983248, -0.2716003679312192, -0.2708873092294573, -0.27114964159694943, -0.2712003420461546, -0.2710280608344864, -0.2708093521001932, -0.2711316971154837, -0.27136931183573965, -0.2713952804064298, -0.2707063444070406, -0.2712350319791864, -0.2710775263183243, -0.27110757012586373, -0.27119848423904475, -0.2706491231441974, -0.27140142382322613, -0.27101976620210155, -0.2707809287827689, -0.2713526451623404, -0.27104728931670896, -0.27084745081154615, -0.27117124036118223, -0.2712419192631404]|
2019-04-30 23:23:01,021 | INFO : Best of geration |90| has accuracy of |0.571072| and fitness_score of |-0.270649|
2019-04-30 23:23:02,018 | INFO : Testing generation |91|
2019-04-30 23:28:04,104 | INFO : Fitness scores of this generation: |[-0.27641488015651705, -0.27669265526428555, -0.27697427526377794, -0.2767934503262503, -0.2764780355650082, -0.2763716428949122, -0.2760055202141143, -0.2776664488148271, -0.2774128431813759, -0.2765596843602365, -0.27667240474307747, -0.27724984178417605, -0.27682888204591316, -0.27686311675791153, -0.27580582640672985, -0.2770898578459756, -0.2772170077290451, -0.2769685601978971, -0.27623331907548404, -0.27693088697759727, -0.27726321382480756, -0.276106780244593, -0.27585913580760624, -0.2770222891318171, -0.2772885085720765, -0.2764517548314312, -0.27636807958285015, -0.27671511100049606, -0.27713464169125807, -0.27646596123252, -0.27558145193677197, -0.27663599059247135, -0.2771539108795032, -0.2763364163929956, -0.2765035447844288, -0.27633704083007676, -0.27696330131668795, -0.27604329711512515, -0.2754381488551173, -0.27660871582073077, -0.278145961437309, -0.2768971847860437, -0.27674205899238585, -0.2766849180062612, -0.27725993044543684, -0.27671195916962205, -0.27625226012447424, -0.2772310238396912, -0.2773455558115976, -0.27611536498655354, -0.2763075160875655, -0.2764952091271417, -0.2764990482413978, -0.2762506805491029, -0.27639507133709756, -0.27669566043636257, -0.27685280421323943, -0.27664695554657986, -0.2762374870609819, -0.27676263490789815, -0.27731961890270834, -0.27810443328660833, -0.2768370947294068, -0.2762887231090613, -0.2772883082168144, -0.276705608817569, -0.27617968414959154, -0.27698839625768495, -0.27701625311583805, -0.27669913015867537, -0.2759804650356895, -0.2761825385323742, -0.27724083871172184, -0.27658123865462186, -0.2764773187407276, -0.2771791588841823, -0.27676519247000675, -0.2768241403395669, -0.2765557504536813, -0.27674054623695843, -0.27695930134831814, -0.2769761481828857, -0.2763995244314796, -0.2765086145777451, -0.2765877663566355, -0.27666823179052585, -0.2761710066544382, -0.2761974354846436, -0.2767008751630783, -0.2763363143853974, -0.27633859732171945, -0.276766692075813, -0.2764507780995285, -0.27641895031719876, -0.27626676543762807, -0.27652201893036826, -0.2776561412894935, -0.27658606631714, -0.27604479402826543, -0.27658355505320065]|
2019-04-30 23:28:09,018 | INFO : Best of geration |91| has accuracy of |0.567332| and fitness_score of |-0.275438|
2019-04-30 23:28:09,267 | INFO : Testing generation |92|
2019-04-30 23:32:47,843 | INFO : Fitness scores of this generation: |[-0.2692267027593428, -0.26959092294977555, -0.26940931956614217, -0.2694786764200657, -0.2696928257663404, -0.2695394167976995, -0.2694580783046061, -0.26964408099170656, -0.2696125364111316, -0.2695516882644546, -0.26930745397844624, -0.26943259633356526, -0.2694698538991713, -0.2694580517468914, -0.26959539969121254, -0.26924105873031, -0.2696363474572859, -0.2698080250092091, -0.26948820261224626, -0.269433843704962, -0.26949320728740384, -0.2694067866571488, -0.2694086188991224, -0.2692792146917312, -0.2699087004988424, -0.26942302555807174, -0.269641532460528, -0.2693157549106306, -0.2696814978314984, -0.2696564146347584, -0.2695352866764992, -0.26936769245132325, -0.27014572269493536, -0.26949776240414186, -0.269811943630057, -0.26913976986562055, -0.2696569629734562, -0.26942006003472113, -0.2693980757507586, -0.26957279143314206, -0.2696195198643592, -0.2696051544239444, -0.2693087592720985, -0.2694872093056479, -0.2694545864097534, -0.2695371493216484, -0.26914184429953175, -0.26957862516564707, -0.26978869104096964, -0.26968675772509265, -0.269459928043427, -0.2692967379766126, -0.2697675422074333, -0.2695510370837104, -0.2694485319237555, -0.26947237726661466, -0.26979108303785326, -0.269392658697982, -0.2693496645698624, -0.2695840148435485, -0.269342031834587, -0.26943950802087785, -0.26954985272980503, -0.2692428577811487, -0.2692788138504951, -0.2693323172148197, -0.2693863870155427, -0.2698050077884428, -0.2695526735676873, -0.2690616167841419, -0.2693874981614851, -0.2691351111377439, -0.2698786580995206, -0.2696911563796382, -0.26970384618447674, -0.26978793495124387, -0.2699709356792511, -0.2699712525452337, -0.26935470669019607, -0.26936892593099226, -0.26972782837767756, -0.2698510960225136, -0.26924086833192457, -0.2697492684087446, -0.2693172447383404, -0.26957157835845025, -0.269565729340238, -0.26876772562822987, -0.26991850217023206, -0.2697874833979914, -0.2699723659984527, -0.26949023657268095, -0.2693533868078263, -0.26924122141734247, -0.26944545231038525, -0.2697863103641618, -0.2695528668501685, -0.2698013585661688, -0.26931886081734013, -0.26932973260841064]|
2019-04-30 23:32:53,554 | INFO : Best of geration |92| has accuracy of |0.564838| and fitness_score of |-0.268768|
2019-04-30 23:32:53,849 | INFO : Testing generation |93|
2019-04-30 23:38:15,773 | INFO : Fitness scores of this generation: |[-0.27188791566316506, -0.2726028882540189, -0.27235391038529416, -0.2724865965679312, -0.2723674089350599, -0.2727426800712236, -0.27236102845781957, -0.272896210124957, -0.2725327478785757, -0.27239191405316615, -0.27233674000406033, -0.27266994660107474, -0.271988460358153, -0.27230662307450504, -0.273176516916865, -0.27268854754255956, -0.2723169449210752, -0.27250124575073315, -0.2724372137295244, -0.27221249373181555, -0.27225254541918414, -0.27238474622880965, -0.2731477864537809, -0.27309197563001253, -0.27175810698986835, -0.27254644685017887, -0.27202975408535346, -0.27253878077586624, -0.27213487433918954, -0.27237205282951144, -0.27249140932595084, -0.27210426706143953, -0.27260767750185955, -0.27243602212439194, -0.27212470291874413, -0.27238105439905647, -0.2716984294732932, -0.272061226801084, -0.27252759792995923, -0.27297805461867936, -0.2724824846278626, -0.27243573019820616, -0.27219460487560826, -0.273229600852523, -0.2716896916372296, -0.2724201880188113, -0.2729608168285919, -0.2724171702288177, -0.2725531454952571, -0.27266585582992253, -0.2725811254861117, -0.2725573905946385, -0.27228163653426785, -0.2722948988603882, -0.2729841328779336, -0.27207837933019025, -0.27229555938911126, -0.2725558326794551, -0.2719521024515898, -0.27280556901972347, -0.2721589259352114, -0.2722770628289193, -0.2726422042971547, -0.27222126663804247, -0.27244924713663893, -0.27281241321329597, -0.27213811932921217, -0.27278617721922854, -0.2721040414710287, -0.2723096459860107, -0.2727417086911084, -0.2723535727557106, -0.2723483135481708, -0.27241415292658705, -0.2725456044833906, -0.27208428736013984, -0.2724605018788196, -0.2720471039146136, -0.2728429670809919, -0.27257590393387937, -0.2725638397489164, -0.27220234152923434, -0.2724789083491761, -0.27273980148880456, -0.2721856933958987, -0.27240758022192846, -0.2728541827045759, -0.27271565507164564, -0.27228669414933887, -0.272380320413218, -0.2723760613638133, -0.2721582020948444, -0.27246249643948584, -0.2722761293967695, -0.2728994686260161, -0.2723732851140823, -0.2725227469313164, -0.2722981621903015, -0.2727707004976351, -0.27329383880729174]|
2019-04-30 23:38:21,575 | INFO : Best of geration |93| has accuracy of |0.567332| and fitness_score of |-0.271690|
2019-04-30 23:38:21,948 | INFO : Testing generation |94|
2019-04-30 23:43:16,728 | INFO : Fitness scores of this generation: |[-0.20296092619819026, -0.2028521236873442, -0.2022277275400777, -0.20551605138086504, -0.20231690714436193, -0.20367534458637238, -0.20230134985139292, -0.202117518551888, -0.20247572564309643, -0.2016227355887813, -0.20267480227255052, -0.20196736099258547, -0.20428794718557788, -0.20059541492692887, -0.20328933817725028, -0.20483727224411502, -0.20182093785655114, -0.2024220016694838, -0.2018504758034983, -0.20221466306717165, -0.20363568827029196, -0.20291354867719835, -0.20347671114629315, -0.20388983238127925, -0.2027213506160244, -0.20022875551254518, -0.20426951829464204, -0.2019198623395735, -0.20383169862531847, -0.20057389332402137, -0.20299426442192448, -0.2050153959182001, -0.20138264904099126, -0.20314828522743716, -0.20318895770657447, -0.20325537410474592, -0.20412754243420017, -0.20413753101902624, -0.2025629435816119, -0.2043590247631073, -0.2047210475129466, -0.20348634210325056, -0.2011706055172028, -0.20325342926286882, -0.20332613875789027, -0.2041062549237282, -0.2036768385479527, -0.20378277042219717, -0.20398900585789834, -0.2028733169840228, -0.20317685748300246, -0.2032262456993903, -0.20321423392142018, -0.2044850424412758, -0.20315044108898409, -0.20718778958243708, -0.2015973752544772, -0.20298999644094898, -0.201335393132702, -0.20191576019410165, -0.20537489989111501, -0.2041787096569615, -0.2033040908075148, -0.20486607666938536, -0.2010126407107999, -0.20351634727370355, -0.20119468819710515, -0.20234207039879215, -0.19944274040960497, -0.20357083553268063, -0.20333067544044986, -0.20325369604172244, -0.19979027346257242, -0.20078844168493826, -0.2037939477351404, -0.2017586875346399, -0.202258795019119, -0.2018497485306955, -0.20430856174038303, -0.20511239767074585, -0.20183254634180375, -0.20275088087204965, -0.2024146198265014, -0.2029236141712435, -0.2027637622048778, -0.20473549539043057, -0.20523972280563846, -0.20308199092265097, -0.20397532370782667, -0.20032869279384613, -0.20356084358307622, -0.20076092837318296, -0.20300078103619237, -0.2020248415008668, -0.20590009083670954, -0.20275620058659585, -0.20136651108341833, -0.2006638463466398, -0.20446772873401642, -0.20280917373395735]|
2019-04-30 23:43:22,338 | INFO : Best of geration |94| has accuracy of |0.564838| and fitness_score of |-0.199443|
2019-04-30 23:43:22,658 | INFO : Testing generation |95|
2019-04-30 23:48:44,708 | INFO : Fitness scores of this generation: |[-0.2603087985605479, -0.2600274396099986, -0.26014275914874424, -0.26047473825675826, -0.26025787418625695, -0.2601337471904899, -0.2602931786325043, -0.26056608243105434, -0.2610872199269087, -0.26056084820507386, -0.2599862475337901, -0.26046208538725957, -0.26001118610873747, -0.260115503997987, -0.26011324424602084, -0.26022643480067204, -0.2603509610099235, -0.26036980088087436, -0.2603054600543958, -0.26051987921090536, -0.2604536938004399, -0.26011819961945143, -0.26000669389317105, -0.26009911045951734, -0.2604419389330588, -0.26032040298378323, -0.2603903540202068, -0.26037893480113045, -0.2602124787185913, -0.260231711539202, -0.26023990511332445, -0.26019401612369436, -0.2606062757643071, -0.2604884454150114, -0.2605753748710149, -0.26038298920906455, -0.25996150294078285, -0.26012136567380495, -0.26034865670896273, -0.2601319006543245, -0.26043639975994065, -0.26039625152341606, -0.26054391309857705, -0.26034316860146395, -0.26014738949147403, -0.2603233114488837, -0.2600772787696567, -0.26034442400673896, -0.26044712442479867, -0.2605484789351491, -0.26031352823967085, -0.2602497943159997, -0.260241257369125, -0.2601710725909241, -0.2603861147170916, -0.25990722715349046, -0.2606285610337172, -0.2606289127348281, -0.26023388650482493, -0.26048671098164405, -0.25997522181210714, -0.26006389032210186, -0.2603347269040475, -0.25997906729480663, -0.26092742245844464, -0.26048929222510964, -0.2606963098582853, -0.26072060165823235, -0.2598273822516343, -0.26008672140096295, -0.2603523631516096, -0.26045732440305813, -0.26052181457821544, -0.26056732551934697, -0.260309979867306, -0.260321491161795, -0.2600296013597943, -0.2600904456238832, -0.26000079810338467, -0.26075734200902306, -0.26061118337256406, -0.26046286550026587, -0.2599984099851477, -0.2603207184502137, -0.2598917664895071, -0.26015540465895126, -0.2603723089527567, -0.2597342298684763, -0.26057677989181316, -0.26031555656719385, -0.26071247472502396, -0.260281986807114, -0.26008794350684755, -0.26031842325005633, -0.2602383601817177, -0.2611636051471002, -0.2604612855839347, -0.26030557187630476, -0.26048223578795077, -0.2604757123236157]|
2019-04-30 23:48:50,166 | INFO : Best of geration |95| has accuracy of |0.568579| and fitness_score of |-0.259734|
2019-04-30 23:48:50,828 | INFO : Testing generation |96|
2019-04-30 23:54:58,503 | INFO : Fitness scores of this generation: |[-0.2655415932466962, -0.2649400445403145, -0.26520035077843235, -0.26539678685124257, -0.2648770410319817, -0.26482037032287775, -0.26566647208809385, -0.26543663140031787, -0.26539102237491907, -0.2654479300455133, -0.264895684230281, -0.2652688526015394, -0.2650153812851558, -0.26534125911171463, -0.2656207973868471, -0.2654314969983219, -0.2652677883633268, -0.2653201908805691, -0.26517026755847084, -0.2652858598679887, -0.26500994376983916, -0.26513413089234017, -0.26540857738046636, -0.2654864028523612, -0.26532187036965943, -0.26566421431932485, -0.26508960582442204, -0.26504210601263284, -0.2652777488764759, -0.265338856964876, -0.2658957622391615, -0.2651451774806056, -0.26510532674376003, -0.26513702943046835, -0.2650461431199289, -0.26492556199101147, -0.2653309962040753, -0.26529978086499223, -0.2655265204015891, -0.26538984998186377, -0.2654774922008154, -0.2651977403844662, -0.26490229137018423, -0.2651303809966693, -0.2649365090795415, -0.26537637285295645, -0.2654803351170081, -0.26494120515037856, -0.2654583835306503, -0.2655201150199114, -0.26481306689853307, -0.2649490219168122, -0.26496609501453233, -0.2651947465041626, -0.26562916604993864, -0.26468290341957296, -0.26529701042439513, -0.26515384718795176, -0.2653426839988266, -0.265488812109793, -0.2652791123230112, -0.26499892866440516, -0.2652762484830237, -0.265298900501669, -0.2652677946676642, -0.2657205210865088, -0.2651405897103201, -0.2650878605234887, -0.2650978044938233, -0.2653711174445948, -0.26560405143469845, -0.2650500067753773, -0.2654756398718547, -0.26531324119852295, -0.2650847386136515, -0.2655560429337904, -0.2649508838722728, -0.2655486761455119, -0.2654929669110063, -0.26539247637466473, -0.2653127621951594, -0.2655797669326466, -0.26507070787843545, -0.26540378095506845, -0.26531280345991354, -0.2653944432599448, -0.26552841985280073, -0.2649482553035526, -0.2650541121909951, -0.265205412792258, -0.2651669991140726, -0.26545033123067335, -0.2652420632473182, -0.2658006414732224, -0.26551363526842275, -0.2652935292061802, -0.26533332702156154, -0.2654425397981565, -0.26488459397792197, -0.2655814746892592]|
2019-04-30 23:55:04,310 | INFO : Best of geration |96| has accuracy of |0.569825| and fitness_score of |-0.264683|
2019-04-30 23:55:06,656 | INFO : Testing generation |97|
2019-05-01 00:00:36,666 | INFO : Fitness scores of this generation: |[-0.26258001872505327, -0.26239717227529247, -0.2624605829615992, -0.2623163708652633, -0.2625233617080635, -0.2622730820896141, -0.2621812310233059, -0.2629627367533536, -0.26264557884746337, -0.2627158766723724, -0.2624706492481004, -0.26246668861444256, -0.26240275623313936, -0.2623663244019467, -0.2625325450621753, -0.2624348260610702, -0.26254792606450644, -0.2626175914033951, -0.2623404331772451, -0.2626372879244892, -0.2629162952125785, -0.2623813353449225, -0.26197017211600604, -0.2624476882684753, -0.2624135615934889, -0.26257941689624253, -0.2622377070772695, -0.2625978242947286, -0.2627201352223932, -0.26254621296527375, -0.26262609683184984, -0.2622653667670322, -0.262727483382738, -0.26272785379829633, -0.2627499711940963, -0.26230276830167887, -0.26244616146344113, -0.2624168341378292, -0.2620327567792984, -0.2621301406526946, -0.26231686450333236, -0.2626669420070382, -0.2624203641101184, -0.26252373073442997, -0.2625633845766227, -0.262220881683418, -0.26231449906569554, -0.2622314599761925, -0.2624197517733175, -0.262543869327264, -0.2620818406462194, -0.2625624479525593, -0.2627959819666418, -0.26242188491906776, -0.2625654009590111, -0.2622330036177578, -0.2629970285284567, -0.26249027543096426, -0.26238781590148275, -0.26242433830323925, -0.2625403088164994, -0.26273003011585705, -0.26238892165075733, -0.26239560597921274, -0.26284020766319033, -0.2625536422449279, -0.2623246869242999, -0.26241453354102207, -0.2628080089016265, -0.2625968251807756, -0.26237421155688295, -0.2622655309291475, -0.2631082332229234, -0.2626532976727087, -0.262493180991169, -0.26244230885429687, -0.2625686011110169, -0.2625939789402532, -0.26229292207742594, -0.26214920496085725, -0.26287470970495763, -0.26282675760200774, -0.26240430775866563, -0.2622775957760108, -0.26290749820817516, -0.262652686677606, -0.26233834453313, -0.2625087749079404, -0.2624620273531196, -0.26255294673471335, -0.2623099639240014, -0.2625436834723826, -0.26248481086050846, -0.26250165794712615, -0.26246696699900457, -0.26241674544326815, -0.26266010818016006, -0.26230056057888196, -0.26256046487515666, -0.2623838603971489]|
2019-05-01 00:00:42,402 | INFO : Best of geration |97| has accuracy of |0.572319| and fitness_score of |-0.261970|
2019-05-01 00:00:42,811 | INFO : Testing generation |98|
2019-05-01 00:06:06,556 | INFO : Fitness scores of this generation: |[-0.27224752733768043, -0.27167509955874947, -0.2720661050182278, -0.2721678267091008, -0.2720791149947603, -0.27191980771594126, -0.2726213453179699, -0.2722810471209429, -0.27174349048380125, -0.2725306190171484, -0.27291838233753785, -0.27190036839347775, -0.2722179086026499, -0.27215682389372486, -0.27200053430209725, -0.2716288648924585, -0.2720103265875477, -0.27212794433205817, -0.2721434132022373, -0.27243579762466885, -0.27254043554855606, -0.2722411543130875, -0.2725301406646179, -0.27197575480756114, -0.2714896709232007, -0.27241207977472726, -0.27235654299542056, -0.2724495074001409, -0.27201981771800476, -0.2722067882954064, -0.2718364171052383, -0.2714943988343417, -0.2720409361235166, -0.27260392843666725, -0.27195287660016854, -0.272140303809764, -0.2720893973516206, -0.2725155918274896, -0.27276037067680037, -0.271840270292961, -0.2721892126030841, -0.2723012345827232, -0.27218547736184073, -0.2725118497670707, -0.2724023755071527, -0.2719798096155716, -0.27196024201684077, -0.2722913955227803, -0.2718741872300536, -0.272165794443276, -0.2720720518443544, -0.27236018145488483, -0.27211421975644967, -0.2722092937362396, -0.2715393663715508, -0.27173105362108196, -0.2716039449734203, -0.27300778910265133, -0.27240224712986055, -0.2725322291507559, -0.2717834532513457, -0.27262683876995314, -0.2719884757773351, -0.27220724684707187, -0.27249444192748956, -0.27286325647669324, -0.2722801861621566, -0.27239671304064283, -0.27245218228485624, -0.2721677718526226, -0.2719163620876054, -0.2719706040317729, -0.27203398397413353, -0.27216824161804326, -0.27296504423779955, -0.27215177982540456, -0.27229102314528775, -0.2719099710048255, -0.2718569225173886, -0.27156808335902327, -0.27151214561219944, -0.27307112105822157, -0.27293114253019884, -0.2724953576417293, -0.27250332397929694, -0.27174480208906077, -0.2717846234471111, -0.27231703284433334, -0.27166376033071743, -0.27315258696927863, -0.27245767454979786, -0.27234879944284085, -0.27183475489333525, -0.27210531901505036, -0.27162878104185656, -0.2719170658517692, -0.2718997316087707, -0.2729391259157051, -0.2724911699355659, -0.2719370763938306]|
2019-05-01 00:06:12,354 | INFO : Best of geration |98| has accuracy of |0.572319| and fitness_score of |-0.271490|
2019-05-01 00:06:12,722 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 00:06:12,728 | INFO : Testing generation |99|
2019-05-01 00:11:30,992 | INFO : Fitness scores of this generation: |[-0.2532957358906666, -0.25320625137537717, -0.25358740411077935, -0.2532199149640898, -0.25439006810386977, -0.25376198459416627, -0.25364894506831964, -0.25411584849158925, -0.2535929473116994, -0.25377541792889435, -0.25350049572686356, -0.2535790316450099, -0.25264350722233453, -0.2529518914098541, -0.25379598736763, -0.2536430360749364, -0.2537564337874452, -0.25365989410007994, -0.2532503799535334, -0.2532625915172199, -0.25371839155753456, -0.2531241958960891, -0.25371703986699384, -0.2540983008220792, -0.2541666317731142, -0.25394945840040845, -0.2538004600442946, -0.25351483123376967, -0.2538797874003649, -0.2540709745138884, -0.2538937764552732, -0.2534979541165133, -0.2537907608474294, -0.253765353312095, -0.25362871841837964, -0.253416530508548, -0.2533056089344124, -0.2526773293502629, -0.25395015155275663, -0.254577805660665, -0.25418149853746097, -0.25367706703643006, -0.25380707187578083, -0.2534928516174356, -0.2532113320194185, -0.2535106083688637, -0.25366328467304505, -0.2540089058068891, -0.25419073464969794, -0.25406485041603444, -0.2534438930762311, -0.25341991524522506, -0.25310964360833166, -0.2535186051701506, -0.2540374792801837, -0.25358249864851434, -0.2543404547808071, -0.2538387584810456, -0.25298427560677134, -0.2531989077727, -0.2530341923236847, -0.25324914548546074, -0.2542919241823256, -0.2540408612539371, -0.25429338505491617, -0.2540163515135646, -0.2533508436754346, -0.25384669325624903, -0.2534054176881909, -0.25372088650862373, -0.25434513442839185, -0.254109720668445, -0.25443389068047206, -0.2536346533956627, -0.2535533702621857, -0.2535075832779209, -0.2527337867145737, -0.25324758238469564, -0.2539864531097313, -0.253619911459585, -0.25356865047166743, -0.253447194583714, -0.25373335561404625, -0.25320050936813154, -0.25261788920809825, -0.2538087968714535, -0.25438041975721715, -0.2535590175228814, -0.2548402220631639, -0.2537994349996249, -0.2532379693662127, -0.25378141154845557, -0.2529397368431091, -0.2529265513022741, -0.25389342609172066, -0.2534375532840689, -0.2544270501161615, -0.25413566067193943, -0.2534996083006263, -0.2533815576074024]|
2019-05-01 00:11:37,074 | INFO : Best of geration |99| has accuracy of |0.569825| and fitness_score of |-0.252618|
2019-05-01 00:11:37,381 | INFO : Testing generation |100|
2019-05-01 00:15:37,602 | INFO : Fitness scores of this generation: |[-0.26658317334549403, -0.26648251548890145, -0.2670429362404731, -0.26679794788360595, -0.26703600803370114, -0.2669587245231034, -0.26731197878878604, -0.2663098703148544, -0.26681180112464453, -0.2667673049114084, -0.2666260235412146, -0.26751868353095104, -0.2670381083924283, -0.2664400190755885, -0.26626456030594403, -0.26689478126905297, -0.26707410197104176, -0.2669232374557885, -0.2673483503121202, -0.26741575717285115, -0.2673903581916645, -0.26662809630875944, -0.2662796572011004, -0.2667911291122437, -0.26682399812565055, -0.26660141553930056, -0.2670865626104416, -0.267224576909055, -0.2672012646031636, -0.2663225720646561, -0.2665011978918506, -0.26688780678856755, -0.2670473748637784, -0.2666959346622549, -0.26704979478031077, -0.2671324394402965, -0.26697142934927376, -0.26687345440669724, -0.2661880593146047, -0.26697691884092106, -0.2668042379681782, -0.2666702876167913, -0.2676443582580936, -0.2677802662695608, -0.2668659492205548, -0.26653874247304854, -0.2663711300139786, -0.2676241882706201, -0.2664670354576521, -0.266379302740097, -0.2667434081595431, -0.2674186336096897, -0.26683476586495675, -0.26663885783123714, -0.2662824071863646, -0.2668689863656157, -0.2671116736306939, -0.2666732271512349, -0.26712815588520417, -0.2672162486019955, -0.26719856678798637, -0.2663004784814773, -0.2655227613705461, -0.266843561010976, -0.266704773774711, -0.26711461101808853, -0.26711256202831063, -0.2670383511051055, -0.26702163616816205, -0.2669219240065544, -0.26641540495298244, -0.26668482390783166, -0.26668923997109933, -0.2666577742304853, -0.2674029066998472, -0.26723980743397946, -0.2666594454678156, -0.26629061378458496, -0.2664274143916304, -0.26731749420524925, -0.2669034970063035, -0.2665282066150378, -0.266982568431926, -0.2668756793583593, -0.2668312745389118, -0.2666722455973266, -0.26642220516999565, -0.2667760420871037, -0.26675090321930506, -0.2669976568350228, -0.26721669175932483, -0.2670759688782436, -0.26704962682980365, -0.26660244362328644, -0.26704873622104686, -0.26709435312978685, -0.2669076888151066, -0.26646067637910126, -0.26685570433575617, -0.2669899684447114]|
2019-05-01 00:15:43,204 | INFO : Best of geration |100| has accuracy of |0.573566| and fitness_score of |-0.265523|
2019-05-01 00:15:43,827 | INFO : Testing generation |101|
2019-05-01 00:19:41,496 | INFO : Fitness scores of this generation: |[-0.2662444640996154, -0.2665062920039691, -0.26635885526609365, -0.2663524530923408, -0.2665237367534804, -0.2660954664000532, -0.2663461072099361, -0.26603908857658104, -0.26646625482161745, -0.26644564070440696, -0.2663469229400921, -0.2662435743840665, -0.2665492068277943, -0.2658804053651024, -0.26607555435478203, -0.26617608836074647, -0.26650031322095113, -0.2663889737567746, -0.2658349663296734, -0.2663380858923143, -0.2667381614967053, -0.26616447036424534, -0.26651240071678606, -0.2657016596048897, -0.2665528991065564, -0.2665760865623654, -0.266343414991643, -0.26627666394771604, -0.2662993842113559, -0.2663598815553818, -0.26607916329806286, -0.266064683012274, -0.2664763208422311, -0.2663780647016654, -0.2659393732150858, -0.26602069483647106, -0.26614418431544057, -0.26591316899403983, -0.26633441665050456, -0.26635601837296424, -0.266345479505026, -0.26644039952019455, -0.2664128093176865, -0.2661052779560178, -0.26613092068604455, -0.26631338996715126, -0.26645859513904496, -0.2662137113815137, -0.26644685791590716, -0.26624239632497704, -0.26585668967266995, -0.2664527161365616, -0.26633217420788946, -0.26616579840638444, -0.2661303257671585, -0.2661826085988801, -0.2667215117822565, -0.2666621118853339, -0.26630382598903596, -0.2660939253528404, -0.2663771766861326, -0.26634102678132415, -0.26617307263633566, -0.2667055037371355, -0.2663431809098396, -0.2661401462048396, -0.2659336706846779, -0.2664104543964577, -0.26632273859833394, -0.2664073296628537, -0.26648969703697634, -0.266233732262507, -0.2664532272342475, -0.26648607605480623, -0.26604772233366275, -0.2665265172164848, -0.26603010173657166, -0.2660582938315011, -0.2665525542635024, -0.2659057794405501, -0.26608947342710526, -0.2667366576590277, -0.2658046895119864, -0.26636372353963994, -0.26626684375289433, -0.26655864738127405, -0.26636394219986914, -0.266200520453825, -0.26655928518219796, -0.26663738836093054, -0.26631520842922995, -0.26613799027222557, -0.26636612311231106, -0.2660251714471333, -0.2661535203699738, -0.266204863717309, -0.2663329270547982, -0.2663937799450405, -0.26649176555754, -0.2663256300481012]|
2019-05-01 00:19:45,994 | INFO : Best of geration |101| has accuracy of |0.566085| and fitness_score of |-0.265702|
2019-05-01 00:19:46,224 | INFO : Testing generation |102|
2019-05-01 00:23:58,413 | INFO : Fitness scores of this generation: |[-0.2701043001453292, -0.2699330482218001, -0.2701817966695395, -0.2699942387495932, -0.2697848705229936, -0.27042993911044305, -0.269976194836265, -0.27085909247398376, -0.2706271428384899, -0.27055745925327246, -0.2700152139079213, -0.2697900191501335, -0.2700883767434529, -0.2698799802985772, -0.2699691645630243, -0.2701010359237644, -0.2703707229996484, -0.27060621905894505, -0.26969062393725024, -0.2702919615061405, -0.26965377139456476, -0.26965572928099824, -0.27029070988744236, -0.2702063156498803, -0.2707206842865683, -0.2704782602648256, -0.2698083069747087, -0.2698263428987019, -0.27010223650532844, -0.2697379884738771, -0.2697866557451783, -0.27035555159393865, -0.2706026317686421, -0.27009122538818886, -0.2700818990483696, -0.27029417809985934, -0.2702102088213387, -0.2698118592591092, -0.27013769028363405, -0.27030216107503025, -0.27064842782007953, -0.2702674518817316, -0.2696798404373189, -0.2697005664019778, -0.2700181601329245, -0.26987265583909587, -0.2698632925486018, -0.27054146702222304, -0.2707672920702206, -0.2704784171869305, -0.27010257076964805, -0.27025216846764616, -0.269863485843206, -0.2700009121045444, -0.2701935909254841, -0.2699332094013796, -0.27064172694922756, -0.27025723352213593, -0.27014260212159874, -0.2699530344896636, -0.2697052345915026, -0.2698853471081513, -0.26992491605105223, -0.27032016730182384, -0.2709389557861567, -0.270117085657002, -0.2697386422590394, -0.2696445777723188, -0.26985470075455925, -0.26981613518279274, -0.2700627287439148, -0.2700091380974183, -0.27079176332479643, -0.2705070063655759, -0.26980053424519834, -0.27015856962250234, -0.26993574756583627, -0.2698566354088472, -0.2697687265997, -0.27047166827494507, -0.2706750792695942, -0.27039658184930343, -0.2694816031416047, -0.27021320989417863, -0.26991464670688387, -0.26965719067230426, -0.2701078786315952, -0.270529776969284, -0.27067798252564046, -0.27047319731279235, -0.2698114878601498, -0.26993558052565897, -0.26992850100237226, -0.26999850671022235, -0.2700855835772906, -0.26991707811910637, -0.2706434491239948, -0.2705391523226228, -0.2701394756897837, -0.2700961202488164]|
2019-05-01 00:24:03,351 | INFO : Best of geration |102| has accuracy of |0.572319| and fitness_score of |-0.269482|
2019-05-01 00:24:03,602 | INFO : Testing generation |103|
2019-05-01 00:28:05,691 | INFO : Fitness scores of this generation: |[-0.2497474079579115, -0.2506350388005376, -0.25061693370342253, -0.25014672681689265, -0.24985544301569462, -0.24989326115697622, -0.24995348446071147, -0.24980436131358147, -0.25069031186401847, -0.2501225931942463, -0.25002521276474, -0.25004104416817424, -0.25068808063864706, -0.25045906025916337, -0.2503204957395792, -0.2497667859494686, -0.2504889792203903, -0.25048766054213045, -0.24983189769089223, -0.25043501421809194, -0.2502532409131527, -0.2498718973994255, -0.2498198641464114, -0.24995498396456242, -0.25052077539265155, -0.24975588411092758, -0.24973570592701436, -0.25034445270895955, -0.25078370690345764, -0.24999225012958048, -0.24976505413651467, -0.2495825770124793, -0.24991236321628094, -0.2505457538366318, -0.2499309391528368, -0.25002739384770395, -0.25035261049866675, -0.24986111786216497, -0.24979617424309253, -0.25012700747698546, -0.25049505636096003, -0.24988776750862599, -0.24936244435608387, -0.25065669141709807, -0.2505082876235247, -0.2505038742721081, -0.24965531803667546, -0.24956875678151846, -0.25014030318707225, -0.2508285850659013, -0.2502155669778585, -0.25028194770216944, -0.2506860551610589, -0.24999814491719008, -0.25000885639339687, -0.2494712044298649, -0.2498411287367344, -0.24965978797525168, -0.2499620109796524, -0.24995335757732393, -0.2503785071521997, -0.24974496759474277, -0.24934539817273615, -0.25018010329455137, -0.24981150686740874, -0.2499065062776208, -0.24963702470064164, -0.24991898991167547, -0.25055736050009725, -0.25027926489710806, -0.2505702987313271, -0.24983771219849588, -0.2501512514427304, -0.2497754517197609, -0.25024890698492525, -0.250340765491128, -0.25032527185976505, -0.2498813447356224, -0.2493659834563732, -0.2498375866562128, -0.25063968367874623, -0.2504832074791193, -0.2500337287783623, -0.2500930289179087, -0.2503627784177661, -0.2501208843663335, -0.2499106043949723, -0.24971405267715455, -0.2507513768598437, -0.25006286285817625, -0.25006087243556974, -0.250110125541687, -0.2507275288552046, -0.24929526772350072, -0.24988792359828949, -0.24972626753151417, -0.24996487163007258, -0.2505764249712229, -0.2494996167719364, -0.24959107108414172]|
2019-05-01 00:28:10,287 | INFO : Best of geration |103| has accuracy of |0.572319| and fitness_score of |-0.249295|
2019-05-01 00:28:10,525 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 00:28:10,530 | INFO : Testing generation |104|
2019-05-01 00:32:09,283 | INFO : Fitness scores of this generation: |[-0.2702662964626182, -0.2696821729806687, -0.2701365279315187, -0.26952663332009485, -0.26954586873594805, -0.26983822533767, -0.2696619803528134, -0.27018605730087636, -0.27067495389379187, -0.26873787371910735, -0.2696478099381323, -0.26968821379349384, -0.2701446435970368, -0.2695178137623149, -0.2703002680548661, -0.26985192127365004, -0.2695751190185547, -0.2698348051995682, -0.2700499467712512, -0.26990436044313926, -0.27025342041211164, -0.27037559792721017, -0.26922052117774814, -0.269326357854356, -0.2693293511117105, -0.27022646431871455, -0.26978579302914707, -0.2699575724361612, -0.26995171590460293, -0.2703679224891628, -0.2699023262202311, -0.27006578102386253, -0.2698075061114572, -0.2691958769083881, -0.26960746901069615, -0.2704855068553266, -0.2703458017689719, -0.26962223509661587, -0.2694205423589233, -0.269773730056749, -0.26987013633517054, -0.2697993882482858, -0.26971111194692926, -0.26930390271565896, -0.2702827251536383, -0.2700810877860879, -0.2695627785522303, -0.2690448343432207, -0.2701391746028722, -0.2700318262088213, -0.2699831172073488, -0.2700474847563737, -0.2698088910618274, -0.27044866041099425, -0.2699547854902075, -0.26947176520772975, -0.2693337310346768, -0.2697367988151612, -0.2696379244649153, -0.26941866475901155, -0.2701475212899901, -0.2701589851606664, -0.2694837467597543, -0.2694954071327937, -0.27063772296733996, -0.2701914025832423, -0.2697163939797621, -0.2696806891359014, -0.2691465068956931, -0.270406216865392, -0.2699575567309805, -0.26959396507457006, -0.26991689521417345, -0.27042208006270496, -0.26988586606524834, -0.26984751213797564, -0.2698010354698133, -0.270575611175393, -0.27030063415174005, -0.26966477625018404, -0.26942010052341353, -0.2700225590801925, -0.26982420838350873, -0.2695933066630106, -0.2700592819199288, -0.269967488676524, -0.26947128086638966, -0.26973253719026236, -0.26992670811123126, -0.26984193631642156, -0.26982624512567793, -0.27002841598695987, -0.27028002809706353, -0.2698123684997181, -0.26981593727422276, -0.2698860185073434, -0.2698589814223831, -0.27035984193249574, -0.2699423350340171, -0.2696273788916979]|
2019-05-01 00:32:13,563 | INFO : Best of geration |104| has accuracy of |0.562344| and fitness_score of |-0.268738|
2019-05-01 00:32:13,789 | INFO : Testing generation |105|
2019-05-01 00:36:16,731 | INFO : Fitness scores of this generation: |[-0.25898549356497824, -0.2584217443363741, -0.2589274437050335, -0.25951699033612385, -0.25926683462845784, -0.2594451145463002, -0.2587006241083145, -0.2593278571536454, -0.2587317129170212, -0.25911256067532423, -0.25918042574388284, -0.2589178660418838, -0.2595057394743587, -0.2590381473613282, -0.2589922610204667, -0.25909551916023094, -0.25873187702381983, -0.25899433591015014, -0.25951629454114783, -0.2595372501721916, -0.25885394411549595, -0.2593223839260948, -0.259188271050031, -0.2590392829151824, -0.2585247714499322, -0.25865539114844677, -0.25942449434660375, -0.25923236428449553, -0.25908630358753726, -0.2590930473525077, -0.25938559843537706, -0.2591362863701458, -0.25842474315625924, -0.2588371780390541, -0.25960165314609185, -0.25928712527578074, -0.25953573392083246, -0.2590227578378593, -0.25956712319748476, -0.2596011238056235, -0.25837561197113246, -0.2586133607546799, -0.25969934473202255, -0.25974721019156277, -0.25877572640699026, -0.2589521011104807, -0.2586636089642222, -0.25918036573178443, -0.2583872389125948, -0.258969630774421, -0.2593721535910542, -0.25965010749253753, -0.2594118848598252, -0.2591671743236172, -0.25915339261215803, -0.25889474452318, -0.25830390985356644, -0.2585437909389536, -0.2595557967433706, -0.2591086421937992, -0.2587572116171941, -0.25870960353252787, -0.25899192902337137, -0.2592002093830767, -0.25880146884204197, -0.2587685100734234, -0.2596800966421142, -0.25900054959735525, -0.2591377862457496, -0.2589113650804696, -0.2590413313979904, -0.2586569019282858, -0.2583633074730945, -0.2592316277635594, -0.2593808309951176, -0.2590412742380674, -0.25894886852862936, -0.2592540301848203, -0.2593990833653758, -0.25855153653537855, -0.2583794431993738, -0.2590016560279764, -0.25904237913588685, -0.25909194773218286, -0.2588965299073607, -0.25901115173473954, -0.25929344235919416, -0.25900923829370487, -0.25886152442156646, -0.2584671891139199, -0.2593860783187362, -0.25967173658621806, -0.2595413757177691, -0.2589884147164412, -0.2595161189092323, -0.25912776480739314, -0.2586224158488524, -0.2582929040848588, -0.25951537103780237, -0.2597896689743114]|
2019-05-01 00:36:21,004 | INFO : Best of geration |105| has accuracy of |0.568579| and fitness_score of |-0.258293|
2019-05-01 00:36:21,660 | INFO : Testing generation |106|
2019-05-01 00:40:11,937 | INFO : Fitness scores of this generation: |[-0.25542039047052834, -0.255461081540511, -0.25486344030057945, -0.25524760851705514, -0.2553850931149942, -0.25552162813183704, -0.2554824577621472, -0.2552212488228156, -0.2552703390886754, -0.2555252108492969, -0.25566595627201927, -0.2548287734389305, -0.25527734120870815, -0.25550802134805256, -0.2553619432412548, -0.2552271834402173, -0.25553663866019544, -0.2557541786428587, -0.25550580176490323, -0.2550570648393513, -0.25499521756981625, -0.2554058177327668, -0.25547339491270205, -0.2554034263263514, -0.2552091134367166, -0.25549942848307117, -0.25544186377966843, -0.2553005112726011, -0.25508107750872033, -0.2552935796111454, -0.25577047241874684, -0.2554362048797401, -0.25552731398263095, -0.2553279466099209, -0.25549089241726897, -0.2550019050637881, -0.2550304475021951, -0.25533270260985985, -0.2559059509248645, -0.2557385958455227, -0.2552558129860295, -0.2555263275165617, -0.25535813760426307, -0.2550222076199673, -0.25521618412968555, -0.25542618007755574, -0.2550904393931966, -0.2554664563525606, -0.25547356213684436, -0.2553828537096212, -0.2554156540168656, -0.2548153699364191, -0.25508100672820466, -0.255259399290806, -0.25547249265659, -0.255538434388093, -0.25547781706224254, -0.25514267863314827, -0.25533087809144717, -0.2549619276398494, -0.2552946995437881, -0.25510241298211944, -0.25516373972281997, -0.2552933238538695, -0.2555307178861565, -0.25520186268804984, -0.25543356834002484, -0.2553973552989371, -0.2551053898569978, -0.2556860920179773, -0.25553592234665967, -0.25538571441063174, -0.25512094239209904, -0.25540868404470846, -0.25546313596912373, -0.2554165132711699, -0.2550207891122059, -0.25563300373377623, -0.25505660262740687, -0.2553960344305745, -0.25529173071737643, -0.2551514692604542, -0.2556522600812676, -0.2552238388653891, -0.2550323935294593, -0.25525935743877914, -0.2558531556968336, -0.2552521923717893, -0.25553818401179196, -0.2554642513946251, -0.2551328291035729, -0.25538094705085695, -0.25470441818973166, -0.25540534489684635, -0.25568986536911975, -0.2555084437775759, -0.2551900542076723, -0.2551924959744936, -0.2557408478984862, -0.2548696180736577]|
2019-05-01 00:40:16,190 | INFO : Best of geration |106| has accuracy of |0.573566| and fitness_score of |-0.254704|
2019-05-01 00:40:16,402 | INFO : Testing generation |107|
2019-05-01 00:44:23,582 | INFO : Fitness scores of this generation: |[-0.27473363448744237, -0.27518196970872255, -0.2751185138588366, -0.2750710397310879, -0.27487888961382534, -0.2750331603638504, -0.2750502458733061, -0.27534032428394195, -0.27512085521998614, -0.27525817609351616, -0.27495762964953546, -0.2750157258108906, -0.2748249922271656, -0.275101311099918, -0.27489419945556187, -0.27489238880250766, -0.2752717885310235, -0.27474825424344645, -0.2751048152213511, -0.275050670200068, -0.2748943728921206, -0.274895445694742, -0.2748496580059114, -0.27520803569451624, -0.2753363415274931, -0.27511848956346513, -0.27491865577581137, -0.275288967302312, -0.2744429059974525, -0.2750276531862176, -0.2748641412705183, -0.2755234878348268, -0.27469354634699616, -0.27553184528065766, -0.2751109628897646, -0.2750604893040398, -0.27511021511062334, -0.27523167026431666, -0.2751440142483815, -0.27465373540054194, -0.2753309740644434, -0.2750550214039243, -0.27541267695310323, -0.27503584210315474, -0.2747480480891207, -0.27485416790713435, -0.275142233899754, -0.2749987246711617, -0.2750434658449629, -0.274888578089683, -0.27528705783188345, -0.27536851110989635, -0.27440837579576866, -0.2751873930511267, -0.27498616636123346, -0.27495911625092445, -0.27516129970874476, -0.2751794737480257, -0.275333696798138, -0.27474703281793905, -0.2748125204735476, -0.2748715021202098, -0.27508518138657445, -0.27517146095633505, -0.2748487453259852, -0.2752706968913908, -0.27504627473004484, -0.27493460954207444, -0.27503449787264284, -0.2751462466366913, -0.2749934238260207, -0.2748979157403759, -0.27482305272765783, -0.27498095981452775, -0.2751009940777136, -0.2749668296912442, -0.2746666160614594, -0.2751001667069352, -0.2752493207221446, -0.2748738339737706, -0.27534965778822484, -0.2753994245568047, -0.2750417363384496, -0.27497764037031197, -0.2745310202402913, -0.2748322565594445, -0.27496141948453756, -0.2750982672947904, -0.27512140199542046, -0.2753658593348835, -0.27495214986088484, -0.2748118667174941, -0.2746168130117914, -0.2752712789760984, -0.27514493745630203, -0.27539032182615736, -0.27538173859534054, -0.2751812495615171, -0.2753386610066113, -0.2746995739152898]|
2019-05-01 00:44:27,978 | INFO : Best of geration |107| has accuracy of |0.576060| and fitness_score of |-0.274408|
2019-05-01 00:44:28,198 | INFO : Testing generation |108|
2019-05-01 00:48:25,933 | INFO : Fitness scores of this generation: |[-0.2685060701586983, -0.26873355951498856, -0.2682617578994144, -0.26832129217006945, -0.26836044412444937, -0.268587524342266, -0.26838312162594363, -0.26872847307134756, -0.2687727337195115, -0.2688281085003506, -0.26867653541266917, -0.26843639368360694, -0.268103301897645, -0.2683193139731884, -0.2682893845168027, -0.2687623690475117, -0.26875871626490894, -0.26821984435346996, -0.26850000758740034, -0.26838518713008275, -0.26829684190452097, -0.2682804286141287, -0.26825879849493506, -0.26853673383593557, -0.26845746544951743, -0.2685290575027466, -0.2683616565032439, -0.26861398636617445, -0.2685430852526968, -0.2684303884479133, -0.2684506236829541, -0.26876970326358623, -0.2685542876070196, -0.26898075674067845, -0.268517161465504, -0.2684286087074063, -0.26845564723692156, -0.26844212541526014, -0.26851999082348565, -0.2687198863449422, -0.2686311923983422, -0.26885838996280326, -0.26853105510500347, -0.2682854204692624, -0.26849880049174485, -0.2684523390775377, -0.2684508639303121, -0.26864252595061605, -0.2687073739414865, -0.26872201934456824, -0.2682522235946222, -0.2686542011797428, -0.26811488375745035, -0.26849476881325246, -0.2682148757644675, -0.26843899932097304, -0.26858196668326856, -0.26901694349944594, -0.26859293004328555, -0.26819963235069405, -0.26824952499432997, -0.2684539829804139, -0.2683076011186296, -0.26851373274217955, -0.26882747990841216, -0.26883247051049364, -0.2684811325574463, -0.26848789047111166, -0.2684366415847432, -0.26834020526571706, -0.2682248854163018, -0.2685683566738259, -0.26862528049810364, -0.2684434141286395, -0.2688785626806996, -0.2684618389403278, -0.2685692434622483, -0.26839140633290465, -0.2682805419984189, -0.2686063350262967, -0.26856436722657895, -0.26856597631492396, -0.2686304186894135, -0.2682709459554065, -0.26839821846647693, -0.26821779744191604, -0.26852128586985846, -0.2682984910905361, -0.26869862834838304, -0.2682445401156491, -0.2683467265557159, -0.26830328052694147, -0.26824135682122274, -0.26831232929094273, -0.268515471978621, -0.2684710946611383, -0.26853941543535753, -0.26857219358736817, -0.2685664024881341, -0.2682405663484877]|
2019-05-01 00:48:30,147 | INFO : Best of geration |108| has accuracy of |0.569825| and fitness_score of |-0.268103|
2019-05-01 00:48:30,405 | INFO : Testing generation |109|
2019-05-01 00:52:37,369 | INFO : Fitness scores of this generation: |[-0.27066557630784194, -0.2705626858575312, -0.27111727237521616, -0.2710545379022308, -0.27051816631226516, -0.2709734267239117, -0.2709289560400702, -0.2707326444790194, -0.2708774137101382, -0.2703557154262048, -0.2708530697527694, -0.2709475916165572, -0.27076639297950683, -0.2706847152648828, -0.27057416134740075, -0.2712700443390088, -0.27057094008944155, -0.27071717318546357, -0.2710364365649619, -0.27083960476683994, -0.2706998384151703, -0.2711273198483756, -0.27102677753338444, -0.27033847797420407, -0.2706414334150101, -0.270742237972458, -0.2712433441551922, -0.27098529168922975, -0.27130169721480407, -0.2714316189783551, -0.2708132816745505, -0.27021739682460805, -0.2711001679548491, -0.2708467600437311, -0.2714201362514208, -0.2710200459619093, -0.2707408293519804, -0.27101029293839207, -0.2711908043015237, -0.2709776678011608, -0.2705059750722005, -0.270776262020813, -0.27076011797241856, -0.2707864464138428, -0.27054649103730694, -0.27083299444991177, -0.27149139850387743, -0.27033467166024633, -0.2704261464500859, -0.2710988529217549, -0.27117321879615613, -0.27103047479691367, -0.2709918848799365, -0.27044525128953595, -0.27090937034037316, -0.270954623975725, -0.27119569653479403, -0.2710450047775991, -0.27105283840569255, -0.2708342693869704, -0.27126705531890577, -0.2705223255117914, -0.27086983605387704, -0.27068661364584845, -0.27058181589185565, -0.2709217393380305, -0.2708245416707043, -0.2702840851173142, -0.27103099685448867, -0.27072956418649463, -0.27062825418076003, -0.2702505271179464, -0.2703424963206727, -0.2712181332783821, -0.2709951745304047, -0.2709819932508972, -0.2708158132986785, -0.271215881067883, -0.27059940177930425, -0.270320558507518, -0.27057624083478704, -0.27081996530609076, -0.2713463922926024, -0.2707377609264437, -0.2711434688413485, -0.27073721430330433, -0.2704982409200338, -0.27030484600843885, -0.2705764930532349, -0.2706323953775259, -0.2712185816842147, -0.2712928965620326, -0.27088492740153547, -0.27117843487683463, -0.27054187309328426, -0.27107442452447267, -0.27060393647460734, -0.27038836429741225, -0.2713583398323793, -0.27076374019073324]|
2019-05-01 00:52:42,042 | INFO : Best of geration |109| has accuracy of |0.574813| and fitness_score of |-0.270217|
2019-05-01 00:52:42,271 | INFO : Testing generation |110|
2019-05-01 00:56:44,245 | INFO : Fitness scores of this generation: |[-0.264563480230767, -0.2648971789465176, -0.26518701427564845, -0.2653644976653452, -0.2648487762203367, -0.2645819163697911, -0.2648508778707249, -0.26471579673252704, -0.2649878729281463, -0.26460426881557375, -0.2649801572946113, -0.26501299194463596, -0.26439178600086, -0.26496185397538613, -0.26489724183645774, -0.2648804958645753, -0.26578210657975804, -0.2646173188301522, -0.2641824299660255, -0.26444030617635084, -0.26446745914267744, -0.2649143852117493, -0.26504452995897276, -0.2649988902835395, -0.2648808449272096, -0.2644421974505026, -0.26473060790009384, -0.2647569451745101, -0.264691890694025, -0.2649585935543841, -0.2652851119050829, -0.2651295787471486, -0.26498904026399445, -0.26452898052264384, -0.26478713070313764, -0.26494132815383553, -0.26462374181728665, -0.26450160239625164, -0.2650445016819661, -0.26532429409778024, -0.2648635802306528, -0.26476733844111283, -0.2647250832065823, -0.2646797212559407, -0.2644150322816503, -0.265189852536194, -0.265117963116, -0.26534989347138743, -0.2650434811284223, -0.2647676359950088, -0.26518598879416155, -0.2646375617643041, -0.2644434838783084, -0.26465656661142517, -0.2656413579550315, -0.2653467766647264, -0.2648326935261253, -0.26482066488641454, -0.26541644428658673, -0.2646256330914385, -0.26507203996650813, -0.2645847023002745, -0.2652253805417714, -0.26525353822182485, -0.2649571855706493, -0.26480046161047116, -0.2647390441866372, -0.2647520137114788, -0.26450422969390086, -0.2650957663697521, -0.2650385941342106, -0.2648151749231684, -0.2650888656068036, -0.26470168932216376, -0.2644744639790903, -0.264745985194454, -0.26516090110531004, -0.2650196634408996, -0.26473939888120634, -0.2649374192389916, -0.2650857159471887, -0.2643800327393014, -0.26486070606652207, -0.26511922455209447, -0.2647340342285126, -0.2651818141223877, -0.2651517769013803, -0.2648901102815087, -0.26489336589189966, -0.2654552361157935, -0.26496992195685076, -0.265004856379952, -0.2644690499296339, -0.26550211164895005, -0.26573761089110937, -0.26455659929692277, -0.2649359214962937, -0.26437537008383144, -0.2649807288186757, -0.26459135643140536]|
2019-05-01 00:56:48,697 | INFO : Best of geration |110| has accuracy of |0.574813| and fitness_score of |-0.264182|
2019-05-01 00:56:49,027 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 00:56:49,409 | INFO : Testing generation |111|
2019-05-01 01:00:33,263 | INFO : Fitness scores of this generation: |[-0.2774799052476883, -0.27735809644063314, -0.27792481855551404, -0.27748288317521413, -0.27668460400899253, -0.277286181529363, -0.27720108890533446, -0.2775573477347692, -0.27726288243134817, -0.27756950855255125, -0.27651170269648234, -0.2776210857232412, -0.27698621376355487, -0.2772801110744476, -0.27793068663279213, -0.27742514995733897, -0.27741738939285276, -0.2770406185785929, -0.27708477091789246, -0.27743743228912354, -0.2773742625315984, -0.27780515535672506, -0.27757494266827903, -0.27768023252487184, -0.2772314999103546, -0.276602955977122, -0.27693896993001305, -0.27773554491996766, -0.2783080008427302, -0.277447216908137, -0.2774208490053813, -0.27752489749590553, -0.27756250564257307, -0.276651933948199, -0.27704461399714153, -0.2770996210972468, -0.2774890155792236, -0.277552085518837, -0.2773314207394918, -0.27756900842984517, -0.27706201903025307, -0.2769379682938258, -0.2773462204535802, -0.27735580305258434, -0.2773508321841558, -0.27726300636927287, -0.27729292686780294, -0.2776527132987976, -0.27678631043434143, -0.27672798041502633, -0.27694617593288423, -0.27755718378225963, -0.2773046988248825, -0.2771140867471695, -0.27741423471768695, -0.27761120720704396, -0.277617606083552, -0.2768827386299769, -0.27675279847780865, -0.27787131973107654, -0.27802861054738365, -0.2774733286698659, -0.27784849115212756, -0.2777019465764364, -0.2773415689865748, -0.27671194219589235, -0.2768934931755066, -0.2774409353733063, -0.27793123773733774, -0.2773613001902898, -0.27725138529141746, -0.2778030262788137, -0.2770679910580317, -0.27676046176751457, -0.27709526801109313, -0.27710556976000467, -0.27798262802759804, -0.2775635738770167, -0.2779066446224848, -0.2781206394036611, -0.2772700098355611, -0.2772917420466741, -0.2769663352568944, -0.2775621771812439, -0.2771967841784159, -0.2774811971187592, -0.27764483086268105, -0.2780202687184016, -0.27721768204371133, -0.2770851250886917, -0.2769655975898107, -0.2774388888279597, -0.2771839975516001, -0.27769359946250916, -0.2776610061327616, -0.2776521437168121, -0.27723813875516257, -0.27740460085868834, -0.27670087639490765, -0.2776716621319453]|
2019-05-01 01:00:37,698 | INFO : Best of geration |111| has accuracy of |0.569825| and fitness_score of |-0.276512|
2019-05-01 01:00:37,938 | INFO : Testing generation |112|
2019-05-01 01:04:39,076 | INFO : Fitness scores of this generation: |[-0.27321853412592667, -0.27326087361954626, -0.2734801764025333, -0.2732489305607816, -0.27329316808188214, -0.2730688932094168, -0.2729928578626602, -0.2732044164487656, -0.2734128242160412, -0.27333327723627393, -0.2730965778073098, -0.27329707424691385, -0.27321726110704403, -0.2732018475836896, -0.2730697091589583, -0.27322016255335607, -0.2735643284117922, -0.27326732504558054, -0.2733725908430333, -0.27312960223631655, -0.2732272934406362, -0.273253409453529, -0.2735011857557804, -0.27318443415012766, -0.2732951856991078, -0.2729391047295104, -0.27331561339979477, -0.27319890580912853, -0.27320903324066326, -0.27338982376646487, -0.2730674605737341, -0.2733683167778431, -0.27337011097276465, -0.27350874438564826, -0.2735070752495147, -0.27315807012801474, -0.27328912901117447, -0.2734467297158343, -0.272828713836188, -0.2732839371454208, -0.27323384640064646, -0.27327698144189855, -0.2731491374050049, -0.2733434598179574, -0.27324372999211577, -0.2734056209313109, -0.2731209675999398, -0.2731045528136669, -0.2732803709963535, -0.2735146108618442, -0.2730398533509133, -0.27320551697878126, -0.27314677311384933, -0.2733529197884367, -0.27302985185004297, -0.2730682260495551, -0.2732622301958977, -0.27314929213929684, -0.2728695371049516, -0.2729855461006469, -0.27313561896060373, -0.2732075223738843, -0.27328237353804263, -0.2734985994690276, -0.2733684612715498, -0.27316938798795354, -0.27323751934665313, -0.2732875201454822, -0.2734011097632824, -0.27325137341593175, -0.27299867378587417, -0.2734991558847275, -0.2734462776875242, -0.2732082781005413, -0.2730481197225287, -0.2731995924831705, -0.27369769545311623, -0.2731071344715484, -0.2730355241989836, -0.2732647144096963, -0.27337615317169656, -0.27323159515223605, -0.27306986879161066, -0.27309669901398903, -0.273378516606828, -0.27337192415874056, -0.2732220134836562, -0.27345097965382514, -0.2734695513831808, -0.27324998668850736, -0.27327299962969537, -0.27337218307434247, -0.2734982915381168, -0.27330922370261335, -0.2728417790316521, -0.27289557580618146, -0.27331724074926783, -0.27324763249526635, -0.2731618486503337, -0.2732112369004716]|
2019-05-01 01:04:43,409 | INFO : Best of geration |112| has accuracy of |0.567332| and fitness_score of |-0.272829|
2019-05-01 01:04:43,682 | INFO : Testing generation |113|
2019-05-01 01:08:49,521 | INFO : Fitness scores of this generation: |[-0.27129723035260994, -0.2714962141131455, -0.27148221854893667, -0.2712491011683832, -0.27138519937780026, -0.27152456849251155, -0.2713320531613743, -0.27162080139644706, -0.2716609650866362, -0.2714953056242909, -0.2716436879734466, -0.2714469295868655, -0.27124220715218156, -0.2712681812417475, -0.2712034785522605, -0.2710880093336748, -0.27150610470868186, -0.27178903482352307, -0.2713239231119259, -0.27140113088801865, -0.2711495884827205, -0.27165832866555595, -0.27138719163493646, -0.27106644731326246, -0.27141962732587543, -0.27122612289501974, -0.271692661101606, -0.2710102805792482, -0.27106736379492313, -0.27115867702626795, -0.27115265868423444, -0.2714158324298833, -0.2717053690207294, -0.2713210926142664, -0.2714355342150377, -0.2716094946282893, -0.2712531820783075, -0.2710779594041588, -0.2713336548554608, -0.2712861377434589, -0.2715399075711191, -0.2713178327141425, -0.27137442158078245, -0.27148073630512887, -0.27137149633423013, -0.27112570545583403, -0.27129420734480064, -0.271310290075698, -0.27151459897303515, -0.2717387038421117, -0.2714826012798397, -0.2714105859358677, -0.2713548534642654, -0.27168107173352873, -0.2714054065171599, -0.27149218385110324, -0.27116402959566555, -0.27156968426832934, -0.2715024448067673, -0.27134587143791333, -0.2714125252155602, -0.27091898550241783, -0.2711538199305213, -0.27148709560661627, -0.2719770998485647, -0.2715884502926927, -0.2714603366556193, -0.2714209707197796, -0.27133775138951377, -0.2713970200954422, -0.27113363134732466, -0.2713238063928573, -0.271400232119059, -0.27163714901456293, -0.2715286876795427, -0.2713489924881336, -0.27140419072699995, -0.2715201617251188, -0.2711548716472487, -0.271916861924521, -0.27161704570135337, -0.2717370805393332, -0.27150671220211325, -0.27144100992988063, -0.2713643945853986, -0.2714212138778116, -0.2714764008303537, -0.27130296625538336, -0.2716558794930296, -0.27133842314671314, -0.27148693852186845, -0.27143334033032956, -0.27116802901109915, -0.27114175629583653, -0.27134944129022304, -0.27172624610986995, -0.2716886579910057, -0.2712399040190679, -0.27175635810328946, -0.27137955509106104]|
2019-05-01 01:08:53,957 | INFO : Best of geration |113| has accuracy of |0.567332| and fitness_score of |-0.270919|
2019-05-01 01:08:54,198 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 01:08:54,203 | INFO : Testing generation |114|
2019-05-01 01:13:01,856 | INFO : Fitness scores of this generation: |[-0.26204913165949123, -0.2619354001057386, -0.2618628451062051, -0.26174739759207777, -0.2620280133217542, -0.26171430106716453, -0.2620955388973439, -0.261830454024356, -0.26194353148215826, -0.2619206113378458, -0.26170343810106805, -0.261755930371465, -0.2618483249352683, -0.26177697830082364, -0.26166341252444797, -0.2619532326747566, -0.2620419825962916, -0.262049070613304, -0.26186701465793716, -0.26198878720575075, -0.26188503734602914, -0.26201662462357467, -0.2618808572255976, -0.2615017319836514, -0.26218093409115834, -0.2619433385700959, -0.26180647443647015, -0.2617546125353323, -0.2616082772604737, -0.261892175452723, -0.2618221880008244, -0.26189701934075754, -0.26216035198369364, -0.26202407266972066, -0.26167330360892066, -0.2621662565178926, -0.26191330815496006, -0.2621075306812421, -0.26192005339042373, -0.2618579067893083, -0.26197611216600636, -0.2618209925312725, -0.26166159363089425, -0.26197691235131143, -0.2617666125375891, -0.2620234350614116, -0.26181793374672424, -0.26176148174344305, -0.26222185296183753, -0.2620548304605183, -0.26183272072444075, -0.26160126143809875, -0.26198209576958986, -0.26194393926238413, -0.26188995842709273, -0.2619902193311261, -0.26200515707145855, -0.26181847111691187, -0.26196788262368254, -0.26215453676244815, -0.2618922099635616, -0.26189554235129203, -0.2617132344237136, -0.26190108465095424, -0.2620795910549277, -0.2619295523322719, -0.2617397645310147, -0.2618519817092128, -0.26203676849431295, -0.26180952050175704, -0.2615905549498637, -0.2619061274914273, -0.26224744375540504, -0.26166356161440457, -0.2618485854353, -0.262049104513054, -0.2620567616416077, -0.26171209296499515, -0.261817628927098, -0.2621113120663429, -0.262353198017169, -0.26202224894621645, -0.2620342224914694, -0.2621198325691163, -0.2617915915765973, -0.2620975597165172, -0.26176318067168086, -0.26176985571813133, -0.2620277743861001, -0.26200144254572133, -0.26189681124941033, -0.26166133217505727, -0.26187328604901, -0.26204719315317276, -0.26173243385697514, -0.2618773135422219, -0.2620989701678324, -0.26189191366783826, -0.2618464271368539, -0.2622363008088682]|
2019-05-01 01:13:06,196 | INFO : Best of geration |114| has accuracy of |0.572319| and fitness_score of |-0.261502|
2019-05-01 01:13:06,483 | INFO : Testing generation |115|
2019-05-01 01:17:17,322 | INFO : Fitness scores of this generation: |[-0.27303039516753674, -0.2728181630523366, -0.2734313902795676, -0.27316717611387087, -0.27334162944741736, -0.27318816058766227, -0.27283487224614944, -0.2731163568351151, -0.2727825008934189, -0.27300472640997225, -0.27328713490476403, -0.27309705865852285, -0.2735849729956219, -0.273078529884067, -0.2727723935154745, -0.2728109653403853, -0.27298412001743444, -0.2727620290661857, -0.27325560376574365, -0.27298315007739543, -0.273435422163889, -0.27304846290442586, -0.272976186724171, -0.2729057414996636, -0.27302170864764064, -0.27301583064327206, -0.273308555072119, -0.2730285176700949, -0.27334726368773477, -0.273213625179771, -0.2729655959757137, -0.27321732816343713, -0.2728647872820632, -0.27307043603868586, -0.27318855672773995, -0.2731712411874839, -0.2734556178873411, -0.27318506371361456, -0.27297930989327995, -0.27313419993060867, -0.2728566081459539, -0.2729659872101366, -0.2732964309362843, -0.27332590248221467, -0.27358404215421495, -0.27320732415384047, -0.272863387463823, -0.2730174843376027, -0.27300042400416646, -0.2732844682998662, -0.2730905212138664, -0.27316399407314607, -0.2733178355408725, -0.27323227802030253, -0.2730133410065795, -0.27286251212585827, -0.27282909288115265, -0.27296784729156437, -0.2729555266325698, -0.27354141075152805, -0.2733234433244865, -0.27325684053204974, -0.2731061421567809, -0.27298533202240133, -0.27295966039662645, -0.2734039571252769, -0.2732584687583261, -0.27315507161569164, -0.27342070415841585, -0.273209544968172, -0.27295023222443554, -0.27312290265509626, -0.2729172715813854, -0.2732594928259686, -0.2730796431218519, -0.27324648204472907, -0.27316461736947206, -0.2728977277649399, -0.2729811354734823, -0.27289907242557715, -0.2730234609625474, -0.27280198171073206, -0.27322688415330787, -0.2732282051389922, -0.2733411391300462, -0.273340559285416, -0.2729844042935477, -0.27312009473351007, -0.2728349976316771, -0.27300391822121095, -0.2733648837357008, -0.2734728474188765, -0.2735799562137134, -0.2730532461470961, -0.273068515236154, -0.272736896100096, -0.2729388120406571, -0.27285731934183904, -0.27320766609113223, -0.2732272876650245]|
2019-05-01 01:17:21,744 | INFO : Best of geration |115| has accuracy of |0.572319| and fitness_score of |-0.272737|
2019-05-01 01:17:21,996 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 01:17:22,308 | INFO : Testing generation |116|
2019-05-01 01:21:20,447 | INFO : Fitness scores of this generation: |[-0.2620411627102589, -0.26185818876045336, -0.2617482964543329, -0.26198268856691276, -0.26219501970470815, -0.2621231497629829, -0.2622621354417525, -0.26212975555571955, -0.2621293110691983, -0.2622811384391094, -0.26223693723263947, -0.26169269292250924, -0.2618699660335762, -0.2619672958401666, -0.2621250219103219, -0.2621873951476553, -0.26255085304163506, -0.2621311972970548, -0.2624675583580266, -0.26207920787990957, -0.261904604409052, -0.2619457690180212, -0.2617387023093044, -0.26175183602001356, -0.26279232346493264, -0.2622577276782713, -0.2620518628669822, -0.2623986320219178, -0.26198742631552874, -0.2624585658311844, -0.2621448793273041, -0.26217955134917, -0.26201139697130177, -0.26233915120795154, -0.2619036408438199, -0.26197242162365847, -0.2616051381048949, -0.26212487350339475, -0.2619234172762304, -0.2618517212677693, -0.2621716670368029, -0.2618352665417436, -0.2618321889984435, -0.2626036818476691, -0.2618656756653302, -0.2620642042246418, -0.2621201341566832, -0.2615846801927124, -0.26219960472721987, -0.26220305691594664, -0.2628339241380277, -0.26215506602024685, -0.2622379399728084, -0.26229458848635356, -0.26249308357204215, -0.2618454551351243, -0.2621725836093875, -0.2620564379985782, -0.2620461670816808, -0.26205693012562353, -0.2620179070510726, -0.2619923590749934, -0.2617165638052899, -0.2616285931372988, -0.26235133573628855, -0.2623361094274383, -0.2621084140262742, -0.26207552617010865, -0.26192532518635625, -0.2618706351173097, -0.2618752944296685, -0.26192170178544694, -0.2623564749524213, -0.26243858743404996, -0.26190419862235803, -0.26238554551981497, -0.26199956691783405, -0.2620447972114535, -0.26206118045509724, -0.2622141578923101, -0.261856861822847, -0.2622603121443071, -0.2623986835065095, -0.2621455210706462, -0.26195730230082637, -0.26177422110585197, -0.26221991155458535, -0.26196151246195254, -0.2622929118681645, -0.26251072918159374, -0.2620043044504912, -0.26237684280976004, -0.26155744950840437, -0.26172753749550254, -0.26199982753698375, -0.26187391989472986, -0.26190670132637023, -0.2620556988577912, -0.2622836354849995, -0.2618960007377293]|
2019-05-01 01:21:24,842 | INFO : Best of geration |116| has accuracy of |0.576060| and fitness_score of |-0.261557|
2019-05-01 01:21:26,458 | INFO : Testing generation |117|
2019-05-01 01:25:40,692 | INFO : Fitness scores of this generation: |[-0.2620609614473292, -0.26148849357495957, -0.261938868851915, -0.2616657123967627, -0.26209059686294606, -0.2620419553431573, -0.26208489847651256, -0.26190458458372956, -0.26255034557253326, -0.26225883298603, -0.2619914536388036, -0.2618343330420743, -0.26143714210865954, -0.26141215979571153, -0.2621763487955164, -0.26221085147067524, -0.2621298615775538, -0.26242012465179104, -0.2618011651392897, -0.2614252429292053, -0.2615831385067649, -0.2618862460033998, -0.2620887912758228, -0.2617594234765815, -0.2618874911795312, -0.26217305113068906, -0.26181902313136063, -0.2618494205538175, -0.26167372311304127, -0.2614156336934407, -0.26203255460320113, -0.2614835707371835, -0.26217110830146223, -0.2622019301144961, -0.2617732742435662, -0.2615554006318572, -0.26161764988860686, -0.2618521964715204, -0.2618403826726226, -0.26187975573897637, -0.2621416343896549, -0.26208990674646565, -0.2620462174538101, -0.2617358870064414, -0.2616172931382893, -0.2615560233317677, -0.2619608636541124, -0.261630171406627, -0.26165504824137853, -0.2621287916363249, -0.2619374229919002, -0.26158144137462896, -0.26169410401279875, -0.26169878160086296, -0.26175739657452146, -0.2620523686737992, -0.2618332941592703, -0.261860467510741, -0.2621033338627694, -0.2624175811990855, -0.26194146179161776, -0.2614279652130521, -0.2619547774073158, -0.2615205604608835, -0.2620063778916352, -0.26194708457100474, -0.262129500129757, -0.26169792296016464, -0.2619820382213758, -0.2619082254570571, -0.26200422842494336, -0.2614124879481886, -0.2621574047049529, -0.26187753999136887, -0.262162122952883, -0.2619360968057608, -0.26157755874458694, -0.26151183557290125, -0.2619718413017088, -0.2618103922962041, -0.2619108267593053, -0.2620477491245534, -0.26231273485661655, -0.26183351922530773, -0.261600136756897, -0.26180046573109217, -0.26199217135512526, -0.26224662583777314, -0.26214758840155106, -0.2619444576993275, -0.2620861734377595, -0.26197741979057737, -0.2619072587055092, -0.2618429984974806, -0.2619671654859536, -0.26237156221483926, -0.2624741449057368, -0.26200148762648984, -0.26209123793980815, -0.2623630473368713]|
2019-05-01 01:25:44,965 | INFO : Best of geration |117| has accuracy of |0.573566| and fitness_score of |-0.261412|
2019-05-01 01:25:45,218 | INFO : Testing generation |118|
2019-05-01 01:29:50,787 | INFO : Fitness scores of this generation: |[-0.27199379981510224, -0.27252940368400047, -0.2721868611517407, -0.27213599831128665, -0.2721379633723533, -0.2724269303169621, -0.27251275485575305, -0.2725226072827765, -0.27228832796767904, -0.2721864107529743, -0.2727305925397015, -0.27221675713857013, -0.2723256528798024, -0.2721782256266007, -0.27238584337411104, -0.27220072632744197, -0.2724800605517426, -0.27258025222774956, -0.2724322780730232, -0.2725327509000398, -0.2719168390756772, -0.27233142585771214, -0.2727284548143861, -0.2721002293221744, -0.2719622303253759, -0.2724041802647673, -0.2724717141669474, -0.272426206230907, -0.2719133038474559, -0.27192595285713356, -0.2726880432331583, -0.2723220753922034, -0.27191191869648257, -0.2720425952574143, -0.27287342214079763, -0.2725945022581326, -0.2719959420606993, -0.27236380747386385, -0.27278988113268765, -0.2725119630180339, -0.2722952444717367, -0.27206400877794473, -0.27267406005708, -0.27214889520059815, -0.27217339370826776, -0.2720638482028214, -0.27209279666502006, -0.2724123063646717, -0.2718226142766404, -0.27228372132757145, -0.27266685924832784, -0.27195320432148284, -0.27163017121992833, -0.27232913691320537, -0.2722481677351385, -0.27221319794234355, -0.27202418809214596, -0.272186502893135, -0.2726977501176232, -0.2720052196235253, -0.2721233416802038, -0.27217613284129527, -0.2725009211787471, -0.27226850605936065, -0.27206599644041984, -0.2724237916120566, -0.27288584834263646, -0.2721699643387366, -0.27210682651563506, -0.2722563253718919, -0.27259258466002384, -0.2719253647474595, -0.27200869992506777, -0.2721851335105862, -0.27285640543520556, -0.27235316625768335, -0.2721993562615948, -0.27234349406375247, -0.27275719502825796, -0.27234468305552445, -0.2719275021574064, -0.27229143949833284, -0.2727676038178607, -0.27219057361705384, -0.2720080749172803, -0.27206176992446657, -0.2724459724766867, -0.27273769952632765, -0.271938174279699, -0.2721430689254135, -0.2724408448478322, -0.27215582190157034, -0.2720706166413726, -0.27225476787203834, -0.2729063622745467, -0.2721379269472926, -0.27210935419408944, -0.27212448646782567, -0.27221350195756877, -0.27242736820611163]|
2019-05-01 01:29:55,122 | INFO : Best of geration |118| has accuracy of |0.573566| and fitness_score of |-0.271630|
2019-05-01 01:29:55,326 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 01:29:55,329 | INFO : Testing generation |119|
2019-05-01 01:34:02,162 | INFO : Fitness scores of this generation: |[-0.2652544755510917, -0.2651272593972604, -0.2655835825668333, -0.2653607916959995, -0.2656389713822142, -0.26550183529079835, -0.2651960410951531, -0.26597366622604063, -0.26539315141295855, -0.2654196961300246, -0.26536482540144096, -0.2651249165441628, -0.2656684492518715, -0.2655961744005165, -0.2659128927597862, -0.26553645652636293, -0.2653765506625111, -0.26512988591936376, -0.26540480477531814, -0.264870840355211, -0.2656585272764174, -0.26590604002042073, -0.26552655561227007, -0.2653304954596743, -0.26543483775779564, -0.2655927809203462, -0.26549900435377166, -0.2652101978019504, -0.2658220642165784, -0.26582372650431185, -0.26572719834595027, -0.2654314110862813, -0.2654329220956275, -0.26578824750799535, -0.26544536271979785, -0.26528836778644116, -0.2656553247239585, -0.2655981197961327, -0.26543959231805125, -0.2652862745521022, -0.26535661198105615, -0.2656310921562243, -0.2652232438050385, -0.26501825589802097, -0.26563538417276833, -0.26569717208884736, -0.26541428948190954, -0.26510341900191664, -0.26527153308209095, -0.2654915771073884, -0.26581241461271626, -0.2648649004922573, -0.26588936251157197, -0.26555378782062056, -0.2653452631100291, -0.26551690409613277, -0.26555596767859396, -0.26546737364918205, -0.26562922961033514, -0.2654934021978031, -0.26549226168772005, -0.2656659068232843, -0.2653959023646196, -0.2649930967802973, -0.2655488105127188, -0.26541420796307746, -0.26530398052062204, -0.2650758790935006, -0.265523648095105, -0.26587587626992265, -0.265704662264074, -0.2651760277073464, -0.26529881062392247, -0.26566293483368075, -0.26550804868607886, -0.2655263876804779, -0.26561346233231403, -0.265703571092311, -0.2652247535624927, -0.2652720429444845, -0.26522883476893044, -0.26548694603068146, -0.26556851755363775, -0.2650093757580356, -0.26538633780028265, -0.2658574797512883, -0.2655816767354612, -0.2652320964884797, -0.26530456001697644, -0.2657154753496298, -0.2656532598476069, -0.26479838913293424, -0.26549893350438164, -0.2659252872807037, -0.2654700157389069, -0.2653607197729805, -0.26566774535026805, -0.2654114322673049, -0.26486587212251345, -0.26525379810330335]|
2019-05-01 01:34:07,055 | INFO : Best of geration |119| has accuracy of |0.572319| and fitness_score of |-0.264798|
2019-05-01 01:34:07,265 | INFO : Testing generation |120|
2019-05-01 01:38:03,928 | INFO : Fitness scores of this generation: |[-0.2604538085651756, -0.2604823913250256, -0.2601963927130738, -0.26036228517591764, -0.26045043717978816, -0.26056294472574365, -0.2607161037684532, -0.26048849070527513, -0.26057446909906273, -0.26037066984564794, -0.26040744273902927, -0.2602835453407572, -0.2604135131287291, -0.26034926912824885, -0.26037608428567216, -0.2605302967574347, -0.26082530903233986, -0.2607550278408645, -0.2601526150609377, -0.26034041941539154, -0.26034781140839225, -0.2605338900740175, -0.26011313074405445, -0.26101176153329586, -0.26045317304977866, -0.2602703063728366, -0.2604805622331485, -0.26049191825227136, -0.2599617203437468, -0.26023963216923146, -0.2606760538046108, -0.26067242659884987, -0.26041288162554216, -0.2602882973369241, -0.2602145205121826, -0.26044375001077885, -0.2606040565256186, -0.26063149459263496, -0.25993421216569396, -0.2605036515964145, -0.2604347694438924, -0.2606599310934357, -0.26039104561135407, -0.2604643489859891, -0.26043280163218846, -0.26045316561319415, -0.26057107510533867, -0.260621831866078, -0.2603210550625024, -0.26026766871801377, -0.26043196436794536, -0.26067948710866173, -0.2603295732641787, -0.26068717775004463, -0.26023711115774995, -0.26071355084590636, -0.2604002135204537, -0.2604752742523839, -0.2603102634213608, -0.26051129900856773, -0.26069918260883373, -0.26057359036909616, -0.2607646707862933, -0.26052564111029125, -0.26065391580164243, -0.26056258268444404, -0.2605304816363376, -0.26061388016045656, -0.26055094459763, -0.2604545598001725, -0.2605299552157288, -0.26070534919826555, -0.2607909692363882, -0.26023206306981833, -0.26051888508056203, -0.2606472275782617, -0.2606287714870706, -0.26074416400793576, -0.26046443838362554, -0.2603636779166343, -0.2604815550498389, -0.26025333630157843, -0.26033413403655264, -0.26045320076201955, -0.26038545631362114, -0.2611461502821205, -0.2605269109280914, -0.2606085240094454, -0.2605634860381829, -0.26026388116381505, -0.26030004654329275, -0.26046489853745486, -0.26076078995287827, -0.2605253674962331, -0.25998539549899835, -0.2602697632222453, -0.2605915039535157, -0.260332441070562, -0.2601901857029593, -0.2603797423108041]|
2019-05-01 01:38:08,912 | INFO : Best of geration |120| has accuracy of |0.573566| and fitness_score of |-0.259934|
2019-05-01 01:38:09,556 | INFO : Testing generation |121|
2019-05-01 01:42:15,688 | INFO : Fitness scores of this generation: |[-0.27026139428982365, -0.27062435830250764, -0.2707809154421855, -0.270677263283322, -0.2709727378991934, -0.27051246096181053, -0.2705880511774976, -0.2707118816737436, -0.27055676638061166, -0.2708472193688409, -0.2706306528968689, -0.2712218450048031, -0.2705516138902077, -0.2705331177283556, -0.2705107145329826, -0.27040641672081417, -0.27113948692368645, -0.2705272627182496, -0.27092965176472295, -0.2709594328179319, -0.2705936592995611, -0.27105667505763537, -0.270596985760917, -0.2708228080827966, -0.2706452809974679, -0.27062379237678313, -0.2704139969542495, -0.2706396414173974, -0.27069619049628574, -0.27092663867351335, -0.2711918252146142, -0.2708999136956329, -0.2712052697554613, -0.27072032674764973, -0.27035961764999944, -0.27033422390619916, -0.270511675084758, -0.2710195186937976, -0.27081279112742496, -0.2708732103690123, -0.2709856234554552, -0.2709488434414578, -0.2706078177588618, -0.2704380692070366, -0.2704515957679504, -0.2705658767849971, -0.271216636030083, -0.2707815202128174, -0.2708509622985481, -0.2701779058219021, -0.2708525810486231, -0.2704454767398345, -0.2702492497797705, -0.2705725135329442, -0.27049081683413595, -0.270499356282063, -0.27099814164078134, -0.2710126672799771, -0.2711446524685265, -0.2703403580901969, -0.2706997751170753, -0.2704690692261753, -0.2707969647569534, -0.27047177779878306, -0.2708252865152481, -0.2707153883499977, -0.27082884184315675, -0.27099614017284834, -0.2706528498321517, -0.27076822844071263, -0.27075711809671843, -0.27057883659234416, -0.27044801133820134, -0.2707716683164621, -0.27071507848226106, -0.27091870743494767, -0.27087382443694985, -0.27096139467679536, -0.2713522547457972, -0.2705704973548905, -0.2705608959763478, -0.27048128951563793, -0.2702038751071335, -0.27079622791363644, -0.2707392665692884, -0.2704968897578044, -0.2705166465324214, -0.270006813809403, -0.2708037081055152, -0.2710321883105824, -0.27087884657403344, -0.27047372940513825, -0.27036424751719856, -0.27081296083509415, -0.270254801099117, -0.27086589007805556, -0.27092077716802937, -0.27130189665362364, -0.27034080487031203, -0.2706222834750118]|
2019-05-01 01:42:20,824 | INFO : Best of geration |121| has accuracy of |0.572319| and fitness_score of |-0.270007|
2019-05-01 01:42:21,117 | INFO : Testing generation |122|
2019-05-01 01:47:11,262 | INFO : Fitness scores of this generation: |[-0.2599658596500103, -0.2600234724381976, -0.25967026390597003, -0.25972652515980904, -0.25991380000845404, -0.2600738855257426, -0.25947934854714916, -0.2601228075834636, -0.2602701377262108, -0.2601813888110449, -0.2597863803151691, -0.25946076962773656, -0.2598301071165748, -0.259976597739759, -0.2599308312872385, -0.2602896489159235, -0.2600583196541723, -0.2598918471862037, -0.25945267264001604, -0.2593482966545121, -0.26003113392903304, -0.26010257450879515, -0.25985365050412906, -0.26009491522445916, -0.2601177123680818, -0.2599391159440518, -0.25965341958669924, -0.2598363329053158, -0.26008927424554334, -0.2601334562273641, -0.26012947338901155, -0.2598637013227739, -0.25985144850520314, -0.26001460901756185, -0.2595404646148576, -0.2596618972781897, -0.2591900062071134, -0.26005962275245653, -0.260297540320109, -0.26004952700676204, -0.2603556997272133, -0.2600119678960932, -0.2595160543743645, -0.25928482654354423, -0.2603614630064619, -0.2599390855682339, -0.2598282863949143, -0.2598055045995849, -0.25962754029389384, -0.25969847188187206, -0.25950815351236434, -0.2597088240480703, -0.2601052112075447, -0.26002289733891387, -0.2598889432969003, -0.25990044050020716, -0.2601217090578073, -0.26001459410668043, -0.25970440612108353, -0.25959436109426826, -0.25968950849806494, -0.26005824558577817, -0.26007649607698824, -0.26007089401800026, -0.2604640334727946, -0.25986579349246275, -0.25965263520046067, -0.25937815338120457, -0.2597011102913877, -0.2601780136834541, -0.25993239059218065, -0.26005465272432515, -0.2599323297141816, -0.25975305388273945, -0.25970803925358077, -0.25968031380119, -0.25991008167786295, -0.25979200839529765, -0.25976114132516304, -0.2600899395294152, -0.25990375748119243, -0.25995583400684324, -0.2595630875422297, -0.2598680569040021, -0.25998534750137464, -0.2599761261612624, -0.25970551685538856, -0.2600565932482112, -0.26009045067909725, -0.26005529567103564, -0.25970642958796264, -0.2600241394036748, -0.2598254100333921, -0.26005331500246875, -0.2599048509523127, -0.25998745240460636, -0.2601464220358512, -0.2593041236930942, -0.2595278115557909, -0.25973176612079496]|
2019-05-01 01:47:17,305 | INFO : Best of geration |122| has accuracy of |0.574813| and fitness_score of |-0.259190|
2019-05-01 01:47:17,589 | INFO : Testing generation |123|
2019-05-01 01:51:25,678 | INFO : Fitness scores of this generation: |[-0.2668509637521647, -0.2666571459202009, -0.2673085036678849, -0.2666514998125298, -0.26670016525425166, -0.2666306963192923, -0.2670551892394854, -0.26705938211588737, -0.2667914163047704, -0.26731136769494007, -0.26665246452842756, -0.2671107356753623, -0.26693292373967903, -0.2665133463126795, -0.26728057359980645, -0.26711981571484633, -0.26740294816258436, -0.2668378285476776, -0.26694765022504474, -0.2668317980537109, -0.26732079694681715, -0.2664873519233454, -0.26661232652985684, -0.26656084045151046, -0.2669834615948681, -0.26710075354862595, -0.26700121866606263, -0.26676280635380456, -0.2669117976333175, -0.2672347450686074, -0.2663410717599064, -0.2672039592098967, -0.26711230449507806, -0.2669414661038861, -0.2666285336813398, -0.2671206938886197, -0.26750136380679457, -0.26655031084138975, -0.26713890816086283, -0.2667562355982446, -0.2667217837952485, -0.26730086154071925, -0.26681274778454583, -0.2665637472522593, -0.26694837773594265, -0.26661014220663637, -0.26590745928927323, -0.26701363640649617, -0.26718098551870506, -0.26739677953942914, -0.266526251514063, -0.2668668929144283, -0.2668567717632401, -0.26645266679482404, -0.26760193381274494, -0.2666895066466287, -0.26711408246820856, -0.26729687938941654, -0.26657893545477984, -0.2669959931133268, -0.26701465513661643, -0.26664295452379577, -0.2663724635527513, -0.26704470568569066, -0.2671888867549807, -0.26693353134497144, -0.2667297944923905, -0.26669324850924664, -0.2670238814621328, -0.2663533603834692, -0.2668317616065449, -0.2673129323566549, -0.2669844189895011, -0.2664081870276078, -0.2664612109893473, -0.26687011948335315, -0.26666951784304527, -0.266339777089725, -0.26670732368057337, -0.26681844273380667, -0.2670363525005781, -0.2669277664259056, -0.2667995678566804, -0.26651232455855856, -0.26830068206755275, -0.26679877493187326, -0.2668049022734404, -0.26687140609616433, -0.2672850798382778, -0.266868029401522, -0.26681639478903746, -0.26693389328999895, -0.26746466853351236, -0.26681453741599465, -0.26697335566315694, -0.266839523261316, -0.26682156724270895, -0.26702432449812563, -0.26675830427333413, -0.2669671702687349]|
2019-05-01 01:51:29,902 | INFO : Best of geration |123| has accuracy of |0.576060| and fitness_score of |-0.265907|
2019-05-01 01:51:30,141 | INFO : Testing generation |124|
2019-05-01 01:56:21,632 | INFO : Fitness scores of this generation: |[-0.26275943286706127, -0.2623673576661568, -0.2626254887729667, -0.2630766878453325, -0.2631423925150981, -0.26322728503598186, -0.26204620818614266, -0.2625951572538979, -0.2629503949676439, -0.2641146266927567, -0.26292157359150914, -0.2629699908164485, -0.26280610840794655, -0.2626667495476317, -0.2627340562544298, -0.2619359033460714, -0.26298580828010604, -0.2635315825354378, -0.26243840938728674, -0.2631382622116709, -0.26349038997305496, -0.2623160858631826, -0.2626403115787077, -0.2625437854682413, -0.26240399172759366, -0.26220577548654056, -0.2626974983208411, -0.262985454761411, -0.2631706586337401, -0.2622366759098839, -0.26295314800583575, -0.26213043197146, -0.262160149169072, -0.2638198174049616, -0.2626687701364387, -0.26242010464083476, -0.26313731054868683, -0.2627156461617424, -0.26230224050008333, -0.2628289214585447, -0.2631866221244519, -0.26307805261002914, -0.2623484049030243, -0.2630903159629105, -0.2625697497359554, -0.26222628099824935, -0.26288597802638314, -0.26262531052134036, -0.26297596425726383, -0.2633640609995201, -0.2623478930730086, -0.26332079758664867, -0.2624079058884882, -0.26290815086773067, -0.26270005370778166, -0.26135134882954625, -0.26297073864279363, -0.263511128172127, -0.26404738988516463, -0.2626101529909668, -0.2626901479824534, -0.2627814253373139, -0.2630770170550215, -0.26213581066346137, -0.26290444015418496, -0.26290384123131566, -0.2628242104423755, -0.26275091560987324, -0.2625942379452494, -0.26255192799042204, -0.26273051799641295, -0.26244657338530647, -0.26201008932856934, -0.2626282314300883, -0.26242142781636885, -0.26280152849604327, -0.26298106940806515, -0.26298471593199346, -0.2625390029957056, -0.2615519550308607, -0.2627506019934168, -0.2625462870466346, -0.26269908796547115, -0.2626489470503327, -0.26252567300948765, -0.2631544535668737, -0.2625767708862814, -0.26236273328866944, -0.26195942503447456, -0.26275394240553734, -0.2619343498621693, -0.2627251815207638, -0.262459578638672, -0.2629184402384848, -0.26207657303277226, -0.26246195391404437, -0.26217988018806165, -0.2630256884805696, -0.26295015665720095, -0.2634240950529392]|
2019-05-01 01:56:27,531 | INFO : Best of geration |124| has accuracy of |0.569825| and fitness_score of |-0.261351|
2019-05-01 01:56:27,883 | INFO : Testing generation |125|
2019-05-01 02:01:03,861 | INFO : Fitness scores of this generation: |[-0.25674043334575286, -0.2568013284944127, -0.25653656519662493, -0.25685481120093884, -0.2569477390126878, -0.25731327098758416, -0.2572048660590354, -0.2567182100448475, -0.2570264039148056, -0.2569288626006479, -0.2571019638740367, -0.25743751213508614, -0.2568371053562459, -0.25646251382659946, -0.25675022945421466, -0.2567057655765558, -0.25707968023629146, -0.2572276016393031, -0.2566583503042638, -0.25708936895942625, -0.2572970693290313, -0.2567033525482117, -0.2567253532419958, -0.25727235816250915, -0.25653772954526016, -0.2566637101064957, -0.2573940575637349, -0.25715470746416813, -0.2571365827345753, -0.25654732233103844, -0.2567058506348773, -0.25701096601497286, -0.2566781369338473, -0.2569698924235851, -0.25667262119383294, -0.25772226068523935, -0.25696695361479344, -0.2567480148606566, -0.25619082729694537, -0.25658607846039383, -0.25655281669886937, -0.2573787137114036, -0.25697811181405944, -0.25732948975377823, -0.2565839620997231, -0.2569619702845614, -0.2571778138171867, -0.25640065372385984, -0.2568641578949305, -0.25707370605304897, -0.2573365207370692, -0.25730496942799086, -0.25719284935103626, -0.25721954504846734, -0.25668681904693363, -0.2568305716126326, -0.25670893348822715, -0.25698460106197424, -0.25753840529526845, -0.2575275804476434, -0.2568845804805458, -0.2566747762074825, -0.25665132798363327, -0.25646115106791456, -0.25677513834311666, -0.25736537178951113, -0.256940323201467, -0.2570245834252986, -0.2574556831265509, -0.2569291562455426, -0.2569291649527284, -0.256532951768928, -0.25693145411145957, -0.2566651389655839, -0.257146559705139, -0.25696964188915483, -0.25678928711935184, -0.2572513017679749, -0.2563070661300524, -0.2569883983547627, -0.2569375827235688, -0.25668018540815213, -0.25725236560798104, -0.25745821955946496, -0.2571207290864086, -0.2568734911472041, -0.25691563465878625, -0.2568718586092293, -0.256798999549779, -0.2570017709595907, -0.2570989248485046, -0.25761192878225886, -0.2570739699351993, -0.2569473031784592, -0.2564304780813644, -0.2569820177685692, -0.2565420936461622, -0.2567579207786051, -0.2572549019815279, -0.25662117155088215]|
2019-05-01 02:01:07,728 | INFO : Best of geration |125| has accuracy of |0.576060| and fitness_score of |-0.256191|
2019-05-01 02:01:08,220 | INFO : Testing generation |126|
2019-05-01 02:51:50,232 | INFO : Resuming from previous checkpoint
2019-05-01 02:51:50,456 | INFO : Splitting the training data (size |7212|) into |80| node data
2019-05-01 02:51:50,458 | INFO : Node(id = |1|, Sample count = |117|, Alcoholic samples = |60|, Non-Alcoholic samples = |57|)
2019-05-01 02:51:50,458 | INFO : Node(id = |2|, Sample count = |152|, Alcoholic samples = |73|, Non-Alcoholic samples = |79|)
2019-05-01 02:51:50,458 | INFO : Node(id = |3|, Sample count = |53|, Alcoholic samples = |20|, Non-Alcoholic samples = |33|)
2019-05-01 02:51:50,459 | INFO : Node(id = |4|, Sample count = |32|, Alcoholic samples = |18|, Non-Alcoholic samples = |14|)
2019-05-01 02:51:50,459 | INFO : Node(id = |5|, Sample count = |47|, Alcoholic samples = |25|, Non-Alcoholic samples = |22|)
2019-05-01 02:51:50,459 | INFO : Node(id = |6|, Sample count = |63|, Alcoholic samples = |24|, Non-Alcoholic samples = |39|)
2019-05-01 02:51:50,459 | INFO : Node(id = |7|, Sample count = |57|, Alcoholic samples = |32|, Non-Alcoholic samples = |25|)
2019-05-01 02:51:50,459 | INFO : Node(id = |8|, Sample count = |439|, Alcoholic samples = |227|, Non-Alcoholic samples = |212|)
2019-05-01 02:51:50,459 | INFO : Node(id = |9|, Sample count = |165|, Alcoholic samples = |84|, Non-Alcoholic samples = |81|)
2019-05-01 02:51:50,459 | INFO : Node(id = |10|, Sample count = |322|, Alcoholic samples = |158|, Non-Alcoholic samples = |164|)
2019-05-01 02:51:50,460 | INFO : Node(id = |11|, Sample count = |3|, Alcoholic samples = |0|, Non-Alcoholic samples = |3|)
2019-05-01 02:51:50,460 | INFO : Node(id = |12|, Sample count = |11|, Alcoholic samples = |3|, Non-Alcoholic samples = |8|)
2019-05-01 02:51:50,460 | INFO : Node(id = |13|, Sample count = |144|, Alcoholic samples = |71|, Non-Alcoholic samples = |73|)
2019-05-01 02:51:50,460 | INFO : Node(id = |14|, Sample count = |42|, Alcoholic samples = |22|, Non-Alcoholic samples = |20|)
2019-05-01 02:51:50,460 | INFO : Node(id = |15|, Sample count = |190|, Alcoholic samples = |84|, Non-Alcoholic samples = |106|)
2019-05-01 02:51:50,460 | INFO : Node(id = |16|, Sample count = |29|, Alcoholic samples = |8|, Non-Alcoholic samples = |21|)
2019-05-01 02:51:50,460 | INFO : Node(id = |17|, Sample count = |51|, Alcoholic samples = |24|, Non-Alcoholic samples = |27|)
2019-05-01 02:51:50,460 | INFO : Node(id = |18|, Sample count = |192|, Alcoholic samples = |99|, Non-Alcoholic samples = |93|)
2019-05-01 02:51:50,460 | INFO : Node(id = |19|, Sample count = |4|, Alcoholic samples = |2|, Non-Alcoholic samples = |2|)
2019-05-01 02:51:50,460 | INFO : Node(id = |20|, Sample count = |78|, Alcoholic samples = |37|, Non-Alcoholic samples = |41|)
2019-05-01 02:51:50,460 | INFO : Node(id = |21|, Sample count = |26|, Alcoholic samples = |12|, Non-Alcoholic samples = |14|)
2019-05-01 02:51:50,460 | INFO : Node(id = |22|, Sample count = |140|, Alcoholic samples = |62|, Non-Alcoholic samples = |78|)
2019-05-01 02:51:50,460 | INFO : Node(id = |23|, Sample count = |130|, Alcoholic samples = |69|, Non-Alcoholic samples = |61|)
2019-05-01 02:51:50,461 | INFO : Node(id = |24|, Sample count = |86|, Alcoholic samples = |40|, Non-Alcoholic samples = |46|)
2019-05-01 02:51:50,461 | INFO : Node(id = |25|, Sample count = |52|, Alcoholic samples = |27|, Non-Alcoholic samples = |25|)
2019-05-01 02:51:50,461 | INFO : Node(id = |26|, Sample count = |38|, Alcoholic samples = |20|, Non-Alcoholic samples = |18|)
2019-05-01 02:51:50,461 | INFO : Node(id = |27|, Sample count = |15|, Alcoholic samples = |6|, Non-Alcoholic samples = |9|)
2019-05-01 02:51:50,461 | INFO : Node(id = |28|, Sample count = |110|, Alcoholic samples = |54|, Non-Alcoholic samples = |56|)
2019-05-01 02:51:50,461 | INFO : Node(id = |29|, Sample count = |229|, Alcoholic samples = |117|, Non-Alcoholic samples = |112|)
2019-05-01 02:51:50,461 | INFO : Node(id = |30|, Sample count = |176|, Alcoholic samples = |91|, Non-Alcoholic samples = |85|)
2019-05-01 02:51:50,461 | INFO : Node(id = |31|, Sample count = |25|, Alcoholic samples = |13|, Non-Alcoholic samples = |12|)
2019-05-01 02:51:50,461 | INFO : Node(id = |32|, Sample count = |7|, Alcoholic samples = |3|, Non-Alcoholic samples = |4|)
2019-05-01 02:51:50,461 | INFO : Node(id = |33|, Sample count = |25|, Alcoholic samples = |17|, Non-Alcoholic samples = |8|)
2019-05-01 02:51:50,461 | INFO : Node(id = |34|, Sample count = |49|, Alcoholic samples = |26|, Non-Alcoholic samples = |23|)
2019-05-01 02:51:50,461 | INFO : Node(id = |35|, Sample count = |112|, Alcoholic samples = |50|, Non-Alcoholic samples = |62|)
2019-05-01 02:51:50,461 | INFO : Node(id = |36|, Sample count = |73|, Alcoholic samples = |35|, Non-Alcoholic samples = |38|)
2019-05-01 02:51:50,461 | INFO : Node(id = |37|, Sample count = |119|, Alcoholic samples = |67|, Non-Alcoholic samples = |52|)
2019-05-01 02:51:50,462 | INFO : Node(id = |38|, Sample count = |108|, Alcoholic samples = |61|, Non-Alcoholic samples = |47|)
2019-05-01 02:51:50,462 | INFO : Node(id = |39|, Sample count = |8|, Alcoholic samples = |2|, Non-Alcoholic samples = |6|)
2019-05-01 02:51:50,462 | INFO : Node(id = |40|, Sample count = |8|, Alcoholic samples = |5|, Non-Alcoholic samples = |3|)
2019-05-01 02:51:50,462 | INFO : Node(id = |41|, Sample count = |20|, Alcoholic samples = |11|, Non-Alcoholic samples = |9|)
2019-05-01 02:51:50,462 | INFO : Node(id = |42|, Sample count = |131|, Alcoholic samples = |65|, Non-Alcoholic samples = |66|)
2019-05-01 02:51:50,462 | INFO : Node(id = |43|, Sample count = |56|, Alcoholic samples = |26|, Non-Alcoholic samples = |30|)
2019-05-01 02:51:50,462 | INFO : Node(id = |44|, Sample count = |179|, Alcoholic samples = |94|, Non-Alcoholic samples = |85|)
2019-05-01 02:51:50,462 | INFO : Node(id = |45|, Sample count = |28|, Alcoholic samples = |13|, Non-Alcoholic samples = |15|)
2019-05-01 02:51:50,462 | INFO : Node(id = |46|, Sample count = |122|, Alcoholic samples = |58|, Non-Alcoholic samples = |64|)
2019-05-01 02:51:50,462 | INFO : Node(id = |47|, Sample count = |9|, Alcoholic samples = |1|, Non-Alcoholic samples = |8|)
2019-05-01 02:51:50,462 | INFO : Node(id = |48|, Sample count = |136|, Alcoholic samples = |80|, Non-Alcoholic samples = |56|)
2019-05-01 02:51:50,462 | INFO : Node(id = |49|, Sample count = |55|, Alcoholic samples = |24|, Non-Alcoholic samples = |31|)
2019-05-01 02:51:50,462 | INFO : Node(id = |50|, Sample count = |39|, Alcoholic samples = |24|, Non-Alcoholic samples = |15|)
2019-05-01 02:51:50,462 | INFO : Node(id = |51|, Sample count = |27|, Alcoholic samples = |11|, Non-Alcoholic samples = |16|)
2019-05-01 02:51:50,463 | INFO : Node(id = |52|, Sample count = |8|, Alcoholic samples = |2|, Non-Alcoholic samples = |6|)
2019-05-01 02:51:50,463 | INFO : Node(id = |53|, Sample count = |73|, Alcoholic samples = |41|, Non-Alcoholic samples = |32|)
2019-05-01 02:51:50,463 | INFO : Node(id = |54|, Sample count = |105|, Alcoholic samples = |54|, Non-Alcoholic samples = |51|)
2019-05-01 02:51:50,463 | INFO : Node(id = |55|, Sample count = |2|, Alcoholic samples = |1|, Non-Alcoholic samples = |1|)
2019-05-01 02:51:50,463 | INFO : Node(id = |56|, Sample count = |38|, Alcoholic samples = |24|, Non-Alcoholic samples = |14|)
2019-05-01 02:51:50,463 | INFO : Node(id = |57|, Sample count = |87|, Alcoholic samples = |43|, Non-Alcoholic samples = |44|)
2019-05-01 02:51:50,463 | INFO : Node(id = |58|, Sample count = |311|, Alcoholic samples = |172|, Non-Alcoholic samples = |139|)
2019-05-01 02:51:50,463 | INFO : Node(id = |59|, Sample count = |18|, Alcoholic samples = |9|, Non-Alcoholic samples = |9|)
2019-05-01 02:51:50,463 | INFO : Node(id = |60|, Sample count = |103|, Alcoholic samples = |47|, Non-Alcoholic samples = |56|)
2019-05-01 02:51:50,463 | INFO : Node(id = |61|, Sample count = |92|, Alcoholic samples = |46|, Non-Alcoholic samples = |46|)
2019-05-01 02:51:50,463 | INFO : Node(id = |62|, Sample count = |2|, Alcoholic samples = |1|, Non-Alcoholic samples = |1|)
2019-05-01 02:51:50,463 | INFO : Node(id = |63|, Sample count = |19|, Alcoholic samples = |12|, Non-Alcoholic samples = |7|)
2019-05-01 02:51:50,463 | INFO : Node(id = |64|, Sample count = |153|, Alcoholic samples = |77|, Non-Alcoholic samples = |76|)
2019-05-01 02:51:50,464 | INFO : Node(id = |65|, Sample count = |90|, Alcoholic samples = |47|, Non-Alcoholic samples = |43|)
2019-05-01 02:51:50,464 | INFO : Node(id = |66|, Sample count = |53|, Alcoholic samples = |24|, Non-Alcoholic samples = |29|)
2019-05-01 02:51:50,464 | INFO : Node(id = |67|, Sample count = |17|, Alcoholic samples = |5|, Non-Alcoholic samples = |12|)
2019-05-01 02:51:50,464 | INFO : Node(id = |68|, Sample count = |133|, Alcoholic samples = |77|, Non-Alcoholic samples = |56|)
2019-05-01 02:51:50,464 | INFO : Node(id = |69|, Sample count = |311|, Alcoholic samples = |159|, Non-Alcoholic samples = |152|)
2019-05-01 02:51:50,464 | INFO : Node(id = |70|, Sample count = |98|, Alcoholic samples = |52|, Non-Alcoholic samples = |46|)
2019-05-01 02:51:50,464 | INFO : Node(id = |71|, Sample count = |118|, Alcoholic samples = |70|, Non-Alcoholic samples = |48|)
2019-05-01 02:51:50,464 | INFO : Node(id = |72|, Sample count = |14|, Alcoholic samples = |8|, Non-Alcoholic samples = |6|)
2019-05-01 02:51:50,464 | INFO : Node(id = |73|, Sample count = |287|, Alcoholic samples = |139|, Non-Alcoholic samples = |148|)
2019-05-01 02:51:50,465 | INFO : Node(id = |74|, Sample count = |43|, Alcoholic samples = |25|, Non-Alcoholic samples = |18|)
2019-05-01 02:51:50,465 | INFO : Node(id = |75|, Sample count = |36|, Alcoholic samples = |19|, Non-Alcoholic samples = |17|)
2019-05-01 02:51:50,465 | INFO : Node(id = |76|, Sample count = |45|, Alcoholic samples = |22|, Non-Alcoholic samples = |23|)
2019-05-01 02:51:50,465 | INFO : Node(id = |77|, Sample count = |141|, Alcoholic samples = |68|, Non-Alcoholic samples = |73|)
2019-05-01 02:51:50,465 | INFO : Node(id = |78|, Sample count = |26|, Alcoholic samples = |15|, Non-Alcoholic samples = |11|)
2019-05-01 02:51:50,465 | INFO : Node(id = |79|, Sample count = |80|, Alcoholic samples = |46|, Non-Alcoholic samples = |34|)
2019-05-01 02:51:50,465 | INFO : Node(id = |80|, Sample count = |180|, Alcoholic samples = |81|, Non-Alcoholic samples = |99|)
2019-05-01 02:51:50,466 | INFO : Testing generation |126|
2019-05-01 02:51:50,522 | WARNING : From C:\tools\Anaconda3\envs\tf-gpu\lib\site-packages\tensorflow\python\framework\op_def_library.py:263: colocate_with (from tensorflow.python.framework.ops) is deprecated and will be removed in a future version.
Instructions for updating:
Colocations handled automatically by placer.
2019-05-01 02:55:06,132 | INFO : Fitness scores of this generation: |[-0.2747164950596066, -0.2745339971358382, -0.2745198598840418, -0.27438174694620093, -0.27449025855133224, -0.2749738392085228, -0.27459608753678677, -0.27438557103002476, -0.27504622157946657, -0.27443054789711485, -0.2746917800953382, -0.2746456639934087, -0.27451700799343154, -0.27427511059940646, -0.2746215237602787, -0.27465618831983074, -0.27514920137294635, -0.2743448086884704, -0.2745583332155946, -0.27472199892669213, -0.274471332766409, -0.2741883634699611, -0.2746613215938641, -0.274688010805548, -0.2749631982541147, -0.27465991343413126, -0.27412273832584616, -0.2751540097938435, -0.2747483500853924, -0.27439646806147466, -0.27493453346525276, -0.274830737706088, -0.27433355009853055, -0.27453583355729033, -0.27445705412957927, -0.2744114398956299, -0.2749850739898488, -0.2746497502164265, -0.27447850149603964, -0.27471510833251506, -0.27498205465672837, -0.27427742542244316, -0.2744660824537277, -0.2750499036329312, -0.27443403598126465, -0.27430544124813533, -0.27450167125682506, -0.2746111480739173, -0.27485541621922194, -0.27456760928621443, -0.27458679734721897, -0.27425917294707514, -0.2745198061264406, -0.2746533253804592, -0.27416142005854705, -0.27480253190036835, -0.2746365945248466, -0.2745069386999751, -0.27434487404238206, -0.2747621457838011, -0.2744153512353346, -0.27440296307088824, -0.27462644957181975, -0.27482372903683056, -0.27475241671396994, -0.2744407810837891, -0.27450592119706274, -0.27500828335995436, -0.2742577106973005, -0.2744830317228172, -0.2744324468369559, -0.27498174857670865, -0.274987357847021, -0.27416368718613476, -0.2742714573313871, -0.27463679005858777, -0.2746439149451694, -0.2744933245239139, -0.27403119094963146, -0.2750355750322342, -0.27465013606263583, -0.27442504207449636, -0.2744983974795329, -0.2744841126436636, -0.2746533636111287, -0.2748053927082089, -0.27458010289299833, -0.2748656781522308, -0.27434270981493897, -0.2742128583389943, -0.2746990911584357, -0.27499351736519906, -0.27437590891764235, -0.2746638745617053, -0.27473016489991364, -0.2746795739323448, -0.274687991465327, -0.2747668696278975, -0.2747407980517452, -0.2748704392883408]|
2019-05-01 02:55:09,744 | INFO : Best of geration |126| has accuracy of |0.553616| and fitness_score of |-0.274031|
2019-05-01 02:55:09,918 | INFO : Testing generation |127|
2019-05-01 02:58:36,492 | INFO : Fitness scores of this generation: |[-0.2623163170375108, -0.2619320622076354, -0.2621326542246464, -0.26246135133118353, -0.26211779589539097, -0.26203328391390857, -0.26199002649393505, -0.2628066950080338, -0.263156694407756, -0.2622333914956949, -0.26239905935098695, -0.2618102393561256, -0.2617445905359125, -0.26276922780295686, -0.2620701716011295, -0.2627238155225031, -0.2629168058214741, -0.26213714747908984, -0.2619795810240527, -0.2613947839663704, -0.2620139488994872, -0.2623279360882658, -0.26191907352148064, -0.262694711052517, -0.262947630302491, -0.2620007874005484, -0.2623540908403364, -0.26195047336023414, -0.26207635956005837, -0.262590747135898, -0.26215737050100396, -0.2627261620434478, -0.2627787196595514, -0.2625820965998816, -0.2620195411984831, -0.26221041231838915, -0.2617516712829115, -0.26209139019352584, -0.26200761478712126, -0.26267983956141683, -0.26284905248941415, -0.2624182471744843, -0.26188410957925556, -0.26191560705367206, -0.26226482196065753, -0.2620510166415582, -0.26165799484318025, -0.2624361181116755, -0.2630729866922919, -0.2622551508730996, -0.26238358462223016, -0.26204626353730925, -0.26185375393047267, -0.26200657028183594, -0.26246680359995, -0.2625021815096559, -0.2629489758620897, -0.262166450404063, -0.26188693310010147, -0.26201880406397604, -0.26261794852925646, -0.2620382876628088, -0.26245658529903293, -0.2624710461385421, -0.2627196624417354, -0.2629015410414328, -0.2621848373282891, -0.2619776363157168, -0.2620806217498747, -0.2620501730222344, -0.2619441772585436, -0.2623405928396121, -0.2628759296884309, -0.2629298763673867, -0.2622011365133748, -0.2622508365648192, -0.2620393788956945, -0.2622414775472452, -0.2621565880425554, -0.2622199887606878, -0.2629000597541243, -0.2624012023007097, -0.262271413227397, -0.2621541305613599, -0.26167703152923455, -0.2621306880443983, -0.26171863532717315, -0.2624189628879365, -0.2623477611525474, -0.2619351380819347, -0.26210609300144705, -0.2618693821259326, -0.26212179914066003, -0.26249187983343625, -0.2618357830588728, -0.2620588253992816, -0.2630132037930114, -0.26199194072863347, -0.2622493407221784, -0.2618052400318022]|
2019-05-01 02:58:39,965 | INFO : Best of geration |127| has accuracy of |0.552369| and fitness_score of |-0.261395|
2019-05-01 02:58:40,144 | INFO : Testing generation |128|
2019-05-01 03:02:07,449 | INFO : Fitness scores of this generation: |[-0.26865825941716354, -0.26928324202100734, -0.26898210055601113, -0.26900993691927666, -0.2688280806235824, -0.26877650082379445, -0.2686027775573051, -0.2688247760844374, -0.26897681409540564, -0.2687213405788034, -0.2685810701957886, -0.26840060954910705, -0.268823839690553, -0.26889161144507523, -0.269098959673291, -0.2686917053303797, -0.26880142382015176, -0.2690040336690028, -0.2693966230575828, -0.26882143704027966, -0.2690631162146221, -0.2689234482339476, -0.2690686167090729, -0.2692671660585203, -0.26885973599584384, -0.26873289415057094, -0.2685535309174429, -0.2686633403556815, -0.2694173773926595, -0.268669001657566, -0.2687735221218848, -0.2691957745840703, -0.2685900403597187, -0.26855532399405246, -0.26890335369413937, -0.26838075043424137, -0.26852243180307134, -0.26915228543342323, -0.26853079056141077, -0.2689493611633688, -0.2687568389650049, -0.2691759820105969, -0.2687901169999965, -0.26898596922809753, -0.26920247647626466, -0.26928571502174037, -0.26896421735299225, -0.26903799417494295, -0.26907280804603356, -0.26887559461808097, -0.2693455001224821, -0.26871028968106503, -0.2693218842394527, -0.2689557840106548, -0.2687542261904862, -0.26870330993918284, -0.26858475432358403, -0.2686559431690505, -0.2688315428871622, -0.26884652717762264, -0.26933505988192524, -0.269003522449705, -0.2687053704547739, -0.2686310538175939, -0.26906489903690933, -0.268525763809949, -0.26866478887365675, -0.2686452064914503, -0.26923528113688666, -0.26880999900277763, -0.2690344976744373, -0.26900947671467396, -0.26852415128983836, -0.26894110523868, -0.2688164288985139, -0.26871948306081533, -0.2688899440788615, -0.2688637558577479, -0.26917651132575754, -0.26895089316805976, -0.26866756327103997, -0.26895437694561, -0.2689666714982829, -0.2686627976585185, -0.26936280430256876, -0.2689832458007282, -0.26920089690849697, -0.2690591083831158, -0.2687190748315522, -0.26860858313460045, -0.26882487267389826, -0.26856972564240805, -0.2689374804139316, -0.26905070846227336, -0.2690285276481952, -0.268835492376266, -0.2687763854794238, -0.26896576053913923, -0.2689715755441557, -0.26856964603178146]|
2019-05-01 03:02:10,948 | INFO : Best of geration |128| has accuracy of |0.544888| and fitness_score of |-0.268381|
2019-05-01 03:02:11,138 | INFO : Testing generation |129|
2019-05-01 03:05:39,615 | INFO : Fitness scores of this generation: |[-0.26140787364119117, -0.2614999710735681, -0.2607929958259766, -0.26131196285609787, -0.2615816411378222, -0.26097687146585435, -0.2612566949270449, -0.26123865701030385, -0.2613996727687934, -0.2613937844877186, -0.260930561045939, -0.26185540392672635, -0.2610717897180476, -0.26143661133617185, -0.26096960681085707, -0.26109624216798344, -0.2612064755025148, -0.2611009642470692, -0.2612484667191836, -0.26060904699150617, -0.26212312126675263, -0.2619145809937377, -0.2613632601535116, -0.2615743766161686, -0.26116807266547554, -0.26145936097563605, -0.2618354892859612, -0.261157286736078, -0.26152947113906866, -0.26097800329849846, -0.26080700377312105, -0.2612372157757714, -0.2618530253524837, -0.2612722431164371, -0.26104287354249195, -0.2613342713167381, -0.2616952750595713, -0.26171726722889743, -0.26073362466606254, -0.26109935831081327, -0.26129480676362976, -0.2607666660964178, -0.26094709623446666, -0.2619921426711733, -0.2610276194537957, -0.26138275898409635, -0.2611331929807606, -0.26101417885086237, -0.2614147673006115, -0.2610076376522414, -0.26149091295659055, -0.2612954925281801, -0.2611610991553883, -0.26157021861437274, -0.2615340093816064, -0.26070837168707767, -0.26134154099434903, -0.26107845577084243, -0.26128587837898404, -0.26205732875088983, -0.26109358986129877, -0.2611254570890415, -0.2612322970702522, -0.2609797010863565, -0.26159249133889484, -0.2612295999711881, -0.26107318557126585, -0.26122447413841704, -0.2618044587456407, -0.2616244320612537, -0.26088176636576743, -0.2608309982429237, -0.26147220677666305, -0.2613846365415188, -0.2610798608803376, -0.2615388193008706, -0.2612141908259644, -0.261560551116575, -0.2609282947471122, -0.26138943793789654, -0.26134257754179013, -0.26112423479379243, -0.26112774596740557, -0.2613522597296215, -0.26122386950241105, -0.26210563068155207, -0.26136859386914885, -0.2614407295904259, -0.261198589521322, -0.2611604602389332, -0.2611539418532011, -0.2609271612810075, -0.26115380260901694, -0.26141090379954274, -0.26085071416820366, -0.2611592420217797, -0.2612905290747293, -0.26087478998879016, -0.26118767833771944, -0.2610847166587309]|
2019-05-01 03:05:43,120 | INFO : Best of geration |129| has accuracy of |0.552369| and fitness_score of |-0.260609|
2019-05-01 03:05:43,315 | INFO : Testing generation |130|
2019-05-01 03:08:56,474 | INFO : Fitness scores of this generation: |[-0.27920881604802783, -0.2800517183715019, -0.2798164089520772, -0.2794940195761729, -0.27984436795763346, -0.2797172842682272, -0.2807881082745566, -0.279345602337001, -0.2795408723362978, -0.2796948474386464, -0.27993766445180646, -0.279411603467188, -0.28034363481877506, -0.28003259618645127, -0.27964081032120663, -0.2802396294647369, -0.279557381797096, -0.2804679552066153, -0.2807618315345135, -0.2785951719767805, -0.2792791212382524, -0.27979966711954796, -0.28014767958202225, -0.27975778486849606, -0.2802924392339976, -0.2802183643739293, -0.2795827426556228, -0.2793672645221586, -0.27908722813362663, -0.2796177708584329, -0.27989716460739356, -0.2801139505337114, -0.27982513703729794, -0.2807097370209901, -0.2802589357007241, -0.2795472996498364, -0.27978417077574175, -0.2796230698409288, -0.2798510536119558, -0.28008466764636664, -0.27977552340514417, -0.2801737423068371, -0.2795964079382627, -0.27979668343196745, -0.2798335974415143, -0.27946773128233093, -0.2795333294332891, -0.27957133165952086, -0.2803134864763073, -0.2813800295841867, -0.2794478659288607, -0.27892797456487367, -0.28015436928557313, -0.27989815369896265, -0.2800910964716172, -0.2800667705419271, -0.27985663809206174, -0.27987324608408887, -0.279329027602638, -0.2789772232265576, -0.2796741217050863, -0.27991255340368854, -0.2804518160612687, -0.2804653265014075, -0.27983727451899776, -0.2799734329615814, -0.27981081626553467, -0.2789107634537462, -0.2797681881465774, -0.27973426030813786, -0.27963988806890405, -0.280028848544411, -0.27940360397316405, -0.2799045518580554, -0.28039738395507785, -0.2786015066979588, -0.27948571217880736, -0.27992195387681323, -0.27955292073496874, -0.27964961156249046, -0.27957864165090135, -0.2806976025087246, -0.2801596502894941, -0.27912749765791756, -0.2793697788771512, -0.2799742865929569, -0.2797197803207066, -0.27951381020787835, -0.2794420653819174, -0.2795496325453986, -0.27995408245402836, -0.27907688705169637, -0.27931369409181067, -0.2797945035972457, -0.27987471687189047, -0.27993930811467377, -0.27945690078363905, -0.2805876024607299, -0.2801444965644159, -0.2792823067393856]|
2019-05-01 03:08:59,935 | INFO : Best of geration |130| has accuracy of |0.542394| and fitness_score of |-0.278595|
2019-05-01 03:09:00,283 | INFO : Testing generation |131|
2019-05-01 03:12:27,879 | INFO : Fitness scores of this generation: |[-0.2717388610557649, -0.27170002867491727, -0.27098450546289976, -0.2718719984086765, -0.27135288230339927, -0.27249442402708696, -0.2714174137152562, -0.2711544376381069, -0.27244290162290535, -0.27090005751851837, -0.27105018724892316, -0.2713793443123017, -0.2720793596891423, -0.2716282194929709, -0.2714200307232114, -0.2716398806917468, -0.2726213251875094, -0.27120827213042786, -0.2715805633069894, -0.27161669413444667, -0.27183256932563954, -0.27147339580634294, -0.2712084945850922, -0.2715037176003948, -0.2717401684461125, -0.2718015626095495, -0.2715677609370402, -0.27198654572636294, -0.2723034372459956, -0.27113522369872456, -0.2713060323855584, -0.27180924168215537, -0.2726360111411135, -0.2717840164809379, -0.27164333892565035, -0.27145700718591353, -0.2722457619963358, -0.27205104351450715, -0.2717591741762501, -0.2717549414211412, -0.2718274372549267, -0.27136497095521195, -0.27119088781169404, -0.27216113203845366, -0.2724629369237897, -0.27138012878268913, -0.2713718281914685, -0.27126164862120095, -0.2720994852449355, -0.27109541869489123, -0.2706135605124132, -0.271483801814059, -0.2715261746678439, -0.27114122809788527, -0.2715778053598266, -0.2715008557860334, -0.2721951774834501, -0.2721445930044821, -0.2714608258063225, -0.27193005070972154, -0.2714389743953265, -0.2716734570554247, -0.27167260640036534, -0.27174688941249353, -0.2718784897976833, -0.27189279737711314, -0.27154633790616384, -0.2720335713603247, -0.2717527353709312, -0.2716165798432187, -0.27169216112184236, -0.27181761770626484, -0.2729452066632251, -0.2711832834257884, -0.27120036584337853, -0.27186219661025973, -0.2717350815650364, -0.27140701619826246, -0.2709721189913692, -0.2719979415759331, -0.2719206064939499, -0.27096947889678935, -0.2715834303446713, -0.27139409643927187, -0.2717872110841307, -0.2715382271521189, -0.2711796792554747, -0.27201405830104725, -0.27151491266868905, -0.27200679935526234, -0.27134049718857534, -0.2714869456877296, -0.2722315143607274, -0.2720597921807053, -0.27134711983894905, -0.27233824780569815, -0.2716962619146194, -0.271411238133636, -0.2712565474381758, -0.271485093941457]|
2019-05-01 03:12:31,431 | INFO : Best of geration |131| has accuracy of |0.549875| and fitness_score of |-0.270614|
2019-05-01 03:12:31,626 | INFO : Testing generation |132|
2019-05-01 03:15:50,631 | INFO : Fitness scores of this generation: |[-0.2630761116743088, -0.2629280304093764, -0.2627957092721106, -0.2628388098016951, -0.26288026871714365, -0.26242061896920893, -0.26289225339475125, -0.2632651416755358, -0.2628911635897803, -0.26269532184128414, -0.26296784670922047, -0.26305314432290033, -0.26298840238625315, -0.2625990172768247, -0.26289182207261147, -0.26302228610733847, -0.26278113324285796, -0.26251533907230595, -0.26315606379426093, -0.26319115526913767, -0.2633319799448358, -0.2629410054012356, -0.26337178823293156, -0.26283950753173296, -0.26239487796434796, -0.26275160242204454, -0.2628449176547149, -0.2631115398152817, -0.2626981542705799, -0.26287057470888553, -0.2629958377030882, -0.2628530854249194, -0.2629749564624468, -0.26301908884996056, -0.26304860577108136, -0.2634547965758645, -0.2629062089969772, -0.262911060145114, -0.262574807690027, -0.26278829350117877, -0.2619784603182438, -0.26246298958362874, -0.2633793835947992, -0.2630409879452384, -0.2628754563672794, -0.26291518524582663, -0.2629494531509636, -0.2630283865874778, -0.26298876541859856, -0.2630287366352656, -0.2627169442722447, -0.26316243537884043, -0.2629664699835131, -0.26300494376298034, -0.26278456066533284, -0.2629876959710657, -0.26224407491512675, -0.2628461638614449, -0.263201065663667, -0.2628226355840544, -0.26325418403844847, -0.2628883302798829, -0.2627738868755095, -0.2631677482557739, -0.26307862083646677, -0.26285030096251333, -0.26307071137607857, -0.26280574573080895, -0.26309950813771954, -0.26302838581047633, -0.26300268280961975, -0.2628844753684754, -0.2622717601848229, -0.26279099088762203, -0.26302675201815495, -0.2630899277098071, -0.26335616938139583, -0.26320388030826286, -0.26291726066850707, -0.2631273733264187, -0.2632961900147198, -0.26233634986371873, -0.26253039561652364, -0.26349881110089124, -0.2628564690935791, -0.2627856474486315, -0.26290601426314647, -0.2632929431155825, -0.26283612755814684, -0.2625979811885542, -0.263040372663688, -0.26334139533763967, -0.262642687642008, -0.2627749055071474, -0.2631314627368646, -0.2624600612896204, -0.26216610708421795, -0.26262951064703777, -0.262916111966826, -0.26327176017391035]|
2019-05-01 03:15:54,091 | INFO : Best of geration |132| has accuracy of |0.553616| and fitness_score of |-0.261978|
2019-05-01 03:15:54,290 | INFO : Testing generation |133|
2019-05-01 03:19:24,323 | INFO : Fitness scores of this generation: |[-0.26995616802731814, -0.2700532383757646, -0.2702538064714907, -0.2700286595677795, -0.26952946439635855, -0.27008875630566387, -0.2695879063644663, -0.2698903630907629, -0.2698279179486574, -0.2701044300106727, -0.26988140564589275, -0.26999817457811837, -0.2694520880716021, -0.2698622152146672, -0.269836549394104, -0.2699006489720665, -0.27001517365167454, -0.27011514872479503, -0.2694639866383804, -0.269380070916077, -0.2703182423586438, -0.2700452528977427, -0.27013701173354265, -0.2694716312471224, -0.26974279791408895, -0.2699689851129422, -0.26987236002538384, -0.26989999557493116, -0.27048914725122664, -0.2706723774598092, -0.26972382569930803, -0.26966182400240285, -0.2696980417338239, -0.2699335065542483, -0.26969381590851216, -0.2697024745162295, -0.27010236960165307, -0.2695385953541897, -0.2699510674474954, -0.2696940817084967, -0.2698322497516954, -0.27035461430873525, -0.26941335180393455, -0.26973051423368666, -0.2699522155464864, -0.27001981462250235, -0.2699497489034295, -0.26966771132805767, -0.2697105924977141, -0.26980531975334765, -0.26968009588347763, -0.26987439429476145, -0.26986837107427314, -0.2699282176020433, -0.2700014248678163, -0.2699747427108408, -0.2698857616581002, -0.27054388144937885, -0.26963648053945277, -0.26975249171423976, -0.27031275039377, -0.2700416367052316, -0.2698122831870194, -0.26993316009181556, -0.26983810554282006, -0.2706593186790202, -0.2697476873315182, -0.2695097554193324, -0.2705182583705217, -0.2702187471070877, -0.27070153925140034, -0.26983444008673607, -0.2702921167308209, -0.27025721451731954, -0.2699324379698569, -0.26953383985938145, -0.26967295000449615, -0.26972893942721415, -0.2704661814104609, -0.26963997951575686, -0.2694461529954475, -0.26998199994156674, -0.27014589353519325, -0.2695845641320994, -0.2698935109715001, -0.2696897961220154, -0.2701817254225413, -0.26954544875092534, -0.2697631946297921, -0.2702764608696395, -0.2701408762474354, -0.2695992914151077, -0.2697112615577647, -0.27055389077222647, -0.26985710558771087, -0.2697507255405438, -0.2694922856443903, -0.27021259660063, -0.2699767641034447, -0.26991978392046706]|
2019-05-01 03:19:27,839 | INFO : Best of geration |133| has accuracy of |0.551122| and fitness_score of |-0.269380|
2019-05-01 03:19:28,027 | INFO : Testing generation |134|
2019-05-01 03:22:55,297 | INFO : Fitness scores of this generation: |[-0.26427249203616676, -0.26366120937205995, -0.26416728727717814, -0.26385081788886183, -0.2642316661180199, -0.2642687695107986, -0.26450420676981995, -0.264211164046603, -0.2642224542541649, -0.26408486685825394, -0.26409080524861583, -0.26425694034580044, -0.26438197196663105, -0.26386771288208183, -0.26453762686751187, -0.2642739515340827, -0.26420444105061286, -0.26442769951693457, -0.2636750144876908, -0.2640921609709925, -0.2639356863589341, -0.2643991298321989, -0.26438410918975513, -0.2642232266895671, -0.2645289873442269, -0.2642079544611304, -0.26398056235603506, -0.26387689972558404, -0.26404607586081036, -0.26434561941106965, -0.26424130149213987, -0.26440939787676127, -0.26418389512558854, -0.26422595093912044, -0.2639761186371285, -0.2640630859612512, -0.264000383030779, -0.2640960490748909, -0.26457590086831795, -0.2643184519086047, -0.2641301017070451, -0.2643637358689036, -0.26422386584173135, -0.26435850611657696, -0.26390337200672453, -0.2643624394565481, -0.2646448051748167, -0.2642742360952689, -0.26455828196195597, -0.2641138895156266, -0.263934070778437, -0.26399426528256204, -0.26445254685760905, -0.2643216217198753, -0.26436705068037086, -0.2640071879548265, -0.26415718981974934, -0.26408121939394413, -0.2637789322396195, -0.26423476449437017, -0.264160676396845, -0.26394062937439167, -0.2643601536977427, -0.26409119834464767, -0.2645230020860302, -0.26399570474606504, -0.26386966222592634, -0.2639756575736709, -0.2641614693199274, -0.264295012302725, -0.26429263149377513, -0.264298959807298, -0.26423414462872785, -0.26436893584157123, -0.2640470975025525, -0.26413199636419465, -0.26434131253354903, -0.26417588167770734, -0.26422792466874356, -0.2644821218211388, -0.2641332458860521, -0.26408007283174495, -0.2643118650967631, -0.26416176482751796, -0.2641537926042941, -0.26415396847199124, -0.2644601146304562, -0.2642394770007623, -0.26418931058151185, -0.2640965621054399, -0.26420872821100766, -0.26382907091891356, -0.26411279832002327, -0.2640627311889663, -0.26488611238084364, -0.2644010629944022, -0.26409222687605216, -0.2641769027075387, -0.2638163700529831, -0.2641032225958748]|
2019-05-01 03:22:58,851 | INFO : Best of geration |134| has accuracy of |0.551122| and fitness_score of |-0.263661|
2019-05-01 03:22:59,037 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 03:22:59,041 | INFO : Testing generation |135|
2019-05-01 03:26:14,277 | INFO : Fitness scores of this generation: |[-0.28088656392472594, -0.28124363095965943, -0.2809241640856335, -0.28114628318398516, -0.28097240795887185, -0.28058513854707784, -0.28053216056816516, -0.2812463734947066, -0.2807477998931902, -0.2810476436286759, -0.2809138817884558, -0.28098948067688184, -0.28111735378559705, -0.2810547923987644, -0.28115125629436594, -0.2809245036337271, -0.28147112435003274, -0.2811223392497393, -0.2809447394557151, -0.28056591686069876, -0.2807825462901105, -0.28061012849324407, -0.2811787663176994, -0.2809144218371964, -0.2809172185664819, -0.28115640186145335, -0.2810873768423401, -0.2811241563347573, -0.2806793050488257, -0.28040306551914534, -0.28113735966530945, -0.28055562333692763, -0.2809690127935424, -0.2817141042174081, -0.2811324678011994, -0.2807247658991417, -0.28093710749124073, -0.2805601508552476, -0.2804555490770787, -0.2811532407863779, -0.2813600746748487, -0.28142938387556266, -0.280646432456018, -0.2806739199359911, -0.280956077638805, -0.2808795522633551, -0.28085692918967914, -0.2806336789556783, -0.2810236013152055, -0.28156817468861045, -0.2807640181727561, -0.2809907882819558, -0.2806766884409894, -0.28104293044324, -0.28078696695290245, -0.2812258778379472, -0.28147595300256034, -0.2812857760423611, -0.280975374890528, -0.2808311809299573, -0.28041156765732933, -0.28091903150352154, -0.28084305149704536, -0.28087207075326776, -0.28137160082447726, -0.2811203419981854, -0.28133672786913194, -0.28134976307130255, -0.28082351393310095, -0.2811294532579661, -0.2802512847709944, -0.28058256675544196, -0.28151494891308076, -0.2813165679280949, -0.2806536842492633, -0.2808534782971629, -0.2805502736622555, -0.2808583905404707, -0.28123941661370144, -0.2804100772256029, -0.2809309139284171, -0.28127590637885136, -0.28092810412398267, -0.28049937246787204, -0.28089165692069706, -0.28097485165913416, -0.2810750693849284, -0.2809764801463994, -0.281155472714313, -0.2815065251807041, -0.2814763596396944, -0.28116812237993494, -0.2808141996478169, -0.28112981665693504, -0.28062578629978485, -0.28025952766053436, -0.28103738887948454, -0.28134272485385325, -0.28095453765677253, -0.2808897561998122]|
2019-05-01 03:26:17,770 | INFO : Best of geration |135| has accuracy of |0.552369| and fitness_score of |-0.280251|
2019-05-01 03:26:18,484 | INFO : Testing generation |136|
2019-05-01 03:29:43,205 | INFO : Fitness scores of this generation: |[-0.2602853222789245, -0.260322084442327, -0.25974146205469156, -0.2603645527250965, -0.26058696318248004, -0.2605601611602935, -0.26007386386873893, -0.260233365258966, -0.26064208722519383, -0.25982827555398197, -0.2603862819472416, -0.26185999704163665, -0.2596425636604069, -0.26076911471058367, -0.2607699304259814, -0.2601905205853823, -0.25976644981056585, -0.2598982818617791, -0.26024630450051844, -0.2604019199102664, -0.26030799368324825, -0.2604381858343733, -0.2608313215588543, -0.2605061456228176, -0.26013136739652, -0.26026237213366576, -0.26037514136506573, -0.260248711404255, -0.2601057858313696, -0.2602291631980918, -0.26049641211508, -0.2602721734889604, -0.2604277991657283, -0.2600425951868642, -0.25997261154374657, -0.25960136349441965, -0.2601534041232355, -0.2603895495361894, -0.2603873193423806, -0.2602016058907752, -0.26006840148123384, -0.25977851845943256, -0.25999755829812377, -0.2598249530078472, -0.26006107511692966, -0.260155081123087, -0.2605849220030429, -0.2605531780553567, -0.25984040710998496, -0.2600285349092492, -0.25982704172718196, -0.26035681063304317, -0.2599309272431603, -0.26078462952263554, -0.26074365384617054, -0.26067385386419256, -0.26049724857758155, -0.25994145079208764, -0.2599972855895625, -0.26032626161466654, -0.2605066010736801, -0.26068023451744604, -0.2603510808369429, -0.26073968851268026, -0.2605101284941357, -0.2600256300350723, -0.259904485165913, -0.26008133964415, -0.2604701958323718, -0.260720367139743, -0.26048560560388795, -0.26031926848240683, -0.2604469618859091, -0.25987488324350283, -0.2595390444147044, -0.26027836538085564, -0.2600632449204204, -0.26114881342281926, -0.26028090338551435, -0.2601035157546494, -0.2601899290132778, -0.25986265405093695, -0.2598517247882669, -0.26029781436579263, -0.2599184771565266, -0.2598201140321931, -0.2604687022406465, -0.26017672171062184, -0.25991915062509335, -0.25994233399549693, -0.26001455181405625, -0.2601153518175631, -0.26044151245535646, -0.2607626012119467, -0.2603678893734026, -0.26030878211314173, -0.2599339262516612, -0.26008050744292777, -0.2600375830434709, -0.26000644552910085]|
2019-05-01 03:29:46,723 | INFO : Best of geration |136| has accuracy of |0.551122| and fitness_score of |-0.259539|
2019-05-01 03:29:46,915 | INFO : Testing generation |137|
2019-05-01 03:33:05,875 | INFO : Fitness scores of this generation: |[-0.2559982035719776, -0.2557688750877455, -0.25531736271390654, -0.2561456009107805, -0.2559930997986429, -0.2562925718367177, -0.25569844661442376, -0.2566598509226946, -0.2558453475184323, -0.2555325986810231, -0.25535843899200555, -0.2565553201852915, -0.2562970561585383, -0.2563219487705738, -0.2559867731250832, -0.2560005290808226, -0.2558318280292392, -0.2555807068576763, -0.2556366004561945, -0.2562609112370957, -0.2560501288037974, -0.2563163265875805, -0.2565021348679885, -0.2557677975463187, -0.25614787930025973, -0.25536224008302283, -0.255595064426056, -0.25573991070925495, -0.2562691418963802, -0.2559778449523001, -0.2562383022135179, -0.25642739448952456, -0.2563801630075185, -0.2552842774202542, -0.2557355421565077, -0.2557310554767861, -0.25589816989292585, -0.2567132040568363, -0.2559738009588264, -0.25634665804614354, -0.25582253252640463, -0.2556165111590607, -0.2556844412043555, -0.2561381219000822, -0.2559048475265194, -0.2560118650184067, -0.2560303366215158, -0.2560603701534902, -0.25614691824300745, -0.2550935302842916, -0.25550751687642353, -0.25569021442830175, -0.25617247895276035, -0.2565458388721278, -0.25577452162283093, -0.2560050640008793, -0.255272106921008, -0.256057114298087, -0.2553117375352194, -0.255847369128628, -0.2556945140027814, -0.2565237367586094, -0.25538137910740233, -0.2561548914852155, -0.2564153306756347, -0.2555717941078849, -0.2559335954226408, -0.25554046158506094, -0.25667238428744205, -0.2563152710210179, -0.2557852455884721, -0.2563002350729263, -0.255529964267821, -0.2559072745797235, -0.25536975651090404, -0.2559356244737536, -0.25626323463929146, -0.25645650387892616, -0.2563291761816398, -0.2555931859907009, -0.25620929052239105, -0.2554384231876616, -0.2555186440044804, -0.2554981997659389, -0.2577413418722833, -0.2561525611639332, -0.25607117241304056, -0.2559649711994191, -0.25607230291060434, -0.25564756608736033, -0.2553466548406351, -0.25601857477356954, -0.25693208895304787, -0.2566494042423449, -0.2561276813657367, -0.25625057160931647, -0.2563295362447177, -0.25508084850707097, -0.25525611772379525, -0.25597338749508913]|
2019-05-01 03:33:09,370 | INFO : Best of geration |137| has accuracy of |0.547382| and fitness_score of |-0.255081|
2019-05-01 03:33:09,562 | INFO : Testing generation |138|
2019-05-01 03:36:29,202 | INFO : Fitness scores of this generation: |[-0.2708823436316643, -0.270261245184879, -0.2699703609822057, -0.2707391919298026, -0.26972233797909345, -0.27088869074904587, -0.2696571999227121, -0.2700938147897939, -0.2703621970636547, -0.27014044213461813, -0.2706841985498373, -0.2706559970027011, -0.26962022652077006, -0.2704585382463671, -0.27025177919379323, -0.2700361796386976, -0.27010335686021786, -0.26940816290126807, -0.2703504033064418, -0.2700238439797142, -0.2701310219845092, -0.27018053257131697, -0.2704349231287723, -0.27134292531028653, -0.270429920111297, -0.2697474314207946, -0.2708444769183795, -0.2705181002161885, -0.2697481805169552, -0.27003525553920493, -0.27100545858002195, -0.2704850145385769, -0.27009421361387537, -0.26995906019559646, -0.2704489612738595, -0.2708371589505339, -0.2699319360820392, -0.2701810597615084, -0.2705579054264622, -0.27110148153004754, -0.2706109739972738, -0.26993381015899526, -0.2705354392528534, -0.26999835925930327, -0.2700198743558719, -0.269837575843771, -0.2705631264065968, -0.2711715344481796, -0.2707697100197996, -0.27038751356777646, -0.27056902796788374, -0.2703590558950834, -0.26975755243735156, -0.270677027735698, -0.2705739891256085, -0.2710431448300073, -0.2706185251701879, -0.2697500534753763, -0.27114589605243455, -0.27009554082200726, -0.27021475352403773, -0.27085342950189994, -0.2702717822585397, -0.27096605380527844, -0.27053671720752887, -0.2701108823826598, -0.27047891200119606, -0.27002963609519504, -0.26933857802368, -0.26958598482775625, -0.2703912500055085, -0.2702954530943441, -0.26981208871566614, -0.27003677492681655, -0.27010412502834813, -0.27080100115018946, -0.26968904996039605, -0.2702723687500444, -0.27095666688892983, -0.2705328640819506, -0.27013584474722546, -0.27015766804758223, -0.2703201456076013, -0.2702653322928128, -0.26947593791339236, -0.2705358004827839, -0.27026365792174983, -0.27101086849778055, -0.26984749017780973, -0.26952271237400655, -0.2708862095729995, -0.26987622428031366, -0.26977420306311917, -0.27054512178473195, -0.2703620217569912, -0.27083019654411095, -0.26984737968930156, -0.26989493433755773, -0.2707934288767761, -0.2704025024676141]|
2019-05-01 03:36:32,729 | INFO : Best of geration |138| has accuracy of |0.548628| and fitness_score of |-0.269339|
2019-05-01 03:36:32,930 | INFO : Testing generation |139|
2019-05-01 03:39:54,683 | INFO : Fitness scores of this generation: |[-0.27216286872797474, -0.27237673711011756, -0.27241039468961603, -0.2723087903171937, -0.2721347591934357, -0.2722113542697009, -0.2723298333864161, -0.2727882833882449, -0.27224078715485045, -0.2724405247738017, -0.27210184941317306, -0.272322429820178, -0.2725328252914755, -0.2729956416204014, -0.27205171385869625, -0.2722998249180177, -0.27285448653812716, -0.2721102735894249, -0.272128120877526, -0.27278455001785157, -0.27244422705096993, -0.27216547035915967, -0.2722124342293663, -0.2731656452710616, -0.2728193635290319, -0.27236301393751156, -0.27298640894061105, -0.27201406982812015, -0.27243019889064013, -0.2721888596680075, -0.2723328286154385, -0.27231695162739983, -0.2724872346708481, -0.27242457045909557, -0.27215150610648375, -0.2719243180305563, -0.2720026265969251, -0.2719056630517072, -0.2721918738462071, -0.27280524629641345, -0.2725199690158354, -0.27267102100313667, -0.27257798272658157, -0.27270273084946495, -0.2722453640425269, -0.27225879271400166, -0.27190559433105793, -0.2730842992743069, -0.2726267718216952, -0.2726412889632312, -0.27265976998895247, -0.2725295161818438, -0.2720940980044278, -0.2724183573442347, -0.27288296122283223, -0.2716639857719289, -0.2726529498948133, -0.2723689511019916, -0.27256329341686986, -0.27180713891664293, -0.2723743807026409, -0.272188006142244, -0.27192365370969723, -0.2726435508320038, -0.2730492855457061, -0.27256035028613185, -0.27258669611285713, -0.2728596591375728, -0.27168123886228246, -0.2725523238513559, -0.2721539427571118, -0.2726517964493145, -0.27252831030338204, -0.2722608104427868, -0.2722147554956018, -0.2720412199350602, -0.27217163190165944, -0.272859806172988, -0.27215427541159054, -0.2724721417388814, -0.2725179413263811, -0.27256718756043335, -0.2722219984321033, -0.2724698231500738, -0.2721792397811451, -0.27179118165357863, -0.2725250313944995, -0.2724207993019073, -0.2727948459711942, -0.2723475629314382, -0.27213582994147417, -0.27188349890517677, -0.2721575538742351, -0.27210529315917886, -0.2721045789712253, -0.2732048487918262, -0.2731533891695706, -0.2719253071489181, -0.2725873418192175, -0.27198353876723325]|
2019-05-01 03:39:58,235 | INFO : Best of geration |139| has accuracy of |0.547382| and fitness_score of |-0.271664|
2019-05-01 03:39:58,425 | INFO : Testing generation |140|
2019-05-01 03:43:27,180 | INFO : Fitness scores of this generation: |[-0.2661042060389187, -0.2655523365998006, -0.26557417903846, -0.26570125711269865, -0.26581223912728136, -0.2659532403662091, -0.26579927933085096, -0.2658786993323665, -0.2661175527633765, -0.26547454097768763, -0.26606291143885463, -0.26576075370495134, -0.2657899043280563, -0.2658568085768284, -0.26579313650454356, -0.2654716689071376, -0.2656788967249594, -0.2653783928234499, -0.2660562453907488, -0.2658765531503237, -0.2654374410708745, -0.2659017482301691, -0.2659319024164598, -0.26548102216406183, -0.26577953650401187, -0.265599352754516, -0.26559565773595384, -0.2658137919265272, -0.2655949558530535, -0.265782089700629, -0.2653174759485783, -0.2659574744465587, -0.2657041794978655, -0.26571300828849875, -0.26595763560834823, -0.2660537917317052, -0.2656015556701374, -0.2660372141625855, -0.2664024600943366, -0.2654169355556642, -0.26613101024767416, -0.2655950999412781, -0.26569371550947757, -0.2659966058455981, -0.26598071568396503, -0.26574282901627677, -0.26583738189477185, -0.2659880300908735, -0.2658761406774486, -0.26594433669860545, -0.2658807864774278, -0.26605505167127963, -0.2657242665360699, -0.26590360351752884, -0.26575303129005784, -0.26592541674336234, -0.2656772343666999, -0.26569516837815227, -0.26577487742944517, -0.2659884284267495, -0.2653144391355934, -0.2657759889141544, -0.2654952234073436, -0.26604181689657136, -0.2656204458121415, -0.2656466245760411, -0.26546786399114697, -0.26552433445776774, -0.26593203369951074, -0.26621722048455543, -0.2660178717348602, -0.2662213207601191, -0.2657924786373809, -0.2654400325629301, -0.2656236979660097, -0.26633998842248113, -0.2658142702155934, -0.26589884941394515, -0.26564288780147777, -0.26590407032233015, -0.26576221493574287, -0.2654461534359516, -0.2658314340062194, -0.26592774060401286, -0.26562032331695484, -0.26594214069319294, -0.2657866562460805, -0.2657720577149164, -0.26534842826944566, -0.2657880589857206, -0.26563680997261635, -0.26568749152915383, -0.2655429694678757, -0.2658685027679681, -0.26601577764684026, -0.26607672015389244, -0.2659510647311752, -0.2653425805407129, -0.2656836606207348, -0.26610782223961726]|
2019-05-01 03:43:30,709 | INFO : Best of geration |140| has accuracy of |0.552369| and fitness_score of |-0.265314|
2019-05-01 03:43:31,086 | INFO : Testing generation |141|
2019-05-01 03:46:48,957 | INFO : Fitness scores of this generation: |[-0.2667453501636934, -0.2669968528654238, -0.267051149949883, -0.26699651153099657, -0.266860271907515, -0.26737414774569596, -0.2666977534089426, -0.26721708495358026, -0.26719340888990295, -0.2673541663045233, -0.26665317436510866, -0.26676796497118593, -0.2670471516597753, -0.26704563667075804, -0.2671182455513815, -0.2669467418031259, -0.2674727597170406, -0.26704590176843634, -0.2666759040921625, -0.2668509015230217, -0.2670663736309066, -0.2668712256909019, -0.266903791200332, -0.2670892820590072, -0.2671698715274382, -0.2673032789895631, -0.2669450277180383, -0.26683524774030004, -0.26694030156641296, -0.2670841528987042, -0.2665865479244126, -0.26709537098955627, -0.26704638564225397, -0.26724977938063216, -0.2669480666894503, -0.2667113815744718, -0.26707789580328295, -0.266615926278661, -0.26648571402436555, -0.26690908788581086, -0.26715853787732846, -0.2676702447687135, -0.26668248287957125, -0.26702996320796735, -0.2669124036952101, -0.2668885758353604, -0.2668468772311403, -0.26693005355620625, -0.26705217000209924, -0.26701968385264124, -0.267069367108622, -0.26671256346985545, -0.2670803140811246, -0.2673052739389617, -0.26705086569894443, -0.2670825547867953, -0.2671452026550818, -0.2677461438708835, -0.2670278408461147, -0.26675923812118446, -0.26694302524280067, -0.2671381328819376, -0.2668700577935787, -0.26703936493758, -0.2673027238836794, -0.26736830092138714, -0.26721610587955724, -0.2666929063170847, -0.2669948944163443, -0.267055129764056, -0.26693650372702665, -0.2671706441300686, -0.26738850930423447, -0.26741439525527183, -0.2672566155893634, -0.266687269538942, -0.26681087196174297, -0.26694387588838137, -0.2669426973796252, -0.2667608074467592, -0.2674298176184447, -0.2672365970834337, -0.26686825576906253, -0.26687145082637515, -0.26685843473733073, -0.26695003067002154, -0.2669416683340313, -0.26720422321949344, -0.267456943037534, -0.2673948287136025, -0.26724937629669604, -0.26670896544149425, -0.26700442088673815, -0.2669148196776708, -0.2670028538941735, -0.2669546038589694, -0.2672160595580183, -0.2675380990511239, -0.2668775173675532, -0.26683210626696097]|
2019-05-01 03:46:52,492 | INFO : Best of geration |141| has accuracy of |0.556110| and fitness_score of |-0.266486|
2019-05-01 03:46:52,693 | INFO : Testing generation |142|
2019-05-01 03:50:19,817 | INFO : Fitness scores of this generation: |[-0.2612156836752451, -0.26133073989314215, -0.2615583046238021, -0.26147617557064534, -0.26117681505361406, -0.26128380954659025, -0.2617245832144624, -0.26216453244977267, -0.2621544762068849, -0.2619107179712541, -0.26141349268038283, -0.26140115161736804, -0.26144642468922996, -0.2612621274472463, -0.26116107699304525, -0.26141243078822746, -0.26178361219738183, -0.26152657375674043, -0.2615079739847199, -0.26120681377133914, -0.26128401833497256, -0.2614673045848069, -0.2611242841080864, -0.26156573164777785, -0.2617745411032104, -0.2622831351686232, -0.2613077894000724, -0.2614500078037627, -0.26121838208865805, -0.261143127216561, -0.2611146243442797, -0.2614307751504108, -0.26212218362014283, -0.2621508111113762, -0.2613897267052836, -0.26136269604805673, -0.26124187612986016, -0.2616433692548928, -0.2612215776008741, -0.2613419053873213, -0.262139965942984, -0.26138472581657246, -0.2614198898767481, -0.26118272621639493, -0.2610705893720337, -0.2616027083137248, -0.2611559201585184, -0.26135737864491176, -0.2618712344185354, -0.2619666315541409, -0.26130589800994386, -0.261409400467432, -0.2612731723797203, -0.26126081998100376, -0.26125539613045484, -0.2612458223311028, -0.2620446066996052, -0.2616725089428055, -0.2613701677263373, -0.26113493588104497, -0.2613800444913776, -0.261424883536183, -0.2612539674877727, -0.26161215882195105, -0.26219668054934775, -0.26203498195106834, -0.26162802174736566, -0.2612684936855886, -0.2613676799700992, -0.2613902429592098, -0.2613631050185402, -0.26137953290943267, -0.2619455979995602, -0.26203902232961684, -0.26152557095285295, -0.2611236180065095, -0.2612549859305026, -0.2617106504812099, -0.26140556061523584, -0.26133163573324875, -0.26191101867471983, -0.2618320086608232, -0.26131274135592747, -0.26100459448968616, -0.2618771512860512, -0.2615183593318014, -0.2613211000221397, -0.26147475295236006, -0.2619739275167484, -0.2616983991202348, -0.2611598385245887, -0.26120341379847073, -0.2619014339822747, -0.26151120244669834, -0.26128658952295974, -0.261504593658762, -0.26215167046085047, -0.26170552219494736, -0.2616414735862131, -0.2615167475228656]|
2019-05-01 03:50:23,341 | INFO : Best of geration |142| has accuracy of |0.554863| and fitness_score of |-0.261005|
2019-05-01 03:50:23,542 | INFO : Testing generation |143|
2019-05-01 03:53:54,306 | INFO : Fitness scores of this generation: |[-0.2655170971207771, -0.2655115183809543, -0.26589821215316867, -0.26547451830201624, -0.26571806334591364, -0.2654398705023774, -0.2656711093519953, -0.26625487074832566, -0.26578248303841345, -0.2659587339527819, -0.2659267387823919, -0.2654927685522985, -0.2654921855962123, -0.2656788450273137, -0.26579624982974354, -0.26573909235421445, -0.2659125071921805, -0.266488877268608, -0.266029765451351, -0.2656082063205211, -0.26550532423227885, -0.2656914729369553, -0.26590370617994064, -0.26570936076429047, -0.2657320047226069, -0.2663017180163441, -0.2661216404473628, -0.2654518574294151, -0.26532524710841027, -0.26547885038216584, -0.26549248896078925, -0.2655303573535562, -0.2657846012490992, -0.2661511479634779, -0.2659943352244132, -0.26538143607927517, -0.26529878750190555, -0.2654465198193127, -0.265439372057018, -0.265680668694748, -0.26583006812129306, -0.2664161287071101, -0.2660931347182067, -0.265691294993014, -0.265532851563128, -0.26548367516167376, -0.26591546128416094, -0.26548551161598366, -0.26598233544980276, -0.2665146164601139, -0.266249793792208, -0.26549526525045525, -0.2655097278744205, -0.26549042149295793, -0.2654577891841197, -0.2654615905077702, -0.26561604396712596, -0.26596498705866545, -0.26570279599854674, -0.2655669575796108, -0.2652713000288806, -0.2653652115371546, -0.26552941648634776, -0.2656223670973393, -0.26571989870767404, -0.2661181941820664, -0.2657827189279428, -0.26540788692515155, -0.26559976230894555, -0.2655166396257915, -0.26583682823084037, -0.26573704089021005, -0.26550753670570726, -0.2661455439533899, -0.2659099256595785, -0.2652349957218805, -0.2654448681272622, -0.2654359677941801, -0.26558017886502355, -0.2657093361616944, -0.26585041321384123, -0.266083976320887, -0.2660770782263847, -0.26560482751004, -0.2654612848569322, -0.2652783523347211, -0.26546356822468353, -0.26587309747509463, -0.2658585041903025, -0.2659685119268284, -0.2659435979541434, -0.2653879732682603, -0.2655989618141151, -0.26558106174617907, -0.2656025635653908, -0.265591017117892, -0.2657382271966397, -0.2659383247032994, -0.2656191940503467, -0.2655139459450068]|
2019-05-01 03:53:57,808 | INFO : Best of geration |143| has accuracy of |0.554863| and fitness_score of |-0.265235|
2019-05-01 03:53:57,994 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 03:53:57,997 | INFO : Testing generation |144|
2019-05-01 03:57:11,206 | INFO : Fitness scores of this generation: |[-0.2713905090124023, -0.2713355564949464, -0.27138023458573285, -0.2716244212826904, -0.27128954809539174, -0.27151215665650613, -0.27177738459134587, -0.27154549853686166, -0.2713312864759747, -0.2714741768277421, -0.27164336883139856, -0.2718027348497084, -0.27173737942108084, -0.27147100440093447, -0.2710536689478524, -0.27097227378767363, -0.27123616677613893, -0.2716121431440115, -0.2720419320905087, -0.2715377390612753, -0.2715190837197766, -0.2713344305069471, -0.2716324449877958, -0.27131700892077415, -0.271322935173402, -0.2710841773648043, -0.2715713595401268, -0.271453964847083, -0.27141776236192305, -0.2709278949365324, -0.2712307196794724, -0.2714452402932303, -0.271209752909383, -0.27134627696810937, -0.27195839036484154, -0.27148785103796697, -0.27114943342701514, -0.27132563110516994, -0.2717000104638995, -0.27154017551517, -0.27119046856402135, -0.27147424167820383, -0.27154900525145387, -0.2712245659940705, -0.27148372501286927, -0.2711074004063801, -0.27128406404992755, -0.2718360405035165, -0.27165230317991607, -0.2714812513060716, -0.27122845770601106, -0.27131677570999885, -0.27131581595357585, -0.2713223448669424, -0.2718091056663163, -0.2714038017605032, -0.27171414478548933, -0.2715530722421043, -0.2715747586774583, -0.2712844194350194, -0.27148776509019795, -0.271593874358401, -0.2715832843084116, -0.27178656423882563, -0.2713954155618439, -0.27174258768102344, -0.2719289402344397, -0.2719779088713077, -0.27132817255143, -0.27139380680663244, -0.27088256381756187, -0.27133536897599697, -0.27143836827302464, -0.2716202167984174, -0.27153922279118275, -0.27127739570426695, -0.27130017984582455, -0.271467048256677, -0.27165368579480115, -0.2714691206204648, -0.2711312630955054, -0.2713930629269809, -0.27132315583983246, -0.2715995490398942, -0.2711119538515198, -0.27106746533239373, -0.27111600997040464, -0.2720143788551189, -0.2715544740536383, -0.27165811664747946, -0.27128609798240416, -0.27155909968578085, -0.2715965180980916, -0.2716086095921239, -0.2718700317627921, -0.2719942393275548, -0.27155423502684856, -0.2715663322228558, -0.2716816736727345, -0.27165356783994604]|
2019-05-01 03:57:14,710 | INFO : Best of geration |144| has accuracy of |0.552369| and fitness_score of |-0.270883|
2019-05-01 03:57:14,915 | INFO : Testing generation |145|
2019-05-01 04:00:32,054 | INFO : Fitness scores of this generation: |[-0.2645033636829262, -0.26356458016693884, -0.26375143200980206, -0.26385242650149515, -0.26358290842615034, -0.2646624729447852, -0.26383585653100255, -0.263717888843878, -0.264702964229947, -0.26411006992118286, -0.2636819644144327, -0.2637572068739169, -0.263786151015005, -0.26309121529325674, -0.26418055758194176, -0.26443503777733496, -0.2645706853178757, -0.2639434787065902, -0.2638861453417248, -0.26351190869193797, -0.2638814843695979, -0.264064001858331, -0.26418878147725733, -0.26447541287208104, -0.2636762015533602, -0.2643284623539815, -0.2638940616500242, -0.26421477052728787, -0.2644222804512738, -0.2635202234432802, -0.26457869844749643, -0.26457736024110784, -0.26417022815496455, -0.2647501446149724, -0.26405769596223505, -0.26408169557441574, -0.263802866302008, -0.26311084966219034, -0.26386731669813923, -0.264086827925577, -0.2640473346801013, -0.263790650006438, -0.26365551736501663, -0.26341408128869787, -0.2633281453260533, -0.2634772864356033, -0.2639025442024491, -0.2641932143432781, -0.26480271576675835, -0.26444017698737754, -0.26371450376858396, -0.2637533310987961, -0.2631303424580171, -0.2629619702044724, -0.264912347449669, -0.26374092473493016, -0.2638145865120803, -0.2643715109150839, -0.26407559131494024, -0.2635128132431395, -0.2639754874876291, -0.26346546923515285, -0.26416266544131833, -0.2642162785875933, -0.2639238238334656, -0.2637405054978845, -0.2636478186329914, -0.2634909234614967, -0.2633336777866756, -0.2635312469938779, -0.26406781655559664, -0.2643466928741341, -0.26442731540148995, -0.26438931753704964, -0.2639294389629287, -0.26386968139408085, -0.26301921701218745, -0.2638039733834166, -0.26391133608076134, -0.2644134434347601, -0.26429047724126414, -0.2639573913194372, -0.26391812127741654, -0.2635093379880466, -0.26372790348684383, -0.2630952088044567, -0.26413936582144887, -0.26422905004198394, -0.2643658430881593, -0.26421778208336144, -0.26332720092571726, -0.26298885559436763, -0.26366737076780206, -0.2640443804584794, -0.2640927405710931, -0.2636747625407369, -0.26404851042277616, -0.26462152882854983, -0.2640899009217706, -0.26359147741497047]|
2019-05-01 04:00:35,625 | INFO : Best of geration |145| has accuracy of |0.549875| and fitness_score of |-0.262962|
2019-05-01 04:00:36,032 | INFO : Testing generation |146|
2019-05-01 04:04:08,278 | INFO : Fitness scores of this generation: |[-0.27256663105213685, -0.2725339761386765, -0.27228442210353626, -0.27243642908770865, -0.27258127283966915, -0.2723739633576795, -0.27240563830432163, -0.2727591785196643, -0.27250075834553417, -0.27246870016387115, -0.27210870738228854, -0.2723600023091878, -0.2724495845596965, -0.27264292875648793, -0.27275199524616944, -0.2726124455081461, -0.272653023581887, -0.2725203315763108, -0.2724235073406937, -0.27231810433523995, -0.2724180923521726, -0.2725328206600628, -0.27295335232173107, -0.27267541366171755, -0.2723911022475372, -0.27240343592308125, -0.27232352376814917, -0.27224057599227186, -0.27239471526511455, -0.2729044520481123, -0.2727068440631707, -0.27262849681053425, -0.27270661870776985, -0.27239569417275616, -0.272323587194137, -0.272481089518876, -0.2724151997408385, -0.2727848854422154, -0.2726272344381552, -0.2724721472437789, -0.2724482474426775, -0.27258674120238435, -0.2726383373920095, -0.27233289230991325, -0.2725242290554977, -0.2726207192974224, -0.2727617512596609, -0.27290947092534773, -0.2724927436391651, -0.2726350703513581, -0.27239155443287894, -0.2725929130037487, -0.2722938248297063, -0.2726753290937337, -0.27273126763749206, -0.2729014037793522, -0.2726140544181917, -0.2723523824472461, -0.27231599524461436, -0.2724010898676483, -0.27241839997029055, -0.2725658131808769, -0.2725433693530252, -0.27238559253539774, -0.27270486778498526, -0.2725702039040755, -0.27213071246180387, -0.2723178253771951, -0.27243710716842356, -0.2724270148975093, -0.27258301045005745, -0.272578420310901, -0.2724000878034984, -0.2724301092300681, -0.27225859048889905, -0.2723816135203797, -0.2723968232757954, -0.2726647307648476, -0.2726984568796922, -0.27247536336088013, -0.272543864341563, -0.27242830374930377, -0.27242131831338595, -0.2724763554770772, -0.2722865833014977, -0.2723844737333703, -0.272834046231745, -0.2724394594127708, -0.272615319158142, -0.2724953646651544, -0.2723902550308547, -0.2724128971947195, -0.2722747095370542, -0.27250408725456077, -0.2725806632939116, -0.272694570054576, -0.2725100134100233, -0.2723642839579632, -0.2724570161166507, -0.27238759132627827]|
2019-05-01 04:04:11,785 | INFO : Best of geration |146| has accuracy of |0.552369| and fitness_score of |-0.272109|
2019-05-01 04:04:11,985 | INFO : Testing generation |147|
2019-05-01 04:07:40,513 | INFO : Fitness scores of this generation: |[-0.2660440665922956, -0.2660466845271774, -0.266155720741335, -0.26646017712382125, -0.26669112443008364, -0.26631997738565716, -0.26651828668542354, -0.26643821949599894, -0.26642851501749043, -0.26634279312351333, -0.2662842542436632, -0.26638422050325916, -0.26661883576125045, -0.26605400310317123, -0.26594909476245054, -0.2660420384092082, -0.2662281128484899, -0.266346362031733, -0.2661524628118802, -0.26670411629702456, -0.26666456319036935, -0.26629634448734846, -0.26600883010711907, -0.2662933626528343, -0.266295636991202, -0.2663436561777112, -0.2665190414486942, -0.26663671257675337, -0.266626923360766, -0.2664279961549375, -0.2662045151086813, -0.26618721953002356, -0.2663765347086339, -0.265795204588162, -0.2665399001444906, -0.26688370715180115, -0.26648928087702545, -0.26636844813915256, -0.2662185588007515, -0.2661788880870822, -0.26650515718302603, -0.26620202931574044, -0.2664276435399019, -0.2663225461306843, -0.2661116748773557, -0.2664628219769298, -0.2661808815923521, -0.26627960336464707, -0.2663791963856341, -0.26621992387072096, -0.26623039281771116, -0.26684793749804137, -0.26659370553658307, -0.26604775853237617, -0.26608977346651014, -0.2660845076341966, -0.2667932317187343, -0.26619931602258284, -0.2666516879690774, -0.2663737621541763, -0.2668016883222738, -0.2661984249972345, -0.2660033401164774, -0.26619065071122805, -0.26638724997113195, -0.2661464377985938, -0.266080687397636, -0.2667218457947495, -0.2666725629394139, -0.2664544732980831, -0.26610557574738736, -0.26638489133018867, -0.26642718503735213, -0.2664437714260295, -0.26623064545076197, -0.26656004182204673, -0.26671175956268284, -0.2661784982305884, -0.2660352496599089, -0.26603072897721364, -0.2663481979646624, -0.26636050973436615, -0.26613228000162564, -0.2668424737160473, -0.26645006042563235, -0.26600291146202937, -0.26590945623162704, -0.2662586771901668, -0.2664251369173809, -0.2659724508333499, -0.2662914253645412, -0.2662949685905752, -0.26650601906985183, -0.26621749186845417, -0.2661770458823891, -0.2659784758466363, -0.2661394937201396, -0.26640824662284, -0.2661597544467577, -0.2663665458262425]|
2019-05-01 04:07:44,033 | INFO : Best of geration |147| has accuracy of |0.551122| and fitness_score of |-0.265795|
2019-05-01 04:07:44,238 | INFO : Testing generation |148|
2019-05-01 04:11:05,600 | INFO : Fitness scores of this generation: |[-0.2639681788289595, -0.2640337203798989, -0.2641084981169778, -0.2640774113687909, -0.26412651902026973, -0.2644044267624496, -0.26411930921106685, -0.2642028390878608, -0.2639900039926714, -0.2641258422240072, -0.26437216158579235, -0.2638575425937108, -0.26434049121884684, -0.2639434811497024, -0.26392740798503284, -0.26429441173066975, -0.26396373734783063, -0.2640659945455157, -0.26426951605298743, -0.26457748990430524, -0.2644289416460856, -0.2640251206905253, -0.26451319115243943, -0.264115035322755, -0.2641182487853143, -0.26420705795650057, -0.26408533815309587, -0.2642199477022476, -0.264110993367699, -0.2642125120529762, -0.2640999513961043, -0.2641887628296126, -0.2639049650565815, -0.26439648649470526, -0.26458062273770694, -0.26454413486154454, -0.2642319484157601, -0.2643704942544462, -0.26426079778777445, -0.2641170768120028, -0.2643081194415749, -0.26410200863111355, -0.2640381567029335, -0.26417257718229104, -0.2641503451625828, -0.26395988545799065, -0.2636533289061867, -0.2641750036282578, -0.2640577326359054, -0.2645832807851224, -0.2641075884825305, -0.26425060397579603, -0.26411476272803086, -0.2642116924589462, -0.26382149387950354, -0.26461977206984993, -0.2637650606784261, -0.2639897810483751, -0.2643285214538999, -0.26426012144397626, -0.2642339231815898, -0.26399306219960994, -0.26427015619963284, -0.26407668655097244, -0.2640281677065108, -0.26405523985865625, -0.26435080801065153, -0.26436814614515075, -0.26452065518631146, -0.2638393222139432, -0.2637168627518874, -0.26414709357235594, -0.2641473071355569, -0.26417802102290666, -0.2643568297991386, -0.26413953925675226, -0.2642315817386033, -0.263886473439483, -0.2639996434452563, -0.26398592427191947, -0.2639715818439418, -0.26394311766996076, -0.264414230067479, -0.2643858451652623, -0.26437705414377244, -0.2640741813460342, -0.2643015306246908, -0.2639378184068058, -0.2641192282802663, -0.26398698904133033, -0.264202019101695, -0.26420483720085397, -0.26432916992589045, -0.2640606863235655, -0.26424018724968557, -0.2641701885321845, -0.2640868956562479, -0.2643049608780305, -0.2640174172728168, -0.26426679544482634]|
2019-05-01 04:11:09,115 | INFO : Best of geration |148| has accuracy of |0.553616| and fitness_score of |-0.263653|
2019-05-01 04:11:09,308 | INFO : Testing generation |149|
2019-05-01 04:14:53,440 | INFO : Fitness scores of this generation: |[-0.26842507904451385, -0.26881104488846336, -0.268669544817669, -0.2686844412159975, -0.26881202313420954, -0.2688099820261464, -0.2688203820386605, -0.2690097756391309, -0.2687564242725835, -0.2683632973022329, -0.2686112462854826, -0.2690104622419657, -0.26881975837172317, -0.2686914975318292, -0.2687140874031234, -0.26893078174106516, -0.26898009783951843, -0.2686478517140858, -0.2686751678482765, -0.2689681725468977, -0.2688079247023162, -0.268976897627597, -0.2689833811056256, -0.2690974508642324, -0.26867698719402383, -0.26880978278419987, -0.2691301052619899, -0.26891050221050034, -0.26863435774559785, -0.26886566338445517, -0.26865425852512376, -0.26878410366473515, -0.2686455100224145, -0.2687468783202953, -0.268935719366437, -0.2688955398616284, -0.26887446130533416, -0.2689452840191663, -0.2688884814603224, -0.26883972144016766, -0.26858766635763726, -0.26853082721695887, -0.2687224470233807, -0.2688077405886617, -0.2689111733959674, -0.2690431866097946, -0.2686763354179215, -0.2685938511241666, -0.2686050566321983, -0.2684874858991103, -0.2687779638563513, -0.26885016552983476, -0.268974376770971, -0.2689246393516488, -0.26865809782823297, -0.26878174438762886, -0.2684859454838288, -0.268572468529122, -0.26860035315121567, -0.2686703107235889, -0.26890631489472905, -0.26882639649145595, -0.2685355126375965, -0.26853462489317526, -0.2686581859756562, -0.26866327879335256, -0.268629250398409, -0.26910832768637366, -0.2688259720595825, -0.2688417840017733, -0.2689991802940743, -0.26885648810973617, -0.2684305105005621, -0.2686466925207517, -0.26905041584104095, -0.2691750909797589, -0.2687594924457629, -0.2688853488439225, -0.2686048526549174, -0.26891689269564717, -0.26856200360536026, -0.26859377320451494, -0.26854943722555324, -0.26863636077826897, -0.26898826702087086, -0.2687188856733864, -0.26896852676092065, -0.26870594197415315, -0.2687755303556319, -0.2682087179763763, -0.2688266271944685, -0.26891305358525514, -0.2691165830604474, -0.26903737587273535, -0.2687524611143262, -0.2689480307333464, -0.2686095478834786, -0.26841882460387145, -0.2688944249312817, -0.26894320202754773]|
2019-05-01 04:14:56,941 | INFO : Best of geration |149| has accuracy of |0.552369| and fitness_score of |-0.268209|
2019-05-01 04:14:57,135 | INFO : Testing generation |150|
2019-05-01 04:18:17,468 | INFO : Fitness scores of this generation: |[-0.2550670277185506, -0.25506652379462186, -0.2548340514835052, -0.2552446270793367, -0.25554655973542795, -0.25544074691634416, -0.2552481169759746, -0.25592469833920156, -0.2552042454481125, -0.2553335434768989, -0.2550251019523493, -0.2550806303131539, -0.25517705603660595, -0.2550328860645888, -0.25536251257172643, -0.25553772119846035, -0.2556352910286003, -0.2552734051918076, -0.25531207220983343, -0.2550141779574831, -0.2550266608509913, -0.25507772377893034, -0.25545092789840806, -0.25543649944948355, -0.2551686117187091, -0.25554486081399447, -0.2549046961184604, -0.2551625698907978, -0.25530430248314395, -0.2547543108325791, -0.25525299903980725, -0.2553389560014456, -0.25557011491355874, -0.2553343795918813, -0.25504899313705603, -0.254853689976492, -0.2552850180603091, -0.255073143192916, -0.2555036917071029, -0.25566038882924885, -0.2555983877099509, -0.25536937575095525, -0.2549185318552224, -0.2548643864149866, -0.2550026272201208, -0.25547882572521113, -0.2556159579492633, -0.2556229509765577, -0.2553416221405808, -0.25536762492466963, -0.2550941824981773, -0.25522651678894354, -0.2553233798709295, -0.2550864016858489, -0.255757848627977, -0.2555315926103856, -0.2554463939751996, -0.25568446898542885, -0.25526477449768004, -0.25494994891693573, -0.25574072832810973, -0.2552001403242934, -0.2555289053655688, -0.25577811142290063, -0.25567131308192065, -0.2553075296071711, -0.25501446661377175, -0.25490021190016326, -0.2551445603508163, -0.25543072445032367, -0.25532452653848586, -0.2557776599709963, -0.2554213250831474, -0.255705282367087, -0.2550173523516803, -0.2549156861115492, -0.2550369372554854, -0.2548591593729446, -0.25534706998448886, -0.2556917436910748, -0.25535841592111663, -0.2552093373484815, -0.25523396284934974, -0.2552077572582227, -0.25538697794096965, -0.2552986464182811, -0.2556012809414077, -0.25558940102072325, -0.2554176178048639, -0.25555815986833497, -0.2551246316375204, -0.2549678846214057, -0.2550073875997306, -0.25509870832629133, -0.25553671426151586, -0.2553689029871249, -0.25520877394021724, -0.2556807215238525, -0.25527657461895115, -0.25503217531185524]|
2019-05-01 04:18:20,982 | INFO : Best of geration |150| has accuracy of |0.554863| and fitness_score of |-0.254754|
2019-05-01 04:18:21,358 | INFO : Testing generation |151|
2019-05-01 04:21:56,741 | INFO : Fitness scores of this generation: |[-0.26469025556075837, -0.26491558809470905, -0.26490220777606, -0.26501934017961626, -0.2646741654699447, -0.2649479947882034, -0.2650321024510572, -0.2650548255578634, -0.26497834901334844, -0.26512146705165107, -0.26489519020881264, -0.26478414353900676, -0.26529817136541034, -0.2649622643782969, -0.26450061945596764, -0.264705622203306, -0.26456653439152716, -0.2651030503182306, -0.2650834658740174, -0.2650509980120116, -0.26535216341718154, -0.2653505278259214, -0.2646144252130512, -0.26506626909875275, -0.264627144709185, -0.26472813838212067, -0.265155141063581, -0.26500885733267204, -0.26556149647572813, -0.2646113857849055, -0.26460581682022655, -0.2652615624022896, -0.2649446148991798, -0.26503097623604427, -0.26528403248258053, -0.26535404816083275, -0.26450613926547445, -0.2649048160923757, -0.2646673507966239, -0.26472702856993635, -0.26531134331659967, -0.26474019812201205, -0.26524022875545844, -0.26526907857642973, -0.26494519210814294, -0.26487895880132184, -0.2648439043927349, -0.2652034897426089, -0.26492877529359815, -0.26503938802595145, -0.2649918345375721, -0.26484862837182954, -0.2655949682334952, -0.2649006142492584, -0.26448763977152007, -0.26495401707872723, -0.2648877003893798, -0.2652819308412878, -0.2649791903380631, -0.26497864931128745, -0.26477035837437896, -0.26474391486435755, -0.2645999370548223, -0.26491244948542964, -0.26511764659651277, -0.2651225432940161, -0.26483180795529093, -0.26525761289261035, -0.26531867607406157, -0.2649700302557357, -0.2646947802534826, -0.26470619152185104, -0.26493612219694473, -0.26444959693816567, -0.2649615427782369, -0.264903497272968, -0.26486343593205025, -0.2647882370843586, -0.2647300741291501, -0.264736269511278, -0.2646950460219568, -0.2655490590264986, -0.26484609496117206, -0.2648912508642666, -0.26452627360429803, -0.26484079219147644, -0.2645435911704901, -0.26547512301889714, -0.2649983344471874, -0.26502769426639833, -0.2650153467039587, -0.2648393739776805, -0.26456704947233345, -0.26516373381773917, -0.2647431519462299, -0.26454097386194114, -0.2648700847999639, -0.26466780643272625, -0.2649036837462947, -0.2648722304427773]|
2019-05-01 04:22:00,264 | INFO : Best of geration |151| has accuracy of |0.558603| and fitness_score of |-0.264450|
2019-05-01 04:22:00,467 | INFO : Testing generation |152|
2019-05-01 04:25:18,630 | INFO : Fitness scores of this generation: |[-0.26550220042229333, -0.26513165390079324, -0.26536661251745325, -0.2654848167712384, -0.26500241890391135, -0.2651979441734705, -0.2656837568241865, -0.2650591671229043, -0.26567893506998713, -0.2654799166868659, -0.26477532072904264, -0.2650788133528004, -0.2647284111206202, -0.26484796638659974, -0.26580857830320265, -0.2650872746759907, -0.26571358300428444, -0.2650382788257396, -0.2650220023983337, -0.26525254393036063, -0.2653362242148278, -0.265258525795442, -0.26548148136823735, -0.2653149082226322, -0.265530327493523, -0.26503368451240217, -0.26514992026731055, -0.2656285423745817, -0.2649562933502045, -0.2651516085768, -0.26536211470498683, -0.26602505080084854, -0.26556636823063834, -0.26532891051883395, -0.26521388060869056, -0.26472193755685014, -0.26493026088289123, -0.2656174723177831, -0.26552861572263087, -0.2652778883880757, -0.2659369647859576, -0.2649275881258097, -0.2650350106761177, -0.2653885431429173, -0.2648673652413678, -0.26530008862151744, -0.2655089109581202, -0.2656048539471119, -0.2652752850838798, -0.2652906507174385, -0.26527323141852593, -0.26498967008863356, -0.2649337512619318, -0.265266313039242, -0.26531357888845686, -0.2657784959499506, -0.26549689311217123, -0.2651077720554585, -0.2648970191862355, -0.26510595367785467, -0.2649618857639267, -0.26519400202371973, -0.265540794092924, -0.26553997232955184, -0.2651980240690581, -0.264942369919191, -0.2651407902545117, -0.26527844579454435, -0.26542687158476796, -0.2656650150075872, -0.2655957959830127, -0.2654294356941543, -0.2650288028761427, -0.26488729275049683, -0.26510484738552825, -0.2654349508873643, -0.26517947083537247, -0.26505822070101476, -0.2653001376447525, -0.2653790931514603, -0.26588117511586307, -0.2653873537449127, -0.2652266356856265, -0.26518998473407107, -0.2648622571550151, -0.2651224691975624, -0.2655177054173769, -0.26574813136632774, -0.26514833281807443, -0.26511821475751857, -0.2654396419988034, -0.2649632834215113, -0.26491041259562714, -0.2653710124816032, -0.2653070637124016, -0.2654156274697248, -0.2652014643548334, -0.2656120693192203, -0.2651434413930203, -0.2653371159462853]|
2019-05-01 04:25:22,144 | INFO : Best of geration |152| has accuracy of |0.552369| and fitness_score of |-0.264722|
2019-05-01 04:25:22,349 | INFO : Testing generation |153|
2019-05-01 04:28:53,752 | INFO : Fitness scores of this generation: |[-0.2637967734899319, -0.2641450013283273, -0.26374088876264196, -0.2642123054555604, -0.2646272443444796, -0.2640589357156989, -0.26402447428291953, -0.26423324338147336, -0.2646244263250223, -0.2647583173509215, -0.2640913149105831, -0.2640845776338812, -0.263552462865769, -0.2642745046233627, -0.2642397214829082, -0.264283390448127, -0.2641550893305053, -0.2643571977883997, -0.26380918126710706, -0.2640320737282155, -0.26386652988657144, -0.2639225679803902, -0.2639034282153761, -0.26462077886705665, -0.2647074999838648, -0.26418623687096043, -0.2638580287636166, -0.26373667968830594, -0.26431285924684833, -0.2639922606168498, -0.26435890023557235, -0.264371401890063, -0.26440666931825624, -0.26396081170565644, -0.2640564715148697, -0.2639350564546988, -0.2641660365000577, -0.2641646552253777, -0.26391467100507776, -0.2643069796998736, -0.2643473492646721, -0.2642335963605995, -0.2639867383304616, -0.2643042576354994, -0.26396319487355124, -0.2639372108897693, -0.2643320135457415, -0.2649735070660081, -0.26462136382158374, -0.26416068213506483, -0.26398404750605703, -0.2638398873659087, -0.263913477380091, -0.26400680196746973, -0.264154751179084, -0.26466568022126885, -0.26434946010859917, -0.26416659505224566, -0.26422782349334634, -0.2637266541975485, -0.26402401989194707, -0.2641177294854547, -0.26381798212377117, -0.2641919589483402, -0.263897950978766, -0.2642470826355504, -0.26421805537292653, -0.26399904959638354, -0.26405712803694564, -0.2637470692396164, -0.2640487296165715, -0.26456532766911345, -0.2643835799479988, -0.26375988773267034, -0.264024231771768, -0.2638183187850764, -0.2637690894305706, -0.26400975462206655, -0.26419531031393667, -0.2642246709533141, -0.26459371891449873, -0.2642743967893258, -0.2637509093737938, -0.2639650026992173, -0.2636816287754287, -0.26390445669981794, -0.2640896052751743, -0.2641601846461565, -0.2644311287033726, -0.26430234170295824, -0.26419038833446906, -0.2635985172550443, -0.2639934079118178, -0.2640392521317576, -0.26427916034426485, -0.26424194347690527, -0.2641635100816337, -0.26427324341846187, -0.26376763638896, -0.26363925460568616]|
2019-05-01 04:28:57,323 | INFO : Best of geration |153| has accuracy of |0.554863| and fitness_score of |-0.263552|
2019-05-01 04:28:57,514 | INFO : Testing generation |154|
2019-05-01 04:32:16,690 | INFO : Fitness scores of this generation: |[-0.24866395283161036, -0.24892200126891414, -0.24906171739546776, -0.2491332574621084, -0.2492273523568513, -0.2488765118279463, -0.24912349213550278, -0.24903443168064726, -0.24918321034828128, -0.24945786747510823, -0.24918433292716705, -0.24891024078259877, -0.24912547167033366, -0.2489626506160235, -0.24890613695084676, -0.24916040058599165, -0.24923732923169806, -0.24912501452200736, -0.24880096685619163, -0.2490417799387002, -0.24915787538659676, -0.24895184838756976, -0.24871215777260577, -0.249072189385983, -0.24917740386865503, -0.2490114747067614, -0.2491199539540565, -0.24898002112045384, -0.24915998823393326, -0.24912208810467204, -0.24863714092917935, -0.24902997408085414, -0.24909863811204325, -0.24899745985847035, -0.24920574743602225, -0.24893196806738416, -0.2491304473963057, -0.24934088116787737, -0.24887213795672022, -0.24902288695498095, -0.2490559297510577, -0.24883428344022887, -0.24886635725257703, -0.24894121545337947, -0.2489819665663269, -0.2489224102065097, -0.24904356854196502, -0.2489255911126677, -0.24905635834037143, -0.24936943726699942, -0.2486681969346917, -0.24908431618477903, -0.2490575048019402, -0.24904340405392913, -0.24902464553324105, -0.248931311822472, -0.2492074943605722, -0.24905861787971198, -0.24860280635273768, -0.24897958000525738, -0.2490203813330768, -0.24903939105802278, -0.2491761055377174, -0.24895729540219788, -0.2491635364360857, -0.24900165322708756, -0.24880842057289845, -0.2490880401018696, -0.2493196832361732, -0.2488556703179147, -0.24894361828881806, -0.24919855427623241, -0.2492095264113261, -0.2495145278694027, -0.24881769505191415, -0.24888169813720257, -0.24899756880581453, -0.24921111198395007, -0.248953668556059, -0.24908306038617198, -0.24900380051596227, -0.24920697525087954, -0.2487990472971428, -0.24865083505920277, -0.24903518540476208, -0.24906254189545904, -0.24898806247734934, -0.24929677768335545, -0.24911990370207082, -0.2492393218676744, -0.24872604489400704, -0.24882460280714713, -0.24918546632470406, -0.24880109228203037, -0.24881655092851013, -0.24923837119956985, -0.24925260622504342, -0.2489744143683468, -0.24905217616154277, -0.24873614411425324]|
2019-05-01 04:32:20,203 | INFO : Best of geration |154| has accuracy of |0.551122| and fitness_score of |-0.248603|
2019-05-01 04:32:20,392 | INFO : Testing generation |155|
2019-05-01 04:35:52,982 | INFO : Fitness scores of this generation: |[-0.2664381205134257, -0.26643232368364295, -0.2666103405017343, -0.26641682319659526, -0.266540591244225, -0.2662613199810417, -0.26650381468936435, -0.266337034909805, -0.26664573349240817, -0.266416959982351, -0.2665909970301459, -0.26645954870924526, -0.2663013064032816, -0.26618323132798477, -0.266071660925983, -0.2665766641459256, -0.26663738001075643, -0.26654534552011405, -0.26656517782458317, -0.2666095465690166, -0.266222563451168, -0.26636995025161303, -0.2667202482831831, -0.2666215616610366, -0.2664270596231119, -0.26680080344279605, -0.2663981771645552, -0.2668666633534002, -0.2665139945029752, -0.2661799025677499, -0.2663322021678915, -0.2664421405571308, -0.26664447202377184, -0.2666160168181362, -0.2665438270975417, -0.2666407528128403, -0.26612539622966236, -0.26622759085747877, -0.26638653872479495, -0.26642751329347125, -0.2666882904033096, -0.2665645780768173, -0.2665749954747724, -0.26652699748253117, -0.2664632499026209, -0.2665588399503222, -0.26620637958190924, -0.26641982416963944, -0.266609867691917, -0.2665560155186414, -0.2664563633031673, -0.26630539975417933, -0.26629387598815574, -0.26657330213136193, -0.26622549426218106, -0.2665486808295722, -0.2663652669624012, -0.26654475801738226, -0.26641982820656923, -0.2667503281756564, -0.26614813921802905, -0.2664792699262289, -0.266281776897312, -0.2664465795593526, -0.266700203172105, -0.26643123449889544, -0.2666560202894524, -0.2663079603758558, -0.2664851454138142, -0.2660761740792212, -0.26641551689023063, -0.26644256485666856, -0.26668161635156457, -0.2666474644722779, -0.2664562672894434, -0.2663643224359019, -0.2662871211019262, -0.26642590751595785, -0.2665809241040793, -0.2664942516630067, -0.26668438523470817, -0.26669310764954973, -0.2667056760406709, -0.2666178611772401, -0.2663088914682966, -0.26647896576610464, -0.26591661696153257, -0.2666447290352413, -0.26664595384548684, -0.26640801504733785, -0.2666224001534043, -0.2663116470612154, -0.2660862695296299, -0.2665491263685386, -0.26637533577482675, -0.26648350806961957, -0.2666226756139305, -0.2666014830079625, -0.26656276543781715, -0.2664234073715167]|
2019-05-01 04:35:56,492 | INFO : Best of geration |155| has accuracy of |0.553616| and fitness_score of |-0.265917|
2019-05-01 04:35:56,922 | INFO : Testing generation |156|
2019-05-01 04:39:11,076 | INFO : Fitness scores of this generation: |[-0.2521163790101507, -0.25234038337885617, -0.2525325628468789, -0.25251263000041124, -0.2524444490790846, -0.25235807518643066, -0.252127560237086, -0.252826558358698, -0.25239857190464393, -0.2524485227214285, -0.25229513411780435, -0.2527248960541913, -0.2522617814890352, -0.25212193229591034, -0.25276904849402876, -0.25273514799324864, -0.2522743324857639, -0.2525880779008789, -0.25250522481150417, -0.2524550862341042, -0.2524800341292079, -0.2526103334733281, -0.2523704658311055, -0.2528034365739688, -0.25251876850085087, -0.25230506283930504, -0.25224658389048404, -0.2527657331352732, -0.2524918722340381, -0.25256889304482794, -0.2526069692818515, -0.25245724118737334, -0.25240399661552476, -0.25211487614725486, -0.252557021277736, -0.2526042533806529, -0.2523967729634549, -0.25204237948459796, -0.25239620606104535, -0.25250045015629996, -0.2521132969832325, -0.25211013213218936, -0.25206576191995994, -0.25258187423030054, -0.25233102691580495, -0.2525803555685832, -0.2527320522620496, -0.25254060788805704, -0.25250760881776313, -0.25210734998365963, -0.25233912797098657, -0.2526383904448475, -0.2524654081008999, -0.25199353500422705, -0.25263197450752717, -0.25239456444978714, -0.25233730027474555, -0.25202370464921475, -0.25254983027057953, -0.25241701933274785, -0.2524146275467662, -0.25263383703298836, -0.2523281713087396, -0.2527554165048293, -0.2527559315224728, -0.251852305418995, -0.25223132967948914, -0.2525559041693986, -0.2523900717496872, -0.25187621181868164, -0.2526975298023607, -0.2529966464064207, -0.25224068473620587, -0.25208988079584266, -0.25273628179806784, -0.2522600390406019, -0.25269160123474627, -0.2524234672866193, -0.25227861483413055, -0.25219047225144015, -0.2524018810994654, -0.25211451163732385, -0.2523292096623455, -0.25263658746418705, -0.25256153564137146, -0.25196482268083525, -0.2523073943623577, -0.2524444814846219, -0.2523225575505969, -0.2516276205040844, -0.25227581102206525, -0.25236108572966603, -0.25211525783241995, -0.25272095730027044, -0.25246389326919993, -0.25250154757595444, -0.25209234418519527, -0.25252021071183156, -0.2525685245552695, -0.25262383883257944]|
2019-05-01 04:39:14,595 | INFO : Best of geration |156| has accuracy of |0.548628| and fitness_score of |-0.251628|
2019-05-01 04:39:14,798 | INFO : Testing generation |157|
2019-05-01 04:42:47,103 | INFO : Fitness scores of this generation: |[-0.27264130983049023, -0.27285274285205857, -0.2732335996945389, -0.2728029961823023, -0.27320468045233753, -0.272862828323948, -0.2733494347860629, -0.27297088285016113, -0.27298012195739596, -0.2729855612007498, -0.2725832823947159, -0.27272941917665133, -0.2726916568166176, -0.2732538862360848, -0.2730268724093273, -0.2727810317157847, -0.27278561852364047, -0.2729463174484084, -0.2725990766573448, -0.2725425877301549, -0.2736670100375226, -0.2730807616503073, -0.2733782984998956, -0.27286941967202594, -0.2730409025642452, -0.2730399569359749, -0.27288090862222425, -0.2724199197832991, -0.27306662282051397, -0.2731303776758998, -0.2731629808646971, -0.27288728492495457, -0.27251992725644353, -0.27317587592680787, -0.2730718748746869, -0.27289908187121364, -0.2730631245623323, -0.2731835905552065, -0.27346972140342557, -0.2729109318671558, -0.27284884620324756, -0.2728792037415458, -0.2728816294743691, -0.2728098953424761, -0.2727903240760322, -0.2735831371815349, -0.2730191996281142, -0.2727924796127514, -0.2732415920712872, -0.2730659765613164, -0.27265924359584026, -0.27292925344030916, -0.2737878310246619, -0.2728837439191272, -0.27287314991001344, -0.27289082868057385, -0.27292624354130113, -0.2731064567130599, -0.2727637836943206, -0.27267764593929034, -0.2728760255049234, -0.273342539963589, -0.2727800049202406, -0.2730184247774145, -0.27291814763101374, -0.27272953103702513, -0.2730293809457442, -0.2724570758529419, -0.2733224947066025, -0.2737913989474666, -0.2736007173662452, -0.2729950975856663, -0.2735666481316903, -0.27304906153578196, -0.2726701355700837, -0.2726118923143724, -0.2731737080838016, -0.2733171936499755, -0.2732326170021718, -0.27284695278753934, -0.273027814687499, -0.2732128771947838, -0.27272667205705514, -0.2723774346846741, -0.27281754612535375, -0.27309144868759305, -0.2729836475876262, -0.2730238127139112, -0.27381059265005037, -0.2731475110775159, -0.2729897608592032, -0.27263917829635625, -0.2730381456267299, -0.27345881110046344, -0.27316180874652257, -0.2729647846927575, -0.27347627375093353, -0.27323000390588503, -0.2726570671839401, -0.27254495711160837]|
2019-05-01 04:42:50,640 | INFO : Best of geration |157| has accuracy of |0.553616| and fitness_score of |-0.272377|
2019-05-01 04:42:50,835 | INFO : Testing generation |158|
2019-05-01 04:46:14,360 | INFO : Fitness scores of this generation: |[-0.2647961399175273, -0.26439478120957516, -0.26415064834865376, -0.26433680187193753, -0.26444940032869335, -0.2644909531971975, -0.26495753502141395, -0.2638404728209428, -0.26441581143047943, -0.2656843980028892, -0.2647874680820489, -0.2649848368569155, -0.2640829300282785, -0.2635997878512636, -0.2642317731250261, -0.2645823479819319, -0.2641964385364348, -0.2647483100449281, -0.2650160212386583, -0.2652174952100619, -0.2641886333962477, -0.2648571474859516, -0.2638460936670124, -0.26451582607672275, -0.264344231481518, -0.2648861270027707, -0.26378107858002986, -0.265743825701378, -0.26483216468201437, -0.26482415997032194, -0.2641064404854309, -0.2646544797407695, -0.2652327329480659, -0.2645874185389243, -0.2638669487559166, -0.2636633686114339, -0.2644008548268273, -0.2650140598349627, -0.2644704256136714, -0.26472650707141565, -0.26492583375480844, -0.2651863989279328, -0.26470530793511027, -0.2630090676148021, -0.26409513155797176, -0.2645741874550535, -0.26532722023735117, -0.2644872391127857, -0.2648086708469271, -0.26436442352878053, -0.26414830767905595, -0.26377293851723493, -0.2648954039027676, -0.26505098704685565, -0.2644182386255307, -0.26520948422840906, -0.26376895946696494, -0.26441757411645156, -0.26531361453001695, -0.2642395575876842, -0.26447369511787017, -0.2644435564587985, -0.26384589620328097, -0.2647738084530553, -0.26488576110389045, -0.2649326028040508, -0.26474063150457966, -0.26343603460193216, -0.26426217133377744, -0.2651279071344258, -0.26377267443183927, -0.26422155423685173, -0.26409973301520384, -0.2648308335294015, -0.26460614728415344, -0.2645949000157516, -0.26489744879031885, -0.2649460830854964, -0.26426461592463374, -0.2643844476211466, -0.2650080681007252, -0.2639991869431259, -0.26422381305011555, -0.2646264682791547, -0.2644942406841763, -0.26592436929099134, -0.264026489152157, -0.2647027426408462, -0.26463380944227255, -0.2646203711295405, -0.26404170130338644, -0.2636475723133412, -0.26477437720516483, -0.2649085896027974, -0.2640119269156733, -0.26519145945298855, -0.26481808163058895, -0.264821363301179, -0.26481445839390116, -0.26362563617654217]|
2019-05-01 04:46:17,884 | INFO : Best of geration |158| has accuracy of |0.557357| and fitness_score of |-0.263009|
2019-05-01 04:46:18,085 | INFO : Testing generation |159|
2019-05-01 04:49:41,844 | INFO : Fitness scores of this generation: |[-0.26855484960207426, -0.26836813407471455, -0.2682264422574841, -0.2685421916296283, -0.2685774512796763, -0.2682393756639435, -0.26831116527318954, -0.26872369546101865, -0.2686391553852663, -0.2687078638083906, -0.268685134639778, -0.2684063169941959, -0.2687067544139714, -0.2682635538072225, -0.2684941393920625, -0.26867855509438837, -0.26888626107419156, -0.2686103390626223, -0.26852899353461435, -0.26799123155405796, -0.26831478028895844, -0.26864301009600855, -0.2682781520177169, -0.26836003110821977, -0.2686502642306199, -0.26864222983321345, -0.26873579217618204, -0.2681966917626411, -0.2682680789811678, -0.2686375482564428, -0.26858247579093947, -0.2686778099769615, -0.26873377888682354, -0.2684580425164139, -0.26833891304603136, -0.2682596748449888, -0.26830864219789013, -0.2685232338499263, -0.2685297563434597, -0.2685934967135053, -0.2687066631369382, -0.2689653916128603, -0.267831864555281, -0.2681379594591509, -0.2687256850331903, -0.2685201573834951, -0.2681739845598836, -0.26832359595840194, -0.2689264577876524, -0.2683146211255594, -0.2682772786671897, -0.26835137261337494, -0.2684031691981027, -0.26832890955812905, -0.2683123652322359, -0.26830443763637923, -0.2683439486886401, -0.26835709302667604, -0.2684951759726403, -0.2682423541448506, -0.2684954329434619, -0.2684224914625821, -0.2686697797946246, -0.2684606331218761, -0.2690151050924305, -0.26856863789586904, -0.2682872681444385, -0.2681471813484967, -0.26853900666968283, -0.2683149580342836, -0.268506563368784, -0.26877048344488635, -0.2686717523284167, -0.2684861999227706, -0.2683366380958443, -0.26906451624465655, -0.26843087143632044, -0.26833956798471775, -0.2683287137058152, -0.268395815296952, -0.26847717729935133, -0.26815293732273626, -0.2682592970916475, -0.2678768088024451, -0.26848789455881156, -0.2683756732311382, -0.26840578200688875, -0.26857418166213776, -0.26854175949595366, -0.2686962558631878, -0.26802172452448847, -0.2686372190654515, -0.2688045713946639, -0.2681619781718786, -0.26870303232950044, -0.2683657179493828, -0.2685254342349402, -0.26906420435919703, -0.268270130265519, -0.26822017029343376]|
2019-05-01 04:49:45,333 | INFO : Best of geration |159| has accuracy of |0.557357| and fitness_score of |-0.267832|
2019-05-01 04:49:45,544 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 04:49:45,547 | INFO : Testing generation |160|
2019-05-01 04:53:05,806 | INFO : Fitness scores of this generation: |[-0.26505128511686643, -0.26527382351422424, -0.26554971970796015, -0.26583625529513977, -0.26586250978651227, -0.2661011939306864, -0.26538704547799374, -0.26573486553068365, -0.2657551652078994, -0.265296517055856, -0.2656799097630111, -0.2655413430986222, -0.2656901649346477, -0.26581752788649793, -0.2660272499662267, -0.26546310473001744, -0.2659785671952809, -0.2652186877562098, -0.265757053894432, -0.26549336825760356, -0.26562112985116443, -0.26611211669573376, -0.2653054208026834, -0.2657940657586572, -0.2656823076379071, -0.26474416983184634, -0.26569419692863117, -0.26553687786585406, -0.26548144966363907, -0.2658318368513048, -0.26495541705255304, -0.2658825524899948, -0.26564302835524367, -0.2653759926129756, -0.2663443269270459, -0.2652960611444911, -0.2659057179314383, -0.2660692290327195, -0.26523621061273167, -0.2660512809940217, -0.265838904279556, -0.26594991605889284, -0.2660065338585936, -0.26595946928958575, -0.2660449142946581, -0.26555942829573553, -0.26483001595621475, -0.2651851432460347, -0.26675314826971036, -0.26584401969133953, -0.26600235746950623, -0.2659333997080771, -0.2653342734968833, -0.2656930411795965, -0.26524144560811624, -0.26544771361293973, -0.26599544315246876, -0.2655711438168179, -0.26552483494700996, -0.26588665303644954, -0.2653206108432067, -0.2657546912939355, -0.2652480056126152, -0.2657532992295957, -0.26601328347858627, -0.2655941047237821, -0.2652984983577397, -0.2654186548157172, -0.26577445483236223, -0.26564837379033485, -0.26477665903323006, -0.26548376973522336, -0.2661366434901525, -0.2650290673429316, -0.2657780173328219, -0.2652892047209603, -0.26534416430304497, -0.265989539333793, -0.2653626284637805, -0.26547423778681095, -0.26574493324357357, -0.2653669066121133, -0.2651492035702655, -0.26563312730007765, -0.26515557190946987, -0.26541055867261293, -0.26501314632558937, -0.2659473955880797, -0.26542068230050603, -0.26566962001212474, -0.2661729276750647, -0.26557315820070543, -0.26562759711554174, -0.26636082600606115, -0.2657165403286236, -0.2656910743154407, -0.2659923457250926, -0.2656443882109731, -0.26537915484970837, -0.2659755140436038]|
2019-05-01 04:53:09,378 | INFO : Best of geration |160| has accuracy of |0.563591| and fitness_score of |-0.264744|
2019-05-01 04:53:09,844 | INFO : Testing generation |161|
2019-05-01 04:56:36,731 | INFO : Fitness scores of this generation: |[-0.2735870969969897, -0.27340314192650916, -0.27343389941085, -0.27351115006773724, -0.27333778108217555, -0.27394957691678984, -0.2732734274670804, -0.2733819986788088, -0.2739826445893916, -0.2737546302316193, -0.27350467693885033, -0.2732758651706026, -0.2733404850106866, -0.27334493091221457, -0.27354889995296067, -0.27408408581863425, -0.2734858004156246, -0.27367350219837244, -0.27351916299981005, -0.27324759079989497, -0.2733954682375944, -0.2734329485258524, -0.2733954278482574, -0.273829591378396, -0.27398549121945553, -0.27321969477239744, -0.2735681731669161, -0.2738249950272073, -0.2730044941611576, -0.2733276458379631, -0.2731787269553805, -0.27342254098213453, -0.2736243528256599, -0.2730698302983246, -0.2733083999841265, -0.2731538286522502, -0.2732390620173908, -0.27368228327166816, -0.27349927545387215, -0.2733298228207523, -0.27406819738732796, -0.27382460241508166, -0.2734969233266526, -0.2734537771879734, -0.2733414095025293, -0.2733277887502645, -0.27350234610962987, -0.2737752294877603, -0.27379428441582027, -0.2731787637991834, -0.27367650874938426, -0.27315167859568573, -0.27317352834686065, -0.2734715055655719, -0.2735399928892313, -0.2733972238968692, -0.27424844896138806, -0.2735053327139126, -0.27339673724130864, -0.2731649462945648, -0.2737249141425737, -0.2734366321623226, -0.273565057287002, -0.2738922910761714, -0.27393372664336557, -0.2736039359289874, -0.2735043043106447, -0.2731462688543237, -0.27331863335037787, -0.2733979142346914, -0.2737783110032661, -0.2736362371587515, -0.27389798619584516, -0.273695141796066, -0.27318234364819804, -0.2733192909477951, -0.2732273154766508, -0.2735202625121134, -0.2735076571710891, -0.2738222401967263, -0.27410665956541225, -0.27329609132745303, -0.27337345699105603, -0.273435606362419, -0.2734782073814143, -0.2731821372262055, -0.2733597128393249, -0.27355981908255134, -0.2736169357416832, -0.2736431694219196, -0.27309210711281234, -0.27332121017272776, -0.273426347113092, -0.27311146230794825, -0.27332569609168367, -0.2737424098289945, -0.27358330770112116, -0.27337801693233593, -0.2734777349947693, -0.27335012442557866]|
2019-05-01 04:56:40,350 | INFO : Best of geration |161| has accuracy of |0.556110| and fitness_score of |-0.273004|
2019-05-01 04:56:40,546 | INFO : Testing generation |162|
2019-05-01 05:00:11,870 | INFO : Fitness scores of this generation: |[-0.26085976684618295, -0.2611013397439054, -0.26113985867287043, -0.26105784117175845, -0.26109981234885027, -0.26149346797637885, -0.261152598301403, -0.2612387561593999, -0.26121382246602254, -0.26141381535515096, -0.261175539820949, -0.26092508056212105, -0.2614571912087901, -0.2612931052760425, -0.26128817580322716, -0.2615932133400215, -0.2610442644540952, -0.2608204149412659, -0.26083679344169247, -0.26108605322472955, -0.26081626468151287, -0.2611717105765679, -0.26078060864985697, -0.26164630769766933, -0.26100022701389053, -0.2610008134177979, -0.2610734143222153, -0.26103119600035773, -0.26102881071077705, -0.2613061306715678, -0.26131725337312073, -0.26117538411370694, -0.26109653095904134, -0.2612785060846414, -0.2612164842757539, -0.2609975449506592, -0.2609106582790551, -0.261121166368867, -0.2615078507208641, -0.26120425894033816, -0.2611537421815967, -0.2614057674264675, -0.26112752902932634, -0.2607408332229077, -0.26103664146362693, -0.2610446510304112, -0.2616551902475764, -0.2612855588844154, -0.2608764776914458, -0.2611548451590921, -0.26146960593786045, -0.26107813530373125, -0.26099793428644946, -0.2610957066363842, -0.2610406688486755, -0.261866112393903, -0.26149866063015015, -0.26136958471009314, -0.26147713523116, -0.2614677372218678, -0.26054470933541646, -0.26134784472813394, -0.2614301642719305, -0.26153370742194726, -0.2609859378520298, -0.26109298183774715, -0.2612991841063476, -0.26108961150956106, -0.2610741730214498, -0.26132354647400163, -0.26146742975395265, -0.2611157669315465, -0.26151267126212996, -0.26092844439252616, -0.26110691250745105, -0.26104406401213026, -0.26102200850250834, -0.26105922485547495, -0.26138058455776786, -0.2611119708112701, -0.2611601911042638, -0.2611785275922798, -0.26116049047077894, -0.26099387912963506, -0.2613613198138383, -0.2612459034893914, -0.26060268098578265, -0.26164065330575015, -0.26122633132961226, -0.26112498679334345, -0.2610589932574833, -0.2609001432970468, -0.2610593533324329, -0.2614573274851678, -0.2616153497074468, -0.2610815669026598, -0.2608199440395807, -0.2615275496394379, -0.2610300458827109, -0.2609770072143783]|
2019-05-01 05:00:15,488 | INFO : Best of geration |162| has accuracy of |0.561097| and fitness_score of |-0.260545|
2019-05-01 05:00:15,699 | INFO : Testing generation |163|
2019-05-01 05:03:39,000 | INFO : Fitness scores of this generation: |[-0.26406326586891987, -0.264362017741662, -0.2643267362712619, -0.26407106449166856, -0.26426769764664654, -0.2643198766157718, -0.2642022108804726, -0.2643565920467128, -0.2642680967678288, -0.2642572779872852, -0.2640481035790606, -0.26417279026969404, -0.2644697280529745, -0.26425634363371286, -0.26427813199813477, -0.2639902160019578, -0.26427169827994457, -0.2641391431341668, -0.26447333174501964, -0.2643098451630147, -0.26456327168998833, -0.26432415321917235, -0.26430140402847396, -0.26415209882782553, -0.26408241842994706, -0.2640669301958505, -0.2641950726270198, -0.2643159457700764, -0.2644096667876463, -0.26413143129052524, -0.26434524997859776, -0.26388639263913244, -0.26425915323421806, -0.26414044753821914, -0.26416195824533284, -0.2641834960522537, -0.264571146759576, -0.2647420439966217, -0.2641877910357439, -0.26453496260430387, -0.26402460737433847, -0.26411103557250304, -0.2641025988127521, -0.2640674681606178, -0.2640995607227983, -0.2640447822774579, -0.26410238025243393, -0.2641879464079717, -0.26417516333187274, -0.2645327817641184, -0.26414640643493925, -0.26429812141315256, -0.26414246845221473, -0.2642639751185874, -0.2646538718250806, -0.2643465185631253, -0.2643550246625482, -0.2642212175504717, -0.2642241500780912, -0.26439951307967097, -0.2646005716555582, -0.2640223740366752, -0.2643486513851401, -0.26409411458727833, -0.26423468782691534, -0.26414677784414237, -0.26411233378018073, -0.264157416825304, -0.26421802904538977, -0.26402699414319647, -0.26429037231660796, -0.2644518556181558, -0.2643064598969085, -0.26410866001684347, -0.26430572457387597, -0.2643034267789854, -0.26409110710592215, -0.2642180024681684, -0.2645223622689983, -0.26434596604061034, -0.2641814653733689, -0.26435256673243335, -0.264194803569981, -0.2643203304591542, -0.26386741162063126, -0.26445537347174836, -0.26429065961935716, -0.2642234504999283, -0.264237746387302, -0.264411587544338, -0.2643703343663999, -0.2642341849201906, -0.2644124287432564, -0.2643835560711687, -0.2641633535793167, -0.2645086825700227, -0.2641605989697701, -0.2641151548925048, -0.2645749460778877, -0.2643629689971526]|
2019-05-01 05:03:42,553 | INFO : Best of geration |163| has accuracy of |0.564838| and fitness_score of |-0.263867|
2019-05-01 05:03:42,753 | INFO : Testing generation |164|
2019-05-01 05:07:11,272 | INFO : Fitness scores of this generation: |[-0.26105308062718346, -0.2603471205356033, -0.25995018964642314, -0.26008588250242115, -0.2604537148202021, -0.2597277035060702, -0.2606651113274392, -0.2596970158801033, -0.26021159087482654, -0.26037981182958686, -0.26008800206702937, -0.2594611513193691, -0.2599510355205253, -0.2601349296505723, -0.26036048551384555, -0.2606754531518797, -0.26041405354992725, -0.2601458511373587, -0.2608616254015872, -0.26031513707069487, -0.25996065811877456, -0.2602105878090208, -0.26061601908115095, -0.2600996052759608, -0.26061189576481164, -0.2603514062219791, -0.26012577310228424, -0.2604808540682923, -0.2597746080083602, -0.26070397757412345, -0.26103347282778966, -0.260242558298199, -0.2605411569149881, -0.26022315944991947, -0.2601609787220557, -0.2598849515734094, -0.2602273579298206, -0.26083801612616736, -0.26020301030545134, -0.26019054950240333, -0.2610210954042729, -0.26024146741599946, -0.26044046807059507, -0.2603835712873151, -0.2601308190946977, -0.2604818115217154, -0.26122772486739904, -0.2598782017420421, -0.26013428143810113, -0.260557104805021, -0.26050137258456185, -0.26040063076092, -0.25968033926827566, -0.26058484460817677, -0.26035476502264293, -0.25993717258518045, -0.2604579792790007, -0.260866958653946, -0.2598683708743529, -0.26007951957504016, -0.2597654562317923, -0.2609287187768024, -0.26084769627207927, -0.2598395021109099, -0.26083432652211685, -0.2602252135977125, -0.26037193778573414, -0.26006134436802153, -0.2597281753442835, -0.2611850696955217, -0.2601807289674615, -0.26032631130318007, -0.2606394819759825, -0.2601333207796129, -0.2599651270320289, -0.25971302595796786, -0.26014090336584167, -0.2609324345834565, -0.2608583064130948, -0.26048611457284726, -0.26049792673289296, -0.260323594723429, -0.26008472798532695, -0.2601923100997127, -0.25984809481887144, -0.260386419932494, -0.2599584689994685, -0.2598367610267613, -0.26035812430167465, -0.26003918709475576, -0.2606820280919297, -0.2596189466157082, -0.26005013358822604, -0.2609239104017017, -0.26056711098259944, -0.26044541281643496, -0.26041443925799374, -0.2602066667227263, -0.2607116779106195, -0.25967882470755477]|
2019-05-01 05:07:14,788 | INFO : Best of geration |164| has accuracy of |0.556110| and fitness_score of |-0.259461|
2019-05-01 05:07:14,998 | INFO : Testing generation |165|
2019-05-01 05:10:27,962 | INFO : Fitness scores of this generation: |[-0.26527518887966, -0.2649220946239449, -0.26527331525470776, -0.2649300763307259, -0.26485183416751396, -0.2651995318500619, -0.2647454340381232, -0.2648908857539383, -0.26485353377130294, -0.2650481409322449, -0.2652623902635965, -0.2655557951731989, -0.26539969017282566, -0.2654335198172352, -0.2650427856640509, -0.26474971293705946, -0.2647537184737579, -0.26499937413728725, -0.26524384877486534, -0.2652514766879946, -0.26549292778411104, -0.2649385629341616, -0.26516496586172206, -0.26507788530567233, -0.2642913354419128, -0.26518587428226803, -0.2656501220506534, -0.2648466441192125, -0.2650988901916303, -0.26523533541905253, -0.2648851224030668, -0.2648995443742875, -0.26436172800454477, -0.26484741915387716, -0.2648915341723035, -0.26521512160175725, -0.2654337212007645, -0.26470999323833755, -0.26482337103252523, -0.26488873432254234, -0.26454436134176645, -0.26498032348197803, -0.2649087637488605, -0.26548541062756587, -0.2651566211243122, -0.2650519475253702, -0.2650876175067578, -0.26437218478548596, -0.26492509306871403, -0.2649747843456547, -0.2650564962137512, -0.2650772720052485, -0.26520236429066685, -0.2655189908735933, -0.26504988157958315, -0.26485350039618755, -0.2645407003617426, -0.2646027133304473, -0.26554408442904376, -0.26491637937506735, -0.26536995939343994, -0.2661216448099292, -0.26467359545286634, -0.26512780707133443, -0.26514910074353915, -0.2646693711915211, -0.2653117071815401, -0.2653206199930425, -0.26494577527046204, -0.2644323147179788, -0.26497322765358705, -0.26476723461123236, -0.26459090908368427, -0.2649286131412662, -0.26513773760600395, -0.2651528896469819, -0.2651400309905671, -0.2646572761542616, -0.265187822935874, -0.26519518001386294, -0.2647189049170031, -0.26480080553314145, -0.2651385074993323, -0.26537927462343586, -0.2651172634105236, -0.2652078289211842, -0.26517324428460753, -0.2647007440614422, -0.2650144742420542, -0.2653541587598143, -0.26568847833669673, -0.2654012273452435, -0.26477056759142736, -0.26513071122922394, -0.2648820289742877, -0.26461734705501133, -0.26480804828175325, -0.26490777678656996, -0.2650104731495617, -0.2648990684956835]|
2019-05-01 05:10:31,629 | INFO : Best of geration |165| has accuracy of |0.563591| and fitness_score of |-0.264291|
2019-05-01 05:10:32,110 | INFO : Testing generation |166|
2019-05-01 05:13:58,861 | INFO : Fitness scores of this generation: |[-0.2641229411759616, -0.2641210625155456, -0.2638872594856669, -0.26405097659401905, -0.2640662479167685, -0.2638836489988771, -0.26422929016836844, -0.26434810939438785, -0.2640326015758839, -0.2642533448710721, -0.26431417864009094, -0.26405854385184757, -0.26386846000599273, -0.2634696667616714, -0.26399228259123475, -0.2641154541337298, -0.26363893424239115, -0.2642066224384024, -0.2639317712544787, -0.26417475640014154, -0.2643022675355208, -0.264229323123103, -0.2642932554474298, -0.26440695601696673, -0.2644190603302208, -0.2642355965246259, -0.2638831536650354, -0.2643097035188035, -0.2638987996817243, -0.2641098111766622, -0.2638186041389164, -0.26345388098804245, -0.263851172962529, -0.2639795268680853, -0.2643775685089771, -0.2643293240435972, -0.2645905949143707, -0.26446398907834023, -0.26409489969733213, -0.2641391398143039, -0.26439804355269686, -0.26438609370763966, -0.2642821334840488, -0.2645225159146569, -0.2642418152969979, -0.26392776839998483, -0.263760653586335, -0.26402704921585074, -0.26461032421637515, -0.2642215573645894, -0.26415984954181726, -0.2639913406150262, -0.2639872664577797, -0.26391831179645575, -0.26374121426827035, -0.2636536316742002, -0.26437115965501273, -0.26423268424016294, -0.2641966101874106, -0.26441266295913934, -0.26428666551333924, -0.264390060682872, -0.26371566972797367, -0.264163604761041, -0.2638544301259487, -0.2643955266237664, -0.2639656152478091, -0.2643178713807841, -0.2645800866332212, -0.2640855755457558, -0.2640599457257464, -0.26416026634388085, -0.2640975152372605, -0.2644818358332197, -0.26384877971197046, -0.2639683801664978, -0.26418355856796594, -0.2637540468013985, -0.26405672158036275, -0.2637113679893562, -0.26432398785801386, -0.2642465374332013, -0.2640471999662451, -0.26395883377619284, -0.26400407392946257, -0.2641008250801464, -0.26371879712342206, -0.2641261502302797, -0.2638740396869314, -0.2643986410803985, -0.263926674512958, -0.2640808365713669, -0.2640528115131334, -0.26421254646656567, -0.26385580513471246, -0.26385200256600455, -0.264001935163391, -0.26450781074741075, -0.2640670708229507, -0.2640886271060678]|
2019-05-01 05:14:02,394 | INFO : Best of geration |166| has accuracy of |0.557357| and fitness_score of |-0.263454|
2019-05-01 05:14:02,591 | INFO : Testing generation |167|
2019-05-01 05:17:25,560 | INFO : Fitness scores of this generation: |[-0.26072277086636714, -0.2605879095142647, -0.260457479605271, -0.2607123965487605, -0.2606004984869111, -0.2606443404820898, -0.26044378692524567, -0.2611492243895848, -0.26066069461164937, -0.2605906869885662, -0.26075024178792394, -0.26041226090502834, -0.26059208356685215, -0.26040775271793526, -0.2606472730065786, -0.26052197648753084, -0.26079123160771783, -0.26052383860693346, -0.2604831142290946, -0.26052732046152793, -0.26049167686893093, -0.2605783777131188, -0.2609428439529673, -0.26044347011033564, -0.2606821246294966, -0.2604970986534271, -0.2606271411472511, -0.26071287660048376, -0.2605471620786815, -0.26080039717377196, -0.2609097604309359, -0.26062280498445034, -0.26083042914228094, -0.2602746632370737, -0.2605127802028531, -0.2605625714565958, -0.2605831327457582, -0.2606625562653907, -0.26093315176906123, -0.2607729800436045, -0.2608534555671917, -0.26073406160538715, -0.2604024317415972, -0.26062222864599, -0.2601758501222057, -0.26076136972574937, -0.2608823982037364, -0.2608419999239906, -0.26093494860575567, -0.2603478476465229, -0.2604854037955163, -0.26085308473557234, -0.2604910891292797, -0.26103889632729754, -0.26091437219011204, -0.2604852325823759, -0.2607011284018236, -0.2605747920310786, -0.26044388608105723, -0.2604072469496919, -0.2608787507389582, -0.26079503542953925, -0.26095465225197617, -0.26068595355196345, -0.2605474511942556, -0.26049371419714823, -0.26054505129615146, -0.2608657769948965, -0.26084183580091885, -0.26069116237903794, -0.26076635988729613, -0.26072274949101193, -0.260918207406517, -0.2606237170947415, -0.2605668397980832, -0.26079805069152384, -0.2603325263536986, -0.26106700816402034, -0.2606966178563814, -0.2606726211886252, -0.26052767236626917, -0.2609065837647405, -0.2603476793024569, -0.26034955412990624, -0.2604847893779797, -0.26072011904550657, -0.26112669452484094, -0.26058615557849407, -0.2608217772757334, -0.2606414517147406, -0.26072167605161667, -0.2609621322293195, -0.2607634371867584, -0.2607999959840409, -0.26074185570882213, -0.2607638569278342, -0.2606060835082204, -0.2604183875955641, -0.2603536834339461, -0.2606416799788994]|
2019-05-01 05:17:29,073 | INFO : Best of geration |167| has accuracy of |0.556110| and fitness_score of |-0.260176|
2019-05-01 05:17:29,271 | INFO : Testing generation |168|
2019-05-01 05:20:55,445 | INFO : Fitness scores of this generation: |[-0.2715734455910898, -0.2712559722702926, -0.2714130744932975, -0.2712361784089796, -0.27104331786807423, -0.2714831650035738, -0.2712407229172486, -0.27172293957450816, -0.2716847883404242, -0.2713923188637226, -0.27146020924591197, -0.2710583637794523, -0.2711512616583896, -0.271363763728403, -0.2716368314366487, -0.27199139153392865, -0.2719018635449857, -0.2713251312297035, -0.2714407183887124, -0.27146652789169035, -0.2707389977206316, -0.27132432218104907, -0.27184950951192816, -0.2718114083911272, -0.27165354272227876, -0.271386042859893, -0.27098490627086486, -0.2717014386655007, -0.27172833052961054, -0.2712753171320856, -0.27163183503717653, -0.27150071242836304, -0.27138902684163474, -0.2712508170081159, -0.27123826199808715, -0.27123789803342013, -0.2711746796979435, -0.2715143992210165, -0.271427594962337, -0.27118710914804856, -0.2715393071829885, -0.2714671342873197, -0.27106205136718414, -0.27120420783619803, -0.27079811396151643, -0.27140148699338945, -0.27155704482241483, -0.27170101974501915, -0.2715893638637626, -0.27116408587166196, -0.271293974395914, -0.2709149420261383, -0.27091726300997543, -0.2718405274738287, -0.2717705280169803, -0.2716186627150689, -0.27147941745146625, -0.2712188633703588, -0.27171333899294325, -0.27144471408596943, -0.2713664582651195, -0.2711910016025341, -0.27102560354197813, -0.27174799798701577, -0.2715618435220798, -0.27145931317004873, -0.2716216947900662, -0.27119401324204856, -0.2709558927138425, -0.2711375809673258, -0.27066689511084846, -0.2717353222734306, -0.27147909956002747, -0.27112354852861015, -0.2711707787344383, -0.27128524540083876, -0.2712510126325524, -0.2712186351349316, -0.2717871073782167, -0.27196940480832604, -0.2717196103756142, -0.27118173474056806, -0.27120503496824866, -0.2710807980518155, -0.27149031953946684, -0.27132167103341476, -0.27185508636489664, -0.27141493738749123, -0.271325132959179, -0.2710160189130955, -0.27151924886411277, -0.2712713701922028, -0.2711925617139873, -0.271509098115627, -0.27108033830187556, -0.2723567988325737, -0.2714788814800806, -0.27126265750954076, -0.2713351041050896, -0.27113341612736164]|
2019-05-01 05:20:58,997 | INFO : Best of geration |168| has accuracy of |0.562344| and fitness_score of |-0.270667|
2019-05-01 05:20:59,196 | INFO : Testing generation |169|
2019-05-01 05:24:25,197 | INFO : Fitness scores of this generation: |[-0.2660597214714075, -0.26690803554832426, -0.2667300746481643, -0.2667878751953443, -0.26682538909789844, -0.26624744078542434, -0.26594721781901826, -0.265997331442996, -0.2658297568432286, -0.2670908650271913, -0.26685476016539794, -0.2665111335551637, -0.2667726363381769, -0.2665538655514391, -0.2663625239434405, -0.266301333050952, -0.2660300844372847, -0.2670488161281643, -0.2666745474195888, -0.26658305288889467, -0.2665479047430886, -0.26625744027969167, -0.2662927423022751, -0.26603250773543985, -0.2663147798842854, -0.2670005266610374, -0.2664998503322275, -0.26643118728429843, -0.26697096908703827, -0.2662912211229658, -0.26674695635198525, -0.2658845658867787, -0.26630586696486186, -0.2662194425096879, -0.26647193141472647, -0.26673698427840176, -0.2669704031995219, -0.26636412789424263, -0.2664546457238686, -0.26602065503342537, -0.26602245760269655, -0.26618461863607423, -0.2664823055267334, -0.2667125521179957, -0.26673454172336136, -0.26638185381889345, -0.2666350754407736, -0.26667126055456636, -0.2661620355442039, -0.2663605733687042, -0.2669493318622948, -0.2665991138189267, -0.2668304080637092, -0.2666607443466146, -0.26632919245296055, -0.26587861985222905, -0.2657952491544251, -0.2661580228525349, -0.2663656826584767, -0.26628605815080497, -0.2665964348703368, -0.2664356564482053, -0.26648241233112463, -0.2667137539921663, -0.26611321694575824, -0.26640843089319705, -0.2668479111077439, -0.26696636951886693, -0.26677801587388045, -0.26609308299345846, -0.26623914872224513, -0.2660120153019571, -0.26615947617424857, -0.2666096705911506, -0.26692190311658076, -0.2667202926089621, -0.2673602959411776, -0.26644115375402644, -0.2662306032119653, -0.2664559036365941, -0.2662313237149491, -0.2661700562406809, -0.266560658863467, -0.2662765203123419, -0.26706607140537003, -0.26669806937376656, -0.2663917236475863, -0.2663001457468057, -0.2659231251885748, -0.2666124467538972, -0.26660168780985044, -0.2664940805898772, -0.2666127475281047, -0.26659772980671664, -0.2668145732237743, -0.2661607359082271, -0.26619238417882185, -0.267051024416573, -0.2667983612061566, -0.2667799478157973]|
2019-05-01 05:24:28,759 | INFO : Best of geration |169| has accuracy of |0.561097| and fitness_score of |-0.265795|
2019-05-01 05:24:28,958 | INFO : Testing generation |170|
2019-05-01 05:27:48,054 | INFO : Fitness scores of this generation: |[-0.2547008870322196, -0.25441112829362106, -0.25492205611262164, -0.2549180948058438, -0.2550613047972403, -0.2548450677365553, -0.25497108773211313, -0.2552689302692322, -0.2549320750671332, -0.2550619191444311, -0.254769010825561, -0.255292100719904, -0.2554535253044686, -0.25493295612882394, -0.254751922735751, -0.25488336050445265, -0.2552865261181456, -0.2544567434962004, -0.2549593474695591, -0.25501240612786324, -0.2548430640189374, -0.25485155782331537, -0.25499481874736935, -0.2546831338050587, -0.25524056770029613, -0.2547593301599794, -0.25474478237208775, -0.2547999712246689, -0.2554909544360768, -0.2549861290090071, -0.2546879111946932, -0.2550537791612044, -0.25507062382466805, -0.25455297197881943, -0.2551505337647402, -0.2552037779140016, -0.2549001659404059, -0.25537699281843634, -0.2547113706505364, -0.2551482111785581, -0.25484323961650085, -0.2546125104233541, -0.254908512463498, -0.25513988336334464, -0.2550774261640395, -0.2551408786672712, -0.25473082165330485, -0.2547392777569307, -0.2553431235579519, -0.25486738882103904, -0.2546833130057718, -0.25465115383674536, -0.2550573469307579, -0.25482410892762775, -0.2543325919271167, -0.25453661817833373, -0.25545693300867994, -0.2545458112380218, -0.25460174803932506, -0.2552392673704142, -0.2551391904186356, -0.2550935956746177, -0.2548342237014914, -0.25476659036399235, -0.2550118456447059, -0.25483604516487957, -0.2548310629860625, -0.2550931298097626, -0.2548697240284232, -0.2550146329761203, -0.25467974035059165, -0.2546469719846392, -0.2549038346795762, -0.25460009138440826, -0.2547153368429408, -0.25497516431932243, -0.25502297263897833, -0.2550595841609715, -0.2546566671646032, -0.2545713266469742, -0.2552487675120922, -0.2550046910109416, -0.25496925527606507, -0.2549940947178609, -0.2549815023002403, -0.25496760660100504, -0.25432360241484775, -0.2547689313730581, -0.2550719315847738, -0.2547524310852009, -0.2545084978346942, -0.2549388528155173, -0.2552648228211481, -0.25471993702682644, -0.2546146921202785, -0.254907015080009, -0.2546042647273814, -0.2546401952948075, -0.25454738160055845, -0.2551388281697784]|
2019-05-01 05:27:51,566 | INFO : Best of geration |170| has accuracy of |0.558603| and fitness_score of |-0.254324|
2019-05-01 05:27:51,977 | INFO : Testing generation |171|
2019-05-01 05:31:19,098 | INFO : Fitness scores of this generation: |[-0.2613046302077693, -0.26146891403046746, -0.26172384506089996, -0.26147668384388384, -0.2616589340759327, -0.2613373483642877, -0.2615510636942078, -0.261521969005359, -0.2612573539718358, -0.2618153306157746, -0.2616525122672438, -0.2617606746241439, -0.26151711437510916, -0.2615819048370228, -0.26126216665632296, -0.26143117598165494, -0.26137507745346633, -0.2615536566737912, -0.2616344723462869, -0.2614670382595138, -0.2620132241436562, -0.2615646913919873, -0.26148080283730063, -0.26098432921530046, -0.2614620395176367, -0.26133112193952956, -0.26170350541379167, -0.2612799288641374, -0.2619293954895071, -0.26139499271929123, -0.26121140582112684, -0.26113761522355206, -0.2613236252706708, -0.26125367859273413, -0.26160910237962237, -0.261547647647388, -0.2617441657471979, -0.2617342930355178, -0.2612760488337425, -0.2611679413708739, -0.2614546396649007, -0.26112581191790113, -0.2612906741636722, -0.261618412220355, -0.26155652324768924, -0.2618975654729687, -0.2613400568367471, -0.26155671271376424, -0.26129586550808787, -0.2615798512463346, -0.2614420304656313, -0.2616001156893299, -0.26174165169997665, -0.2613587125934619, -0.2616514787965582, -0.2613537817648993, -0.26115465990317255, -0.2616875544012871, -0.26150937015050174, -0.2619293120477387, -0.26185109167462595, -0.2617825569142606, -0.2612468259759703, -0.26137556735725037, -0.26155233419869417, -0.2616518393596834, -0.26149733680595566, -0.2616403385748269, -0.26175369619376326, -0.2616265845781664, -0.2611741595461408, -0.2615223383979252, -0.2615036244095082, -0.26189105540537666, -0.2617546112126448, -0.2621489674728763, -0.261419650815232, -0.26160744790097284, -0.2612996860285237, -0.2614862314285599, -0.2613835820988874, -0.2611966083881115, -0.26127344959306753, -0.26170679836920846, -0.2617079925215178, -0.26141429049235854, -0.26139921884957146, -0.26139540379723447, -0.2614122174437601, -0.26149682603581165, -0.2615474456117871, -0.2620559468025059, -0.26165881709175703, -0.2617639097266012, -0.261261160514296, -0.2612221485878192, -0.2614157633875172, -0.26154787266794133, -0.2615950540288087, -0.2618065788880334]|
2019-05-01 05:31:22,732 | INFO : Best of geration |171| has accuracy of |0.562344| and fitness_score of |-0.260984|
2019-05-01 05:31:22,929 | INFO : Testing generation |172|
2019-05-01 05:34:53,464 | INFO : Fitness scores of this generation: |[-0.2778026264747471, -0.27824931479507997, -0.2776005236202141, -0.27808576324559753, -0.27779447168985355, -0.2778298451572189, -0.27796198784208004, -0.27784072221259964, -0.2779325392267374, -0.2780657387868677, -0.27770266629598056, -0.27761165120200226, -0.2778862393584963, -0.27817451659318293, -0.27813545322450717, -0.27826982498900293, -0.27812619032954067, -0.27787558400232776, -0.2778126212737149, -0.2775664809982063, -0.2777708262083233, -0.27772133154940587, -0.2778230925441682, -0.27803038466968094, -0.2776622939308891, -0.2780097874761359, -0.27767735164061486, -0.2780006030585868, -0.27802599711570924, -0.2781206121758368, -0.27764282473594704, -0.27826043730823863, -0.27797351040113677, -0.27807562453412005, -0.27777480506214386, -0.2778087733713396, -0.2779350593107122, -0.277535461615606, -0.278225671883416, -0.2785982038792738, -0.2779576379320779, -0.2777331259860908, -0.27778609392589343, -0.27771383909928854, -0.27760326549481923, -0.2780469243796244, -0.27784487394833124, -0.2783572588067682, -0.277833827170045, -0.2779664877489788, -0.27749988265035913, -0.27769060391264866, -0.2780273023030347, -0.2778878292219933, -0.2781222601203424, -0.27814065547686656, -0.27786211137188155, -0.2779130452777873, -0.2775141299786662, -0.2778050120419682, -0.27768995423420967, -0.2778383622627804, -0.2780608689817508, -0.27839419718047104, -0.2782063894456312, -0.27783700301684566, -0.2774951281235506, -0.2774102483363727, -0.2776080511342772, -0.27798009308813054, -0.2780194953337931, -0.2783114634753899, -0.27768341056245804, -0.27782107703768644, -0.27795147575849405, -0.2777643849960215, -0.2776417294447326, -0.2776162968091438, -0.27784616610348917, -0.2784592265284785, -0.27795787593419646, -0.27774984605391984, -0.27765569848598226, -0.2775489225953147, -0.27833324263472903, -0.277636094428929, -0.27791079742695574, -0.2782345295521217, -0.2779720569538599, -0.27792482749491054, -0.27765838509322677, -0.27740585274775986, -0.27779560336549836, -0.2775753402007057, -0.2782406186216448, -0.27811232755683113, -0.2777984159571343, -0.2779911421925012, -0.27774274395937487, -0.27770568759529135]|
2019-05-01 05:34:56,982 | INFO : Best of geration |172| has accuracy of |0.563591| and fitness_score of |-0.277406|
2019-05-01 05:34:57,179 | INFO : Testing generation |173|
2019-05-01 05:38:15,164 | INFO : Fitness scores of this generation: |[-0.26529409942955806, -0.2652506953683393, -0.2649393851181556, -0.26545199657308644, -0.2654102929296165, -0.265403170503419, -0.2654609683053247, -0.2656265656290383, -0.26535428244492104, -0.2657504230532153, -0.26557880039872794, -0.26528900093045726, -0.2652492681042901, -0.26500713981431107, -0.2654635312228367, -0.26501028907710106, -0.26519165713211584, -0.2652088538120533, -0.2653160010124075, -0.2652040690389173, -0.2654185887040763, -0.26509798493878595, -0.2652008962220159, -0.2653954340260604, -0.2655386181535392, -0.2653414563063918, -0.26584605706149134, -0.26548098712131896, -0.26500795557581147, -0.2653984032006099, -0.26576593263395903, -0.26545199266795455, -0.2654010294223654, -0.2656709036744874, -0.2661777587594657, -0.2653405587015481, -0.2651044127447852, -0.2652814871689369, -0.265679903564782, -0.26546135030943774, -0.26562171993584466, -0.26536772637531675, -0.26534932510606174, -0.26545832251680307, -0.26500126053547035, -0.26493408819724773, -0.2653600738377407, -0.26574392285840265, -0.2652874699954329, -0.26526007726274686, -0.2655284894334859, -0.2654597613318213, -0.26528798362304423, -0.26516135770699073, -0.26570496781118985, -0.2658154895798913, -0.26491866124087365, -0.26528181137709783, -0.26537816014783133, -0.26533974832501905, -0.2652856509438876, -0.2650954856543705, -0.26559323561602627, -0.2656904066431111, -0.26508712308160187, -0.2651930283266922, -0.26529369313141393, -0.2653397505858849, -0.26506469262057336, -0.26527502109264506, -0.26533017623013466, -0.26529970370489975, -0.2654100707070581, -0.26543968804951373, -0.2657801117979247, -0.2656304678012585, -0.26537670673995184, -0.2648940559091239, -0.2655418364343972, -0.26535945177078246, -0.26490525747167654, -0.26580637730401135, -0.26515288616048877, -0.2656434033245876, -0.2654240631235057, -0.2649583350378891, -0.26596952368473187, -0.2655949330329895, -0.2653333030897996, -0.26543179828545144, -0.2655746406933357, -0.2654190113215611, -0.26543985523026564, -0.26509710340664305, -0.2655642311737455, -0.2653913458462419, -0.265209866433308, -0.2653987336569819, -0.26552212020446514, -0.2655043455650066]|
2019-05-01 05:38:18,664 | INFO : Best of geration |173| has accuracy of |0.559850| and fitness_score of |-0.264894|
2019-05-01 05:38:18,858 | INFO : Testing generation |174|
2019-05-01 05:42:00,318 | INFO : Fitness scores of this generation: |[-0.2605313846595342, -0.26062521675573447, -0.2606935446172851, -0.2604727286033547, -0.2604105836484329, -0.26037352869622243, -0.2604452063547931, -0.26055405064073206, -0.26064144927138294, -0.26043570577110214, -0.2605570127024179, -0.26033027170780865, -0.26056788662681923, -0.26041186191523036, -0.26039910470491967, -0.26047316646936286, -0.260496590687902, -0.26054689703715367, -0.26037253979239333, -0.2604288982072149, -0.26073261124078734, -0.2603356293182382, -0.26054563572760153, -0.26066147308271725, -0.2606928408698069, -0.2606526851174542, -0.26044953690395883, -0.260422610861682, -0.2605230848798515, -0.26046657219332986, -0.2603254115317055, -0.26070893585304117, -0.2606410776141909, -0.2607526711389415, -0.26034975781317515, -0.2604768018295915, -0.26030082067066956, -0.26045056648628706, -0.2605400690141391, -0.26051192677991675, -0.26059850088449177, -0.2607640227214817, -0.26043938199146266, -0.26073888884353263, -0.26047679565407367, -0.2605424315638219, -0.2605325436153277, -0.260652039942946, -0.260413279814118, -0.26078496198430984, -0.26044803478553896, -0.2604180550586881, -0.2607117042214274, -0.2604162280281133, -0.2601829358698507, -0.2605172069202918, -0.26089343998212455, -0.2606924855159818, -0.2605639933697018, -0.2604336130479555, -0.2602573167196662, -0.2604688421465722, -0.2603678302843939, -0.2604620858830745, -0.26053425626078214, -0.26021390152175156, -0.2604692974493365, -0.26039664977675586, -0.26039782853779825, -0.2600476092053645, -0.26054860227925203, -0.2605305082445782, -0.2606471069611206, -0.26071592255053666, -0.26061055035866626, -0.26069461513239833, -0.2606120919350122, -0.2602959700121291, -0.2605419439013443, -0.26070489913501255, -0.2606917266974154, -0.2604156395593891, -0.26039383221492135, -0.26052401399740294, -0.26055432634490805, -0.26050059531503394, -0.26042583310883083, -0.260659928963511, -0.26048235116442026, -0.2602959591868097, -0.2603956084391479, -0.26049287970300883, -0.2602955743793974, -0.2603631827567973, -0.2603801241565018, -0.26034751155212527, -0.26043598312450467, -0.26052248883340373, -0.26062404124228794, -0.2608134639678729]|
2019-05-01 05:42:03,856 | INFO : Best of geration |174| has accuracy of |0.563591| and fitness_score of |-0.260048|
2019-05-01 05:42:04,057 | INFO : Testing generation |175|
2019-05-01 05:45:34,447 | INFO : Fitness scores of this generation: |[-0.2651271525732468, -0.2652859528490723, -0.26482417135129327, -0.2651181424896096, -0.2649604780965497, -0.2648013535415241, -0.26503365422874214, -0.2646406046731677, -0.26514116502224616, -0.2650152222731922, -0.2648220130146157, -0.264791854951406, -0.26514355393649885, -0.26467902355405787, -0.2648005970310436, -0.265164672341496, -0.26486074087227623, -0.2653015039568385, -0.26494662838905314, -0.26469518069660475, -0.26478288979899933, -0.2651117804312463, -0.26449669870443565, -0.26514505048375986, -0.26529864995066604, -0.2651621218136304, -0.2648304920356173, -0.2645683746996405, -0.2647508643079533, -0.26501270742569083, -0.2650476550951795, -0.265084985106793, -0.26519919519774954, -0.26522328583130494, -0.265047095195435, -0.26439758779527145, -0.2647649412852708, -0.2652266499040082, -0.264513385760038, -0.26487171976370233, -0.2652483043603848, -0.2651251777030495, -0.26469325047566555, -0.26515584028010114, -0.2647024329095602, -0.26500671022887484, -0.2648559578164349, -0.2645446632648486, -0.265572402002683, -0.2651876532181208, -0.26451010772147726, -0.2651870726584694, -0.2657423779867275, -0.26526878180939384, -0.264940633784215, -0.2651317042923564, -0.26531085866507487, -0.26555875494664066, -0.2651800272940201, -0.264609490712397, -0.26462163433454267, -0.2647373676191598, -0.26483781408014256, -0.2646766541392869, -0.26516062561341247, -0.26515321488854143, -0.2651062657544186, -0.26468406099245884, -0.2648332675992141, -0.2652470556560909, -0.26507776992983867, -0.2647794418069473, -0.26530152323941825, -0.26533518522283744, -0.2647017091295778, -0.26495298272570844, -0.2649824198286606, -0.2650883475961123, -0.26547172715483447, -0.26497116975562196, -0.2649570688431787, -0.26526341503797835, -0.2650012737560307, -0.26444849801375875, -0.26505665293470393, -0.26498477735720694, -0.26498652813519624, -0.26487479947800197, -0.265176473095948, -0.2654420238915489, -0.26508478442914624, -0.2646196836597534, -0.2650976794428874, -0.265632872205374, -0.2648117301505726, -0.2652073496575786, -0.2652943782627669, -0.2651556799353644, -0.2644568460693873, -0.2650211085897519]|
2019-05-01 05:45:38,005 | INFO : Best of geration |175| has accuracy of |0.562344| and fitness_score of |-0.264398|
2019-05-01 05:45:38,457 | INFO : Testing generation |176|
2019-05-01 05:48:59,020 | INFO : Fitness scores of this generation: |[-0.26317818582558233, -0.26322560101676046, -0.26270677721043, -0.26306788187375746, -0.2629069992178064, -0.26314986384601047, -0.263075199130056, -0.26310195353963106, -0.26316242452433924, -0.26311538774046683, -0.26312069941481814, -0.2627478477944859, -0.263152686061619, -0.26315547972560216, -0.2629828732326734, -0.2632764709724797, -0.2630163042558183, -0.262912564211898, -0.2632284762619211, -0.2628720273002446, -0.2625190785034097, -0.2631030397699605, -0.26299340735307986, -0.2634870125521287, -0.2629601265207755, -0.2632451190186633, -0.2631578028773804, -0.26320343727259327, -0.262937065187118, -0.26301134333050225, -0.2631469458806143, -0.26350765995127406, -0.2626717343068809, -0.26314994140709047, -0.2631853886252399, -0.26281934406617274, -0.2628384664011516, -0.26294847174013836, -0.2634696935077937, -0.26353790596734994, -0.26317991302024835, -0.2627859168129859, -0.26304160419413797, -0.26265382754216665, -0.26292646052740176, -0.2638808269080498, -0.26323312549568195, -0.26286456348012677, -0.2631875291216574, -0.26293177388126043, -0.2630372786407562, -0.2627850830983773, -0.2627599420700428, -0.26300943237271524, -0.26247071528391874, -0.2632347459701611, -0.2632884094290596, -0.2629038402073675, -0.26296216610381357, -0.262566492640429, -0.262762505230572, -0.26329165282581063, -0.2632646685738644, -0.2633554815567083, -0.26317755456308095, -0.2632712662505875, -0.26311226039052865, -0.26261103355126986, -0.26275289664379986, -0.263197614241847, -0.2632575598802212, -0.2633215729281199, -0.2627490095847802, -0.26306047292350293, -0.2631493553662186, -0.262899074980395, -0.26300373618051015, -0.26303619950366536, -0.2628176079915582, -0.26341591323379704, -0.262826531946802, -0.2631364863910835, -0.26305894124850954, -0.26295292806282317, -0.2631617943874652, -0.2629012477090605, -0.26336719599559155, -0.2634268447542362, -0.26296933009613044, -0.2631480733303429, -0.26329003833680986, -0.26286683297700447, -0.26309878804343495, -0.26298197957394503, -0.2633291066800662, -0.2632416152982689, -0.26363115586179625, -0.2633791047034504, -0.2632075340734969, -0.26314523092491166]|
2019-05-01 05:49:02,662 | INFO : Best of geration |176| has accuracy of |0.563591| and fitness_score of |-0.262471|
2019-05-01 05:49:02,854 | INFO : Testing generation |177|
2019-05-01 05:52:24,665 | INFO : Fitness scores of this generation: |[-0.2604201277043368, -0.2598328431554743, -0.2607087701075786, -0.2607289891468512, -0.2606006884413796, -0.26010935939647056, -0.2601166308409459, -0.2601677884926667, -0.26051900976413006, -0.2601816303021199, -0.2610340090700098, -0.26145369737534907, -0.26049363982033086, -0.2609126783544953, -0.2599213813768851, -0.2603430827888283, -0.2604251691618481, -0.26103728792151887, -0.2602147999325314, -0.26041001807998965, -0.2605171898893408, -0.2603121886704419, -0.2602383887606698, -0.2599984397437121, -0.2604510477910171, -0.2607212051024308, -0.2604661533961425, -0.26110851764678955, -0.260186453993256, -0.2603887586496972, -0.2600529442123465, -0.2600483581826494, -0.26025466036152195, -0.260572731913747, -0.26043551551329125, -0.2605639382633003, -0.2604210697960209, -0.2604661479833964, -0.26010887458517745, -0.2602105684215958, -0.2603954177128302, -0.2607666527902758, -0.26064633034371043, -0.2604992186056601, -0.2598658930933153, -0.2604693104608639, -0.2605816842575331, -0.26030200354150823, -0.26043726519958393, -0.260362803420505, -0.26068959397238656, -0.25985582151928466, -0.2604541621337066, -0.2605294672218529, -0.2601675020681845, -0.25924331338018985, -0.26028861968903927, -0.2606954213896313, -0.2609669244128305, -0.26027399968456577, -0.2603213381606179, -0.2600618906117774, -0.2606106773582665, -0.26010360344036204, -0.2613308884324254, -0.2606604081070101, -0.26056178489246884, -0.26081159573954504, -0.26120054196667025, -0.2603559512705416, -0.26046189915489504, -0.2606427761348518, -0.2602035530676713, -0.2605650177356359, -0.2606790329797848, -0.26070673913569065, -0.2606353779096861, -0.2599196770867786, -0.2603032514855668, -0.25958576561631386, -0.26009860306172755, -0.2596936540829169, -0.26121059553043263, -0.26095092406144016, -0.26079450827998085, -0.26025016359380776, -0.2598625595021892, -0.25979485423178283, -0.26108588183248366, -0.26075157399113114, -0.2598563843160062, -0.2610430995838062, -0.26070814232568484, -0.2603950183939289, -0.26000098450763803, -0.2597172364995286, -0.2601021475244213, -0.2600463023379042, -0.2608286089510531, -0.2609432786058735]|
2019-05-01 05:52:28,172 | INFO : Best of geration |177| has accuracy of |0.559850| and fitness_score of |-0.259243|
2019-05-01 05:52:28,365 | INFO : Testing generation |178|
2019-05-01 05:55:48,948 | INFO : Fitness scores of this generation: |[-0.2619730757824896, -0.2620938717989995, -0.26219271014857765, -0.2619640255803304, -0.2620804916088681, -0.26223868856958993, -0.26257442076079895, -0.26263201611720965, -0.26202892214388773, -0.2620793900577964, -0.2622791450084177, -0.262022419398852, -0.26231656613334126, -0.2620303278694353, -0.2621240033613925, -0.2618997528260907, -0.262112205885104, -0.26235129736840856, -0.26214742153948767, -0.26292949724144754, -0.2623381134097939, -0.2627731786987376, -0.261999340016584, -0.26209021404089516, -0.2622544907082785, -0.26209387462791756, -0.2623723844029256, -0.2625313376880376, -0.26249166160295606, -0.26215734311418554, -0.2619112695651602, -0.26232236926392477, -0.26221926679740154, -0.2620488029573664, -0.26203778185460214, -0.2624589642612613, -0.2622430150872035, -0.26236653099325846, -0.2622049150219553, -0.26189016810645066, -0.26207147260704317, -0.2622020543608444, -0.2623265589408527, -0.2624486049608416, -0.26229556069337245, -0.2621690114799714, -0.2619909665343777, -0.2620876578667569, -0.26213424726827256, -0.26178398081995796, -0.2627026104999431, -0.26252112535977734, -0.26219601391364405, -0.26214451818145135, -0.26217803306400644, -0.2624977189907701, -0.262202911917737, -0.26198341427720406, -0.26235242850798907, -0.2628027769442952, -0.26231052728151905, -0.26211600755618897, -0.261636012536011, -0.26211985769716584, -0.26210851628522475, -0.2621617831996998, -0.26230449823222673, -0.26201238016090117, -0.2622420267750885, -0.26237379307252157, -0.2620407717248988, -0.262347644166178, -0.2621320248735661, -0.2623962691551276, -0.2623413284751227, -0.2621800431582838, -0.26240111982848735, -0.26230204503399385, -0.26244861652322166, -0.26229908499891397, -0.2621916937939905, -0.262067688550907, -0.26291365900115987, -0.26254047894188376, -0.26238477062310606, -0.26201633058044294, -0.26220298713077245, -0.2624879695524443, -0.26221061617991254, -0.26224633240476086, -0.26235535379014, -0.2626136394657573, -0.26236893022823543, -0.2624569204666757, -0.2622715485411764, -0.2622025565266872, -0.26231682019320546, -0.2620374630421203, -0.26228051334948466, -0.2625236667972264]|
2019-05-01 05:55:52,466 | INFO : Best of geration |178| has accuracy of |0.562344| and fitness_score of |-0.261636|
2019-05-01 05:55:52,659 | INFO : Testing generation |179|
2019-05-01 05:59:22,596 | INFO : Fitness scores of this generation: |[-0.25226359612851545, -0.2524324300925618, -0.2522834055258664, -0.2526655569406682, -0.2524561695249314, -0.2527570918276853, -0.25248256208724756, -0.2526617062721484, -0.2523443304709585, -0.2523985210271668, -0.2523826984190073, -0.25216134119084865, -0.25225153410119894, -0.2523767923687629, -0.2527401234787077, -0.25260276306449814, -0.2522704721050208, -0.2523126019740598, -0.25249431698684777, -0.2524473090030567, -0.2522007931265807, -0.25243411544473743, -0.2528592048586478, -0.25200776682420767, -0.2524899632738455, -0.2530014606393464, -0.252512220354441, -0.2523898736312507, -0.25231503459660176, -0.25269176366923113, -0.2523161604053884, -0.2528156043162608, -0.25217006759163657, -0.2525770683785492, -0.25282461616841495, -0.2523456108008513, -0.25258599097264145, -0.2523939518482663, -0.252566214483351, -0.25234555719496093, -0.252569558129491, -0.25254099693237075, -0.25292708661452434, -0.2521553845553633, -0.25223975048415753, -0.25265201662456366, -0.25288449286308395, -0.25284095067028317, -0.25263194192059973, -0.25267030252974687, -0.252530056331772, -0.2523257386931175, -0.25268604898350655, -0.25258471451428516, -0.2525404622348864, -0.25247851386400394, -0.25276494221888124, -0.2524230580598775, -0.25240904348054843, -0.25220223199802155, -0.25218939362127046, -0.2526015255129567, -0.2525057027716027, -0.25219097388888323, -0.25279753170721364, -0.2527908494564399, -0.25264639662130656, -0.25234668662001797, -0.25204164925683487, -0.2522430471825991, -0.253087679949256, -0.2526123719203481, -0.2523676800268365, -0.25264137211142057, -0.2522465346286673, -0.25263792525266937, -0.2522416424955495, -0.2523441680791461, -0.2528012276206333, -0.252440240640967, -0.2530266292643156, -0.2525068540431873, -0.2524311408921704, -0.2524057510578147, -0.2523792661742429, -0.252330491408376, -0.25238925144129526, -0.2519867823517042, -0.25208446215426045, -0.2522967817271122, -0.252536002331168, -0.2523669744073962, -0.2524953888706613, -0.25230122565542434, -0.25268456635519404, -0.2524232006472915, -0.2527884905845416, -0.25272922059368186, -0.2526016416590525, -0.25237364268234846]|
2019-05-01 05:59:26,191 | INFO : Best of geration |179| has accuracy of |0.559850| and fitness_score of |-0.251987|
2019-05-01 05:59:26,397 | INFO : Testing generation |180|
2019-05-01 06:02:56,704 | INFO : Fitness scores of this generation: |[-0.26340603301142096, -0.2634572187848574, -0.26322852124665025, -0.2632122801831658, -0.2633271304876013, -0.26307955551932066, -0.26315596077514725, -0.2630715346133886, -0.2633534247940176, -0.26329571076175123, -0.2632461661408324, -0.2630718189376681, -0.2632798465194216, -0.26306107830090125, -0.2632438995402836, -0.26335164827610363, -0.26343160575573443, -0.2631032140918936, -0.2636022709378602, -0.2632822099300622, -0.2634482994116711, -0.2626651039021452, -0.26309487307991275, -0.2632140914704558, -0.26339372083470913, -0.2630458083755145, -0.2634661163915916, -0.2633224426856382, -0.2631719199398774, -0.2629887175872152, -0.26300074347813585, -0.2637540963804646, -0.2630746138070546, -0.2630442603420722, -0.26326625989796165, -0.2635456046375584, -0.2631324580689314, -0.26315162936719866, -0.2630444678193867, -0.263523086040727, -0.26344202116121235, -0.2632039018497346, -0.263434969136585, -0.2633109030492409, -0.26324627168281484, -0.26302407685105716, -0.26289403702212155, -0.2635612134720869, -0.2635065874286518, -0.2633177514879398, -0.2635780021769732, -0.2631731438704273, -0.26319103028364244, -0.2630423826164838, -0.26297213389193513, -0.26342188276387407, -0.26328996665411947, -0.26324417650362153, -0.26321069169618183, -0.262992139138487, -0.2633811807851798, -0.26294691207893167, -0.2629286012726309, -0.2635275403384359, -0.2634279954986039, -0.26315285728404647, -0.26310776424003, -0.2630744499681018, -0.2631260077538257, -0.2626656942749732, -0.26303278820909515, -0.26333461599576075, -0.2633786328131648, -0.263162862311756, -0.2634428072422848, -0.2635019826956531, -0.26300801517097816, -0.2629964103723197, -0.26336658649510386, -0.2634285852070489, -0.2632620613138809, -0.26322062172243466, -0.26311162384114867, -0.2633849305627368, -0.26339542713894204, -0.2630835173826899, -0.26263950568981737, -0.2634860036521623, -0.26345419562082295, -0.2632542067673387, -0.26342337702447777, -0.26350570359891473, -0.2633397472575465, -0.26296759225422833, -0.26302259363186586, -0.2628939794528088, -0.26336741718474804, -0.2632279685960116, -0.2632111492978708, -0.2631824309532303]|
2019-05-01 06:03:00,248 | INFO : Best of geration |180| has accuracy of |0.559850| and fitness_score of |-0.262640|
2019-05-01 06:03:00,443 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 06:03:00,713 | INFO : Testing generation |181|
2019-05-01 06:06:24,215 | INFO : Fitness scores of this generation: |[-0.25921165221753284, -0.2586141192443008, -0.2583365253818518, -0.25903366450607973, -0.2588517078140349, -0.2591243157936474, -0.2589928126380843, -0.2586838215556881, -0.25847078680274, -0.2585993497290721, -0.25908137402555376, -0.25883721091008266, -0.25913928158638383, -0.25929402475942004, -0.25852693367631124, -0.2589979612585749, -0.25869864749294774, -0.2589326102984304, -0.25884320657916554, -0.2592023228828643, -0.2591708089670764, -0.2587520009129097, -0.25902923793090266, -0.2585477341305126, -0.2588041701067447, -0.2587332871435506, -0.25891927966739886, -0.2590865838501566, -0.259103520219454, -0.2589350349115777, -0.25950467774209945, -0.25877359370738756, -0.25873532427754353, -0.2586265368242253, -0.2589033321117389, -0.25906057383249, -0.259092851134929, -0.25942723312683463, -0.25846792517591016, -0.25826828593035256, -0.2588932298425777, -0.25872602386385823, -0.25883124452104705, -0.25911952739607985, -0.2592649135049045, -0.25903626231870414, -0.2586636681676825, -0.2586057431759213, -0.25901416087725077, -0.25880689145374924, -0.2589001077811794, -0.25905795715267793, -0.2589726343440853, -0.25877888102455704, -0.2588327147417497, -0.2586335098332147, -0.25868302648978847, -0.2588577070084746, -0.25899651837570903, -0.25900412676498896, -0.25933438919786556, -0.25908592624053245, -0.25813620278830074, -0.258506987500948, -0.25873803553811037, -0.25886612577284285, -0.2590275722487472, -0.2591999161413178, -0.2592678028939196, -0.25893258819966564, -0.25873070158806977, -0.25894605357767064, -0.2586713605290044, -0.2585491236760347, -0.2590004072850009, -0.25925192550265386, -0.25939317982794813, -0.25916707553255075, -0.258136727789015, -0.25856028102248546, -0.25878618577615586, -0.25855163851220403, -0.25910574238571904, -0.25919920943783514, -0.25907390203167807, -0.2595011438329797, -0.25906486079700675, -0.2584803568899044, -0.25863240628226825, -0.2587555830345488, -0.258729559633583, -0.25916400633401443, -0.2590627690363035, -0.2592325154100295, -0.2584528040389764, -0.2584352039886069, -0.25863371007674885, -0.25871363017801907, -0.258720307089674, -0.2590482681500037]|
2019-05-01 06:06:27,952 | INFO : Best of geration |181| has accuracy of |0.558603| and fitness_score of |-0.258136|
2019-05-01 06:06:28,145 | INFO : Testing generation |182|
2019-05-01 06:09:51,783 | INFO : Fitness scores of this generation: |[-0.24579008842067135, -0.2458270735877035, -0.2457685254705258, -0.24577983108733062, -0.24583452528515276, -0.24610202450900387, -0.24614644149057494, -0.2459412852570385, -0.24583083017925775, -0.24624554056093773, -0.245747521901742, -0.24621936433472813, -0.24587152244365193, -0.24595788800152096, -0.24589079139383116, -0.24605387837223752, -0.24588093479004133, -0.24572671049033867, -0.24582628630968711, -0.24602301498136578, -0.24612309370755678, -0.24573954666507314, -0.24572142946884712, -0.24591048978842223, -0.2457236464206989, -0.2457881901391159, -0.24573156707855842, -0.24588025077677808, -0.24612049936248942, -0.24565901661648082, -0.2460356809977714, -0.24591921444769207, -0.2458639712140875, -0.24595055964277576, -0.24586226301785757, -0.24605868919890309, -0.24602360685431277, -0.2460411511052995, -0.24584381470431002, -0.24585765179915306, -0.2458565332715563, -0.24564203702251353, -0.2459066860392484, -0.24605926714058693, -0.24607369800408682, -0.24574796773155294, -0.2459920783925809, -0.24598657957019185, -0.24583968035215456, -0.24580777217532992, -0.2457103643132855, -0.24591087519064458, -0.2457451031376154, -0.2456505606630615, -0.2460085783572592, -0.24581133516935202, -0.24595283780107366, -0.24585345059750818, -0.24555954911711184, -0.24587527987284538, -0.24583018211100463, -0.2458514325923233, -0.24600050289779019, -0.24567908307269246, -0.245689159696389, -0.2460381620558056, -0.24576780867176884, -0.24610266859479674, -0.24594458561442073, -0.24573257446465407, -0.24594754818275835, -0.2457608194393519, -0.24556018576701952, -0.2459295783228658, -0.245825766209197, -0.24605926051295016, -0.24643249170490977, -0.2458914108353959, -0.24616322867733959, -0.24599960513956684, -0.24580749926658776, -0.24599830979661358, -0.24586000318475493, -0.2458940103679484, -0.24562261784100203, -0.24573783738138172, -0.2461724201955739, -0.24583990116561424, -0.2455826235064388, -0.24580644705944513, -0.2457259834929566, -0.2460424634214689, -0.24614185053686183, -0.24566912777442668, -0.2460286796710195, -0.24597803564995704, -0.24586550165445376, -0.2458104136780169, -0.24573698864709695, -0.24593488294521026]|
2019-05-01 06:09:55,287 | INFO : Best of geration |182| has accuracy of |0.557357| and fitness_score of |-0.245560|
2019-05-01 06:09:55,493 | INFO : Testing generation |183|
2019-05-01 06:13:19,770 | INFO : Fitness scores of this generation: |[-0.2628757561005435, -0.26315281324594925, -0.26329264143138253, -0.26293086724952586, -0.2633802605774796, -0.2624965623744483, -0.2631553705456187, -0.2630139699549351, -0.2631679534044081, -0.2637045944199979, -0.2635497811639193, -0.2629821029392261, -0.26310159399092775, -0.26354828019743987, -0.26232816892341504, -0.2624997187007978, -0.2627018150195335, -0.2627444376355236, -0.2633712709239386, -0.263295235390802, -0.2630141367322033, -0.26331173777580263, -0.26256374612595273, -0.2628645339637127, -0.2628436249147341, -0.26362137580380857, -0.26304413719663344, -0.2628622204933352, -0.2629201620817184, -0.2634426826412238, -0.2627859399446006, -0.26256680413357264, -0.26316361207406497, -0.26373982221177483, -0.263031516086708, -0.2624307511790285, -0.2633307888091189, -0.2630946474746593, -0.2626249054103222, -0.26186789245281406, -0.26311830374801043, -0.2633248584941753, -0.26349722149881344, -0.2628969910943392, -0.26392805087334903, -0.2634840022302368, -0.26207313048608094, -0.262458499860995, -0.26345777552104693, -0.26262325968557193, -0.26297769332395016, -0.2631046793993237, -0.26304042379832965, -0.2633657841427812, -0.26312588378063684, -0.2628912379440752, -0.2633297347617381, -0.2634394640193402, -0.26319381565723604, -0.2635606639304207, -0.26368743016303164, -0.26389187562812877, -0.2621314006233678, -0.263459352237507, -0.2634693795326844, -0.2625510438553338, -0.2630661220805159, -0.2636826602579321, -0.2634494572299198, -0.2639031307500543, -0.26253810328187294, -0.26318722844702525, -0.2629334987367241, -0.2631194522369255, -0.26271084821918633, -0.2630647428406095, -0.26319407843849035, -0.26376521503462375, -0.2626727959774073, -0.26295354933414644, -0.2632808774709702, -0.2630136562203898, -0.2627941846558191, -0.2626016743264152, -0.2628062948729228, -0.26292965261681567, -0.26285035957410496, -0.26256308798651096, -0.2628778208227991, -0.26339007627616806, -0.26374328741170827, -0.2627518419791194, -0.2627736582339389, -0.2634155039359065, -0.2636463311690729, -0.26308162177650674, -0.2629263568271711, -0.26260462762082665, -0.26342740599970216, -0.2625366876136909]|
2019-05-01 06:13:23,339 | INFO : Best of geration |183| has accuracy of |0.563591| and fitness_score of |-0.261868|
2019-05-01 06:13:23,526 | INFO : Testing generation |184|
2019-05-01 06:16:57,003 | INFO : Fitness scores of this generation: |[-0.26552032342967713, -0.2654667817584173, -0.265491098693506, -0.26597371621160054, -0.26563286808688497, -0.26570354624996034, -0.26579579844914397, -0.2658425409082822, -0.2657656727011592, -0.26587900117509006, -0.2655605640350364, -0.2656690801085606, -0.2656626329021504, -0.2655985385101298, -0.2655515575248582, -0.2656255194286662, -0.26583036033343765, -0.2658198039264973, -0.26531702833460385, -0.26568761517799744, -0.2658553949589022, -0.26564781157558987, -0.2657336469964562, -0.26573565687368234, -0.26574864333343945, -0.26540363478300766, -0.26556093016947346, -0.26585001283352144, -0.26578805895810675, -0.26561083355209647, -0.2655405480307075, -0.2657763253887651, -0.26587406424634413, -0.26569196037224585, -0.2655314290871614, -0.26598274417397544, -0.26562343393098026, -0.26538970037864573, -0.26598255212108296, -0.2657775521141494, -0.2655934553368511, -0.26559316270112054, -0.26549371372996355, -0.26570899733721115, -0.2656265073736978, -0.2654478215170032, -0.2657418766516087, -0.2655746299881009, -0.26547823824829314, -0.26557659713693177, -0.2656649110393887, -0.26603298417226534, -0.2657118989179141, -0.26546488614298225, -0.2657538504190645, -0.26583758721084105, -0.265620325063783, -0.26584142249009113, -0.26597705702456276, -0.2660326804779959, -0.26568476911487543, -0.26567052414254566, -0.26562525574460116, -0.2657273208766472, -0.2661631847597326, -0.26583166468370306, -0.2658025103858293, -0.26575747739494315, -0.2658095318051617, -0.2654598231116931, -0.2656004105125043, -0.2658629645532354, -0.26558496354250455, -0.265677664380061, -0.26555818946068993, -0.2658425148116948, -0.2659193557000223, -0.2656733762384869, -0.26558869651804756, -0.265685978445794, -0.2657741497312318, -0.2659200376237002, -0.2657270770999077, -0.265838118548703, -0.2657467092037827, -0.2655847124325165, -0.2655111698047539, -0.2659104862042612, -0.26574632886239863, -0.26558241546349576, -0.26546800413274074, -0.2656309914107867, -0.2657649838940052, -0.2654351077758734, -0.2655700164458414, -0.26576107042276953, -0.2659828640383685, -0.2657702537522385, -0.26542013513017204, -0.26583625569822283]|
2019-05-01 06:17:00,523 | INFO : Best of geration |184| has accuracy of |0.562344| and fitness_score of |-0.265317|
2019-05-01 06:17:00,718 | INFO : Testing generation |185|
2019-05-01 06:20:39,017 | INFO : Fitness scores of this generation: |[-0.26536646207524345, -0.2657705667314119, -0.2663070807059825, -0.26554606242595424, -0.2656622121199941, -0.265542314722271, -0.26581697814450106, -0.26612081778555763, -0.26590652309329355, -0.26573036385877846, -0.2653924011832367, -0.2656869116700031, -0.2658182831262267, -0.2654518029979757, -0.2657739706974429, -0.2658350975702168, -0.2656093559259219, -0.2659462905281891, -0.2660951155756168, -0.2656774213645449, -0.2657388126692322, -0.26572718779914495, -0.2656537160581472, -0.26557381742084746, -0.26553863504777214, -0.2662566830884404, -0.26610293480584585, -0.26572371074920587, -0.2657177937635715, -0.2653627149386756, -0.26575270743903967, -0.26613904278513745, -0.2658896336421346, -0.266071315651366, -0.265697965989176, -0.2662204730119484, -0.26613885608090265, -0.26565222530915994, -0.2659230682807802, -0.2657642590937138, -0.2657795879009739, -0.266217495697477, -0.26589154920161134, -0.26551372908421533, -0.26572155018768057, -0.2656458148756411, -0.2654567957006629, -0.2656453542957895, -0.2660695296818554, -0.2663246949058965, -0.26614665436074014, -0.2654390856582554, -0.26602882440255876, -0.26566766174504985, -0.265681786139039, -0.26601238339991445, -0.2661813438777035, -0.26580570375169765, -0.26568040855011094, -0.26558688127626323, -0.2658689652055387, -0.26540994903065523, -0.2656792557525556, -0.26589973915267634, -0.2657643893823003, -0.26649444126583105, -0.2657185575117805, -0.265675741322318, -0.26559050541455353, -0.2652229190743962, -0.2655076436653232, -0.2659232391797569, -0.2658740242935976, -0.265658741727496, -0.2660425715990903, -0.2661463971040687, -0.2656402042391415, -0.2654740768066113, -0.26546229944002936, -0.2658444589021386, -0.2657751403440774, -0.26649565387350777, -0.2657070357169621, -0.2657077739121042, -0.26511441401303043, -0.2655171899672575, -0.26575973042288475, -0.26594505355920967, -0.2657866383940228, -0.2659465089826642, -0.2659066708802651, -0.26580346145159095, -0.2657836223759838, -0.26542909703922746, -0.26538161727945514, -0.2654421022434098, -0.26567586142748545, -0.2662324015517558, -0.2654015935476617, -0.26598794853660984]|
2019-05-01 06:20:42,575 | INFO : Best of geration |185| has accuracy of |0.563591| and fitness_score of |-0.265114|
2019-05-01 06:20:43,005 | INFO : Testing generation |186|
2019-05-01 06:24:05,387 | INFO : Fitness scores of this generation: |[-0.2540536870765587, -0.2539934732035391, -0.2538879731681639, -0.25430388194111925, -0.253582657498778, -0.25374705812229686, -0.25407374627005286, -0.2538036620883337, -0.25338553785967977, -0.2536221189645125, -0.2542746149142914, -0.2542131508617292, -0.25384409519652074, -0.2534720325172567, -0.2536547268874432, -0.2537564870721337, -0.2534190383342844, -0.25390908944569607, -0.25375484848654445, -0.2536158733797916, -0.25408023250388007, -0.2531235200389755, -0.25411226296809014, -0.2535233701310138, -0.2533700116242044, -0.2544403997813342, -0.2539584519585552, -0.25425570123594665, -0.2539974986081807, -0.2534691353411784, -0.254125771505793, -0.25373280723724445, -0.25416093855600597, -0.25335221241950495, -0.25382444037902874, -0.25406021454416045, -0.25408478513391003, -0.2536543194134865, -0.25405738358685975, -0.25322830629014176, -0.25365989139446843, -0.2541765662804711, -0.2538827381052247, -0.25382844628204676, -0.2537790672725798, -0.2539423189267299, -0.25383393144285354, -0.25364179114603946, -0.2547383218415066, -0.2545985899199567, -0.25402074702192495, -0.2538459935301059, -0.25382676260572956, -0.2537504414448867, -0.25403527464725373, -0.2540787638256059, -0.2537426677166548, -0.2542193645530084, -0.25410439444245025, -0.25413768420967886, -0.2538176723862388, -0.2542663365292698, -0.2542631820370898, -0.2538178519436822, -0.2538089541691257, -0.25390239357328714, -0.2538988084964098, -0.2541656885257382, -0.2538930031310248, -0.25322116116785953, -0.2540895718144032, -0.25472078915383367, -0.25368348657775075, -0.25386293641370944, -0.25424628864330956, -0.25428892284817606, -0.2541155385128426, -0.25349437504263284, -0.25387235461364416, -0.25441001860614626, -0.2538210217862268, -0.2537724176061624, -0.25419870991716764, -0.25434044635469355, -0.25392719506907613, -0.2534597644779885, -0.25412576453539537, -0.2541474366634155, -0.2535100600018075, -0.2535940741581877, -0.253888556869263, -0.2543447710682102, -0.25399715704320625, -0.25375465226210575, -0.2535822292685261, -0.2543587887702266, -0.25459155745479023, -0.25407981133696445, -0.25415986669472496, -0.2543142571921408]|
2019-05-01 06:24:08,932 | INFO : Best of geration |186| has accuracy of |0.557357| and fitness_score of |-0.253124|
2019-05-01 06:24:09,124 | INFO : Testing generation |187|
2019-05-01 06:27:24,573 | INFO : Fitness scores of this generation: |[-0.246010779337564, -0.24572314020298736, -0.24631855416465814, -0.24620474953676613, -0.24564100035899122, -0.24587627049063293, -0.24604494864462126, -0.24626944531542314, -0.2459651883429205, -0.24652598087321703, -0.24589746993717174, -0.24592703347369818, -0.24624029484013438, -0.2456879322745011, -0.24656097987063333, -0.2456724805311418, -0.2466041687088953, -0.2464980614751997, -0.24631412424357005, -0.24580536512526827, -0.24617075875506433, -0.24574191306888218, -0.24622395626780852, -0.24656378845093954, -0.24578517562591692, -0.2464340762038466, -0.24540463281454336, -0.24613385962348588, -0.24622623756213088, -0.24599580852393532, -0.24645076369420743, -0.2455135534819163, -0.2461628408604105, -0.24574507334807388, -0.24586093333930198, -0.2461603847397885, -0.2456878166330952, -0.24646415278105668, -0.24590283010522246, -0.24601184618724903, -0.24599521633395008, -0.24626159224606736, -0.2459259316272719, -0.24573554088112334, -0.24649196645428598, -0.245390982826201, -0.24656298727741544, -0.24667328619726106, -0.24538841234966063, -0.2457880107292407, -0.2457483969628811, -0.24624051835755228, -0.2462951899834082, -0.24608690551364085, -0.24705792071533875, -0.2464797281148568, -0.24580996158257337, -0.24626672459425222, -0.2462403619478286, -0.24619267463789019, -0.24580832998412597, -0.2460764397565328, -0.246130720620424, -0.24582575256345976, -0.24607253520631453, -0.24665061087990311, -0.2458094112627523, -0.24615723663337633, -0.24541213478840573, -0.24569828994572163, -0.2456475758374157, -0.24596380001642335, -0.24601909276885045, -0.24631085330751581, -0.24590068307875748, -0.24605174341671904, -0.24646198838739328, -0.24593919216537138, -0.2459808127875899, -0.24622353119119791, -0.24603551004449248, -0.24622056735548334, -0.24596906282847197, -0.24610887580669263, -0.24596388428144053, -0.24604219088042287, -0.24686123323167714, -0.24651034407212702, -0.2457945421075737, -0.2453433961253351, -0.24617405705363818, -0.24641907362031265, -0.2456115096755011, -0.24552814562765646, -0.24681218380344586, -0.24611795489007318, -0.24613294231010155, -0.24622766277424887, -0.24596278277606193, -0.24643827623254816]|
2019-05-01 06:27:28,187 | INFO : Best of geration |187| has accuracy of |0.561097| and fitness_score of |-0.245343|
2019-05-01 06:27:28,382 | INFO : Testing generation |188|
2019-05-01 06:30:47,542 | INFO : Fitness scores of this generation: |[-0.2599275147639258, -0.2604444854176802, -0.25972280729712777, -0.2601084556882781, -0.2601747731941973, -0.26021714217400965, -0.26022821578676303, -0.26006913753603234, -0.26020602570103774, -0.26068041827637334, -0.2600045001231177, -0.2599832569932662, -0.26036438590529337, -0.26008098845537, -0.25972203405606265, -0.2600809680244137, -0.2604101956235191, -0.2599397433975528, -0.260278206133429, -0.26056797411400456, -0.2604134537236539, -0.2602218183823404, -0.2602382289536426, -0.25971390894382673, -0.2604354632727673, -0.2599955639398167, -0.2599498466949242, -0.2603293925696026, -0.2603488898690725, -0.2598009075388054, -0.2601552432672137, -0.2600368562116788, -0.25991111011863444, -0.25962472868103514, -0.2605016026882767, -0.25995103465339353, -0.2604401594297045, -0.2596774331062515, -0.2598588205141828, -0.2597598426948393, -0.25973810973884054, -0.2605634010940618, -0.2599866771973626, -0.2598684373274015, -0.26046020199108677, -0.25988225547564514, -0.2602262273689226, -0.2595596686953065, -0.2598111960240182, -0.2611053504695782, -0.26063531392571554, -0.2602659205825343, -0.2595733551620748, -0.25989239763662303, -0.25956953619256873, -0.25964233658217284, -0.26030332973237674, -0.2598531253765084, -0.2601011541537467, -0.2599864105957781, -0.2596990550529061, -0.25971617970852495, -0.25994525017765907, -0.26019703742396627, -0.26009564172325794, -0.26087234413003646, -0.2601245413281325, -0.2594934156519829, -0.2600640657320188, -0.25993933808596836, -0.25997417324540245, -0.2600411934315125, -0.26061182711165765, -0.26114857847979994, -0.260086363312826, -0.26046786904335023, -0.2598760392624519, -0.26012477368288645, -0.26062298041547655, -0.25998191554422323, -0.2597077300438302, -0.25982862059780626, -0.2600694136467972, -0.2602002761612049, -0.26034332096921226, -0.2597740960258969, -0.25948457104622286, -0.260006206297461, -0.260054899640166, -0.2599043158437475, -0.25999870948019743, -0.2602932949975736, -0.26010422127784333, -0.2596879546352894, -0.2597400346587848, -0.2601501756665335, -0.25990438192566007, -0.2599108786252193, -0.25989760942541795, -0.2607473071599971]|
2019-05-01 06:30:51,038 | INFO : Best of geration |188| has accuracy of |0.558603| and fitness_score of |-0.259485|
2019-05-01 06:30:51,230 | INFO : Testing generation |189|
2019-05-01 06:34:23,252 | INFO : Fitness scores of this generation: |[-0.268721580910344, -0.2686104580272194, -0.26869628400328427, -0.2685898725378285, -0.2685843216850111, -0.2686168598385046, -0.26881816465962144, -0.2687595370855502, -0.2692097714832346, -0.268309551221563, -0.2685835334329122, -0.26868763408629964, -0.2684873820566115, -0.2686910662590684, -0.2685576589424865, -0.26903633853401054, -0.26908238748476193, -0.26898108539646093, -0.26877648623141337, -0.269042337176386, -0.2686484141472021, -0.26844555758045663, -0.268740077604844, -0.26920524994262285, -0.2692958938810397, -0.26850884559163346, -0.2688839470184166, -0.2688509648857918, -0.26855598882512594, -0.2685610824635619, -0.26873057686745055, -0.2689849797997525, -0.2684869194303198, -0.26837124346471847, -0.2686985910233338, -0.26852705879591365, -0.2686919544382254, -0.26838131156911665, -0.2686998490255655, -0.2689022875406478, -0.2685031258099016, -0.2686876195532956, -0.2689735550362067, -0.26888690538211985, -0.26865421847622656, -0.2686512369738456, -0.26834180071222846, -0.26859551152747085, -0.2692947234726011, -0.2687244821544633, -0.26875537263897925, -0.26864468226689037, -0.26857342419615493, -0.26867382671083473, -0.26882292060589924, -0.26859336738015044, -0.2689940109710917, -0.2684829572308866, -0.2688291665210335, -0.2686601758481839, -0.26856008443551127, -0.2687112824868243, -0.2685061151816419, -0.26926161001831606, -0.26850039432305034, -0.26867547596288804, -0.26921901730860803, -0.26867169241171845, -0.2686383130835338, -0.2686659901450636, -0.26861041463989765, -0.26846411380596996, -0.2685802172296499, -0.26867292218549965, -0.2685717904067025, -0.2685224815531231, -0.26926640108678723, -0.2686037934253509, -0.268613412322786, -0.2685839100668944, -0.2692760499338076, -0.2689363525707535, -0.2688311592269047, -0.26879294885758487, -0.26868667280033387, -0.2685669322599961, -0.2687172381100351, -0.26907074786469554, -0.26911823165276816, -0.2684169936283199, -0.2684161863977192, -0.2689598509012143, -0.26871870679940757, -0.26865397073406727, -0.2685473667500268, -0.2684712530636655, -0.2683885119685131, -0.26885819013579676, -0.2686515829219282, -0.26863963761176496]|
2019-05-01 06:34:26,910 | INFO : Best of geration |189| has accuracy of |0.563591| and fitness_score of |-0.268310|
2019-05-01 06:34:27,128 | INFO : Testing generation |190|
2019-05-01 06:38:00,414 | INFO : Fitness scores of this generation: |[-0.2594267620185677, -0.2598835497181146, -0.25963579467497766, -0.259834125243987, -0.2596456549452761, -0.25995238080549127, -0.2595119416409244, -0.2597403417233951, -0.2597953317543635, -0.2599001244928401, -0.26000011407841855, -0.25970630270715517, -0.25974979153117883, -0.25979846611153334, -0.2598182752889653, -0.259555811375881, -0.25952737753351146, -0.259921897856447, -0.2602410973855652, -0.25966222829615265, -0.25962656087134606, -0.2596803886565165, -0.2596496256032529, -0.2597700068100284, -0.2596612832723902, -0.2598968313720364, -0.2598192660908143, -0.25956159758453184, -0.2596597554018864, -0.2597733167573236, -0.2594321645760479, -0.25986685431025064, -0.25951821974013, -0.25962351431819397, -0.25986698993410057, -0.2597665837249504, -0.25972371152602136, -0.25986552328910106, -0.2599957174478242, -0.25957998705920404, -0.25987680188308543, -0.2600712862510521, -0.2601179889886855, -0.2596225539723841, -0.25929643232554483, -0.25992032043779123, -0.25961908015709084, -0.259605930133078, -0.2595788004915588, -0.2597385582406647, -0.259955414929069, -0.25981948886496514, -0.25955682898907423, -0.2598331559789725, -0.2598825353466404, -0.25978670722375125, -0.2601473604669221, -0.25977340050471515, -0.2596022541491458, -0.2599611181783705, -0.25924847829334724, -0.25954126740375966, -0.25979805706391257, -0.25985931589877087, -0.25982268369541717, -0.2597862819138055, -0.26007513543411803, -0.2597867837623478, -0.25942994192099345, -0.2598321329658994, -0.25972367299254984, -0.2598113533503448, -0.25957154716329217, -0.2596022959243363, -0.2601330053114977, -0.25954636954702437, -0.25959942090468335, -0.25976441393140703, -0.2596283914843717, -0.25976612985743064, -0.25963926153221667, -0.25973131221969825, -0.2601127161178738, -0.25953038421889335, -0.2595893563523602, -0.25984089049653936, -0.2597158533664277, -0.25955297853439474, -0.2596320139351659, -0.25950785892872286, -0.25995279866485643, -0.2595484241520843, -0.2597077159712521, -0.25955575423386806, -0.25963092983986896, -0.25974842975847423, -0.25953516584391206, -0.2597838972802632, -0.25980682791067433, -0.25975337323661035]|
2019-05-01 06:38:03,958 | INFO : Best of geration |190| has accuracy of |0.558603| and fitness_score of |-0.259248|
2019-05-01 06:38:04,440 | INFO : Testing generation |191|
2019-05-01 06:41:30,477 | INFO : Fitness scores of this generation: |[-0.2706194230957754, -0.2707208599333718, -0.27072063183394307, -0.27078302952875666, -0.27028231208535947, -0.2708402351764232, -0.27065136802802303, -0.27101209436276164, -0.27107347505653245, -0.2704689294792885, -0.270927412693712, -0.2710916595044165, -0.27074607880745954, -0.270495518336103, -0.2708401399168036, -0.27064245582448315, -0.2707135874222929, -0.2707398992278882, -0.2709013960106839, -0.2712064281709229, -0.2711789757398364, -0.2706487802315333, -0.27087973724347986, -0.2701513356529978, -0.27105227443907, -0.2710959608189306, -0.2710739368256775, -0.27066959141658153, -0.27131010318603316, -0.27052834388718944, -0.27079817719443106, -0.27029989812519917, -0.27005871878832605, -0.2706535807156953, -0.2710417907213364, -0.2710534785709742, -0.27058905832835256, -0.2705931681225158, -0.27066168094071513, -0.2703301407056672, -0.27048360046182185, -0.27093233549317647, -0.2706479208157249, -0.2709933464430613, -0.2710156429953661, -0.27090043240226, -0.27054578656271344, -0.27013313629111785, -0.2704940481138681, -0.27057825091786675, -0.27074530166248945, -0.27060900316681974, -0.27132971796570515, -0.2707164492923365, -0.27088776405364867, -0.2708885064164079, -0.2707539114789856, -0.2704535303805842, -0.27098109134818643, -0.2707674192981819, -0.27088176564960825, -0.27072512184515996, -0.2708706006625929, -0.27085959603312093, -0.27053922751050485, -0.27090612159116223, -0.2707304813346403, -0.2705710893504893, -0.2711104851514486, -0.2710308263673544, -0.27087955047199175, -0.27050929278469005, -0.2704574864912813, -0.2710868504979711, -0.2704505633681525, -0.2709893588101833, -0.2705642308375632, -0.27098926095794135, -0.2711116746003827, -0.2702346912855531, -0.2703667344408339, -0.27019140986817136, -0.27092456304236384, -0.2708729873639977, -0.27056313528776377, -0.27079480080436164, -0.27043607730890123, -0.27038542262754184, -0.2705429533398634, -0.27070755141239344, -0.2706472718387098, -0.2708111474680346, -0.27091168497370605, -0.2706200744857262, -0.270600073430992, -0.2708464316208747, -0.2708839205038332, -0.27110430675267555, -0.2707443674970145, -0.27089435031555725]|
2019-05-01 06:41:34,028 | INFO : Best of geration |191| has accuracy of |0.558603| and fitness_score of |-0.270059|
2019-05-01 06:41:34,224 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 06:41:34,227 | INFO : Testing generation |192|
2019-05-01 06:44:56,702 | INFO : Fitness scores of this generation: |[-0.2605549233305145, -0.26097780308164364, -0.26101121844003544, -0.2607172894235931, -0.26067535495207034, -0.26076165031486326, -0.26116288318104514, -0.26132311787048884, -0.26049474483143786, -0.26126713252793304, -0.26109437830956167, -0.26092881641299237, -0.2609013997715517, -0.2607583717570095, -0.2608633349484763, -0.2611994853551923, -0.26066961981935727, -0.26123280253727515, -0.2612876454966716, -0.261184239837739, -0.2604661499230945, -0.2606508993914324, -0.26038756385328, -0.26110109355901245, -0.26125861694269814, -0.2607981707258181, -0.2612887096445348, -0.2607107724755028, -0.2612117854993803, -0.26093008952990193, -0.2610403654809197, -0.2608375276996425, -0.2612065324452711, -0.26156141077249134, -0.26115400190417903, -0.2612432707122106, -0.26084696245301, -0.2607875853743333, -0.26103933982072314, -0.2612333937454654, -0.2605118916833011, -0.2609599715155437, -0.2609273573591583, -0.2608243903689078, -0.2611122370908602, -0.26110372207680843, -0.26066474682045626, -0.26112377193358466, -0.26132004934005026, -0.26126959197550775, -0.26133298218720663, -0.26081482019472824, -0.2608052699111629, -0.260686579407135, -0.2612275890795999, -0.26057154854093895, -0.26091983840457483, -0.26109415378417344, -0.2608021549468917, -0.26045847609387174, -0.2607284424639608, -0.2609627585534716, -0.26020901829105086, -0.2610451205976921, -0.2609302444213407, -0.26111979869938756, -0.2612876125360422, -0.2606792841043655, -0.26080256383005096, -0.26089199419892495, -0.2607326798703786, -0.26084466607823314, -0.26114280446271887, -0.2604410527893494, -0.2611481738534022, -0.26084690135320926, -0.26075576576735016, -0.2612895155000042, -0.2606854374943618, -0.26119018019320867, -0.26078477636265246, -0.26109335461490724, -0.2611094016535575, -0.2609291181321074, -0.26055900256958997, -0.26092459402533236, -0.26084474110482375, -0.260794470349186, -0.26071264024450114, -0.2606655800927183, -0.26098571363269546, -0.2611305108703379, -0.26087099673245373, -0.26080909196661184, -0.26079929607427915, -0.2612455515978436, -0.26054051316846183, -0.2603791406317252, -0.26086550966123584, -0.26072783779936687]|
2019-05-01 06:45:00,337 | INFO : Best of geration |192| has accuracy of |0.564838| and fitness_score of |-0.260209|
2019-05-01 06:45:00,529 | INFO : Testing generation |193|
2019-05-01 06:48:17,808 | INFO : Fitness scores of this generation: |[-0.2598819698138935, -0.2597068762179555, -0.2605695930286879, -0.26006552895031326, -0.26051090857604653, -0.2595659644774547, -0.25951033644378185, -0.25945775233572577, -0.2609044568749463, -0.2597791622506409, -0.2599575985223055, -0.25933033359668606, -0.25953818621431907, -0.2598156828160693, -0.2600154941220109, -0.2600050344154602, -0.2607488190618957, -0.2605913182856833, -0.25979868368041226, -0.26010858362949474, -0.2590564652913954, -0.2608392671114061, -0.25988603996612675, -0.2605527632120179, -0.26106615255518656, -0.25897981762522604, -0.2595950564960154, -0.25995572829028457, -0.25927983178961567, -0.25983253884606244, -0.26064175785314747, -0.2601306469338696, -0.2602913269727695, -0.2601403596742851, -0.2599336187377935, -0.2594302640092082, -0.2593969052157751, -0.2602222433268297, -0.2608637510367283, -0.26052393096431, -0.2593094299024925, -0.2605207233530719, -0.25977612495785807, -0.2597231711828854, -0.2589703384877705, -0.2596668700074277, -0.25980639984694925, -0.25951013405148576, -0.26009023793768593, -0.2598576646570752, -0.2599676745239554, -0.2599012389233926, -0.25965990171563336, -0.2604397534869793, -0.26075494330285526, -0.2606329942894418, -0.25991977469586747, -0.25980942841710114, -0.2594373302488792, -0.2593715194067577, -0.2593755260927648, -0.2604953864725625, -0.26017978751077886, -0.26061475049795174, -0.25978970096060416, -0.26135938623692934, -0.25958987193681843, -0.2595734469956014, -0.2593901235519386, -0.2597268273281615, -0.2600831234963929, -0.2597287356762624, -0.2606127126278674, -0.2606764985929902, -0.25964405501215926, -0.2593341497022931, -0.25950732618206884, -0.2591630110471714, -0.2596725826038093, -0.26049003618337757, -0.260080319443127, -0.25996744378310876, -0.25935905381310276, -0.25928057271351174, -0.2599620071307915, -0.2598406796048327, -0.2607586989860709, -0.2603815522771783, -0.2599657618599694, -0.2600401760328834, -0.2593364263089692, -0.25943402882392813, -0.25938036819783655, -0.25994628645116236, -0.26015944638085076, -0.26012553015678397, -0.26000549971330456, -0.25973183870678995, -0.2596150717993335, -0.259496647228555]|
2019-05-01 06:48:21,331 | INFO : Best of geration |193| has accuracy of |0.562344| and fitness_score of |-0.258970|
2019-05-01 06:48:21,527 | INFO : Testing generation |194|
2019-05-01 06:51:48,717 | INFO : Fitness scores of this generation: |[-0.2532476288728092, -0.25300480938476066, -0.253340775033702, -0.2534324137412983, -0.253357740122339, -0.25266203881605814, -0.25294596227614774, -0.25291548043489454, -0.25320447027683257, -0.25362908051065775, -0.2531789744548176, -0.25267200335212375, -0.2526704840167709, -0.2537060129383336, -0.2535856261201527, -0.2532249043557955, -0.2537474973305412, -0.2537100090151248, -0.2527417998080668, -0.2527555535668912, -0.2533024464353271, -0.25377055612595184, -0.2529446250848148, -0.2529672770914824, -0.2538263205471246, -0.25336077057796974, -0.252889558893183, -0.25237044623364574, -0.25280483783587165, -0.25358861461929655, -0.25353431469720344, -0.25350563443225366, -0.25304825372022133, -0.2534880044408466, -0.25299460024937337, -0.2525826906898747, -0.25278400868177414, -0.2529498529175053, -0.25312592231709025, -0.2531078830361366, -0.25340941457644756, -0.2534929416749788, -0.2526375159362088, -0.252421795129776, -0.25278522242670476, -0.25364342645458554, -0.2532105891212173, -0.25317342567703, -0.25305484104415643, -0.2525836343091467, -0.2530870374907618, -0.2530138665696849, -0.2530021923132565, -0.2530090058368185, -0.2536932875280795, -0.25297078600396283, -0.2533125678093537, -0.2533605600051258, -0.25244539505761604, -0.25332725055839705, -0.2527336345936941, -0.2528455505034198, -0.254246899459673, -0.253260287033475, -0.25333855306324754, -0.25270781125711356, -0.25296510500752406, -0.2527294596122659, -0.25273540380208387, -0.2527798309663068, -0.25297825574874877, -0.25316416441098505, -0.2533569656377253, -0.2527524138663126, -0.25312662311222245, -0.25272182392037434, -0.2528947138786316, -0.2525114339330922, -0.2536578117246213, -0.2533536747875421, -0.25330591722674994, -0.2528565041396929, -0.2531233806065891, -0.2529705525999484, -0.2529023724016936, -0.2537950512248537, -0.2529278445891712, -0.25317816832791207, -0.253634575812713, -0.25288736703603165, -0.2532453328759774, -0.2534339140679525, -0.2529614960758582, -0.2528687847567641, -0.25335385887519174, -0.2535030090938444, -0.253807668245357, -0.2531089462534241, -0.2531069159378176, -0.25265256180711415]|
2019-05-01 06:51:52,239 | INFO : Best of geration |194| has accuracy of |0.562344| and fitness_score of |-0.252370|
2019-05-01 06:51:52,430 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 06:51:52,434 | INFO : Testing generation |195|
2019-05-01 06:55:23,964 | INFO : Fitness scores of this generation: |[-0.26260516161470066, -0.26276316959475093, -0.2626096475522819, -0.26224596811770406, -0.2625501151334656, -0.26272193579161107, -0.2628218439490445, -0.26235618842297137, -0.262469621812944, -0.2623877101298614, -0.26260191937465654, -0.26259173794831187, -0.26255906568897913, -0.2621110886705078, -0.2623939331567016, -0.26264605955121273, -0.2626439659329302, -0.2624434033584628, -0.26278205095776846, -0.2627377176925612, -0.2627292781000216, -0.2625508398372169, -0.26266773998080084, -0.2625381672263228, -0.26235374769287056, -0.2624781173028098, -0.26284385330302396, -0.26270929008701766, -0.26279668390833044, -0.262308566047355, -0.2626605818470456, -0.26253940487507704, -0.2627164442156365, -0.2626170544974316, -0.26321520054036385, -0.26269353073806617, -0.26243751698900797, -0.26284558012270254, -0.2628982442255927, -0.26220825407974974, -0.2625114772954043, -0.26272758239717175, -0.2628762774287545, -0.2627596278218546, -0.26214662408886247, -0.2624392681578617, -0.26211598690093424, -0.26251368762746835, -0.2627097526802678, -0.2627632356076139, -0.2627360306058893, -0.2626649342595422, -0.262361446448148, -0.26253683238625936, -0.26248342026767035, -0.2626766816942056, -0.2625712529286937, -0.26225419356895263, -0.26314587078778023, -0.2627620276276774, -0.2623298741430352, -0.26231372855516405, -0.2629838836225947, -0.26220510146233394, -0.26265667259775305, -0.262609126576467, -0.2628727685390547, -0.26270929666981874, -0.2626857267195894, -0.261982762571206, -0.26225709083325116, -0.26272567802671726, -0.26247011751532145, -0.2629694621124241, -0.2625855241332853, -0.2627678618276637, -0.26289086688764335, -0.26287284012829987, -0.26281659068895324, -0.26284100456249293, -0.26246882791275983, -0.2627043665626146, -0.26283599775179267, -0.2627272741454458, -0.2625149361927866, -0.2630690902183994, -0.262302479246499, -0.2628340827831312, -0.2627498971787426, -0.2623784000260677, -0.2626938071027449, -0.26240493915846724, -0.26299985266610887, -0.2623075415540119, -0.26262041579272155, -0.26252833254209146, -0.262514835684403, -0.2625039830382818, -0.26290434150142067, -0.26292607264219686]|
2019-05-01 06:55:27,544 | INFO : Best of geration |195| has accuracy of |0.563591| and fitness_score of |-0.261983|
2019-05-01 06:55:28,049 | INFO : Testing generation |196|
2019-05-01 06:58:54,690 | INFO : Fitness scores of this generation: |[-0.2622377211251832, -0.2626253735759984, -0.2626527286780155, -0.2627258983592345, -0.26217127580573596, -0.2623543617111541, -0.26249810702660503, -0.26237192542910676, -0.26283657497457225, -0.2623872374837864, -0.26255585051253627, -0.2625398736348644, -0.2624773023378514, -0.2625123989043435, -0.26239247442257274, -0.2630496504895218, -0.2625721976326148, -0.2622661893807815, -0.26234676189028294, -0.26215448176515277, -0.2623372340522459, -0.2624940800417821, -0.26221100232688566, -0.2624562476195541, -0.2624239961077592, -0.26240643264387575, -0.2622568917675904, -0.26268373639382364, -0.2625138122534406, -0.262865037716868, -0.26220648676690544, -0.26262257222121127, -0.2626905725714699, -0.26236348940283444, -0.26232051653731914, -0.2623361700102496, -0.26224421354714156, -0.2624509085576349, -0.2621450759311669, -0.2630621350075786, -0.26252935967786845, -0.26262579990419077, -0.26219134421452234, -0.2621733449075533, -0.26212730316503985, -0.26247885216024325, -0.26269369232583434, -0.2625015817284076, -0.26272013500167685, -0.26231117103207546, -0.26243344476511615, -0.2623809468944359, -0.2625541533807964, -0.26230572507052163, -0.2625795741139166, -0.26260164132356034, -0.2629657359277704, -0.2624008353713833, -0.26235031269852765, -0.26257585061480626, -0.26255533033116496, -0.2627410823376079, -0.2625156883007425, -0.262121812817589, -0.2626190907357599, -0.2627098932036557, -0.2623954703562908, -0.2623499985927206, -0.26266270751436854, -0.2628437008165642, -0.262647075091075, -0.2620438439715955, -0.2631216267820921, -0.26244964569375134, -0.26267887734492823, -0.2623741355647618, -0.26246805191802247, -0.2621388765399718, -0.26212377080222227, -0.2625638656476981, -0.2626054459596839, -0.26273541133422074, -0.262402825826066, -0.2625737004267895, -0.2622500329904849, -0.2627619137163357, -0.2627674932420914, -0.26284122216782807, -0.2629318716733352, -0.26265285383252535, -0.26262818369617447, -0.2630180760341532, -0.2627282317311766, -0.2622031085097881, -0.2624191770366594, -0.2627016471830679, -0.2627483823186601, -0.2624664222543705, -0.26240932606065365, -0.2625683614156842]|
2019-05-01 06:58:58,277 | INFO : Best of geration |196| has accuracy of |0.557357| and fitness_score of |-0.262044|
2019-05-01 06:58:58,483 | INFO : Testing generation |197|
2019-05-01 07:02:20,161 | INFO : Fitness scores of this generation: |[-0.2730840545636575, -0.2730612167082597, -0.2732216869497133, -0.2737178701591547, -0.2730208623734639, -0.27326148549369544, -0.27344720993238597, -0.273262598494481, -0.2735789461833675, -0.2732042513969468, -0.2729179276787307, -0.2734680704504217, -0.27274381276760923, -0.27309801428644775, -0.2730851320508742, -0.2728599119719451, -0.273430852870631, -0.2736110034096947, -0.27295990665546, -0.27286800906564024, -0.27322185621028994, -0.27316166206104, -0.27316706509055716, -0.2732406552452659, -0.2737043180462929, -0.27298320376429963, -0.2733380308549994, -0.2729003289746906, -0.2733918165703684, -0.2730873558544808, -0.2733715275577275, -0.2734674211509275, -0.2727061872490607, -0.27355036290057444, -0.2732614037363371, -0.2732316910459051, -0.2733977243183105, -0.27350611539944814, -0.27374073577467156, -0.2733435586839049, -0.2735984992932498, -0.2738931812475783, -0.2734107674552727, -0.2740180322967478, -0.27274987068671935, -0.2735365219197899, -0.2732276584040136, -0.2732382094991609, -0.273534207463126, -0.27339884583404533, -0.2727643709357192, -0.27308197890632246, -0.2732542922307113, -0.27299730597403543, -0.27330795056797763, -0.27311839999222176, -0.27329899687384895, -0.2735418913741007, -0.27247360487155936, -0.27302828124798967, -0.2730177947937681, -0.2730120120182824, -0.2734894426788326, -0.2734081567752929, -0.2734153068577925, -0.27347283245309856, -0.27310803229731273, -0.2730063945228076, -0.2729506562015044, -0.2733860631126145, -0.27350086581208566, -0.2732301672680453, -0.27320302970941057, -0.2735237407386649, -0.273057198015655, -0.2728304333214699, -0.2731315880390825, -0.2729405097741283, -0.2730346077514442, -0.2732547342811866, -0.2735064729580896, -0.2733077717886569, -0.27309590960559665, -0.2730601711694095, -0.2733203630448772, -0.2731574085842857, -0.2732924310345545, -0.27344333928221193, -0.27322530149375107, -0.2736968474590266, -0.2726728881035394, -0.27324585924649764, -0.2731329264091144, -0.2736100575580553, -0.27355212847184085, -0.2728219151877637, -0.2737877897649969, -0.2733508237009126, -0.27375915376566845, -0.27362873063408677]|
2019-05-01 07:02:23,730 | INFO : Best of geration |197| has accuracy of |0.558603| and fitness_score of |-0.272474|
2019-05-01 07:02:23,927 | INFO : Testing generation |198|
2019-05-01 07:05:46,569 | INFO : Fitness scores of this generation: |[-0.24881783855083175, -0.24871671367246365, -0.2491636145669675, -0.24923762696013954, -0.24905160045786154, -0.24879061363882699, -0.24910505736726637, -0.24943761456499847, -0.24885325923680449, -0.24962860476077617, -0.249102033463293, -0.249144199977668, -0.2489845842698105, -0.249494112918109, -0.24882482765210745, -0.24899536276513143, -0.2490963386657154, -0.24934016120758554, -0.24889714405295799, -0.24867446688463685, -0.24923544401613726, -0.24934845349236595, -0.2488091834963518, -0.24874681046615257, -0.24908138603547103, -0.24938117236609356, -0.24875288829630268, -0.24885632207661562, -0.24841259357336565, -0.24893224843176215, -0.24894161782862786, -0.24859498640803554, -0.2491037396208788, -0.24890557104017624, -0.24909479817995012, -0.2488668867461933, -0.24917208821968378, -0.24898610838290375, -0.24903901305290682, -0.24868722332728166, -0.24927887016067982, -0.24904891001176888, -0.24921303209462853, -0.24934760865910777, -0.24895571928289503, -0.24923218713986617, -0.24896465280811036, -0.24880429483298952, -0.2494498005688664, -0.2492040060164574, -0.2492767697227664, -0.24880150812979318, -0.24900400259708574, -0.24911017409789035, -0.24880512728526022, -0.24892673579707456, -0.24921165980085747, -0.24891642618937065, -0.24882589882740774, -0.24926965173744045, -0.24931835566692806, -0.2490557703473917, -0.24866297714217703, -0.24878471025882054, -0.24907687529667824, -0.2493031743774349, -0.2489024522829543, -0.24906508245681933, -0.24897073273558623, -0.24930912902352487, -0.24897286920014358, -0.2487875229079661, -0.24932644846896715, -0.24917921006138288, -0.24928673836281026, -0.24924430344148066, -0.24869759888234935, -0.2493021324124699, -0.24878055038232944, -0.24867923532387456, -0.24893549077897825, -0.2491354548396642, -0.24951590849646915, -0.24878036065891843, -0.24875009555483785, -0.2493953507617708, -0.2489596409268601, -0.24872675145660167, -0.24908125803094447, -0.24923195646786123, -0.24916463547410542, -0.2492004608593788, -0.2490530569491132, -0.24890082298220895, -0.24906920600221594, -0.24883970225845103, -0.2493697477929573, -0.24941569335006017, -0.2488386922607898, -0.24907082376766962]|
2019-05-01 07:05:50,175 | INFO : Best of geration |198| has accuracy of |0.561097| and fitness_score of |-0.248413|
2019-05-01 07:05:50,373 | INFO : Testing generation |199|
2019-05-01 07:09:23,838 | INFO : Fitness scores of this generation: |[-0.25891746016676553, -0.2594985278334446, -0.2592530501459887, -0.2589918337628513, -0.2593846068410816, -0.25940233595713885, -0.2592732894117247, -0.25939569383145805, -0.2589622447769085, -0.25903303003953604, -0.2594622426850353, -0.2596057659137749, -0.2595025913265651, -0.2590690533736509, -0.25885901220901286, -0.25927464574753883, -0.259062172347557, -0.25895373418837964, -0.2592463002590362, -0.2592914276672694, -0.2589443761699214, -0.2589605325888731, -0.2594733889052968, -0.25954007706242405, -0.2593486698355503, -0.2595282781088424, -0.259056051227147, -0.2592496411886044, -0.2595969699278563, -0.258987017912779, -0.25910419794970646, -0.2590179260173244, -0.25931978543361506, -0.259275458690649, -0.25991889236572974, -0.25938048564388366, -0.2591442544838625, -0.25911168702348264, -0.25865840565658615, -0.25939849243014157, -0.259175023097478, -0.2591404196923364, -0.2599163994906905, -0.25909332133338836, -0.25967015765919654, -0.2591880505134959, -0.2586635015860289, -0.25906084715249295, -0.25949636969023837, -0.25906674020483106, -0.2591472201540085, -0.2589045496579416, -0.25936746771285635, -0.2595001908922624, -0.259389364951385, -0.25946139784273275, -0.259197345179712, -0.2591531991066333, -0.25987954995410883, -0.2599774300962865, -0.25951099172680675, -0.25907972695941694, -0.25906516163648957, -0.2595919565258626, -0.25943724626374104, -0.25903502662560185, -0.2598132408307698, -0.25986317057095604, -0.25934919246477994, -0.25947236573089383, -0.2591166877461051, -0.2590730748490659, -0.25931679286999615, -0.2593239020444676, -0.2594344885227923, -0.25987704157115454, -0.2593226313858689, -0.25948447049734835, -0.25926112473724844, -0.25883489973887713, -0.2590447422986973, -0.25946251756238364, -0.259158687561215, -0.2588687045845443, -0.2596318629687418, -0.25925705670239685, -0.25939975986759106, -0.2591935789067588, -0.25939536139279784, -0.2589171789720387, -0.25908009832847617, -0.25928534160474104, -0.25930252604320375, -0.2592048677855623, -0.25895857407661255, -0.25918297070764496, -0.25902692381136433, -0.2591345762242814, -0.2590392897050538, -0.25975929916261914]|
2019-05-01 07:09:27,334 | INFO : Best of geration |199| has accuracy of |0.563591| and fitness_score of |-0.258658|
2019-05-01 07:09:27,540 | INFO : Testing generation |200|
2019-05-01 07:12:52,730 | INFO : Fitness scores of this generation: |[-0.2591058967826522, -0.25850904121577184, -0.25894920327396037, -0.25912861981403046, -0.25904410681991935, -0.25886936144572553, -0.25901049757115197, -0.2589616858792082, -0.2590949411147109, -0.2585132739254247, -0.2590908282688845, -0.25897687591403445, -0.2587283967393581, -0.25865481688040437, -0.2591491406487527, -0.25920047588716044, -0.2592181122609388, -0.2583310706871692, -0.25839863324833806, -0.25910389715823057, -0.2593278233275235, -0.2597346911642039, -0.2589796929855213, -0.2589620478103094, -0.25885671877136857, -0.2583936824141262, -0.2591893099875094, -0.258956891688231, -0.2590714005109306, -0.2597210280945368, -0.2592270337532614, -0.25908067333642565, -0.25939308964760505, -0.2588848836371832, -0.25907264851799633, -0.25905001306923753, -0.25881872569846215, -0.25883309760383355, -0.25944437359538036, -0.2592939771363668, -0.25906519314674575, -0.2584161564847019, -0.2581634684422306, -0.2586186897671111, -0.2592210050498214, -0.25920548979367053, -0.2590616519623828, -0.2596737309036968, -0.2591140880902237, -0.2588969383562837, -0.25919958059197273, -0.2590710572410967, -0.25898578105685865, -0.2591437324045974, -0.25863472950235705, -0.25924837934636624, -0.25906678268285555, -0.2592790702375296, -0.25895764128627063, -0.25878754493510614, -0.25912394881527, -0.25905239224155374, -0.2591843470652527, -0.2590707012843863, -0.25904465990367337, -0.25861543464326414, -0.25893297311023017, -0.2589563812607917, -0.2586692043693266, -0.2589493921844759, -0.2589851767242512, -0.2591705477404817, -0.25902123869022475, -0.2585440295321919, -0.2591528413033931, -0.2594490198749248, -0.2586999273885076, -0.25887768141855705, -0.25863731910135146, -0.259130446877435, -0.25901395621422296, -0.2590796018315253, -0.25904312883025016, -0.2588800903514167, -0.2589742047485904, -0.2592287799883112, -0.2591693501745429, -0.25938440001456536, -0.25929462869312164, -0.2583958284041592, -0.25912174762130896, -0.2588634530656806, -0.25917493401565284, -0.25903952896037946, -0.2590394961221196, -0.2591782842841104, -0.2587156092730638, -0.2589206005089751, -0.2583168011680942, -0.2588125166074138]|
2019-05-01 07:12:56,352 | INFO : Best of geration |200| has accuracy of |0.557357| and fitness_score of |-0.258163|
2019-05-01 07:12:56,839 | INFO : Testing generation |201|
2019-05-01 07:16:15,378 | INFO : Fitness scores of this generation: |[-0.25843483163464454, -0.25849577896056636, -0.2588301283313382, -0.25850838180511226, -0.25883030160780873, -0.25805885876378704, -0.25844486551900064, -0.25890749589089423, -0.2588431389870182, -0.2585425175389936, -0.25832317452276904, -0.2583613499133818, -0.2587558151829627, -0.2588038129575791, -0.2587080632486651, -0.2582284940442731, -0.2584028472438935, -0.2587403323573451, -0.2584741379753236, -0.2583153252447805, -0.2589474713033246, -0.25916566829527576, -0.258854010605043, -0.25834457593579446, -0.25833090216882765, -0.2584683583628747, -0.25846943939885786, -0.25826440234338083, -0.2586447391202373, -0.2588399932845946, -0.25855508512066255, -0.25889066057820476, -0.25852565100116115, -0.25878015141333305, -0.25828256168673114, -0.2581462927402989, -0.2589572928797814, -0.25899739353887496, -0.2589087900423235, -0.2583105300703356, -0.25846598302164386, -0.25851269452802594, -0.25829750372517496, -0.25820271734268435, -0.2586207469432585, -0.25887417462564283, -0.2587250247309285, -0.25882313736023443, -0.2584584589542881, -0.25858975568125325, -0.25801516117588164, -0.25861156548223185, -0.2587350896866091, -0.25898519012235827, -0.2586138271900915, -0.2586214722741035, -0.2588554707650215, -0.258479986767615, -0.2585576790763486, -0.2581271063127825, -0.25827500827850836, -0.259042285180861, -0.2585856927979377, -0.25834982010626023, -0.2585466374889497, -0.2586271143344141, -0.25844325515531724, -0.25829865986301054, -0.25843825132616105, -0.25911544669059017, -0.2592669669274361, -0.2584905083333292, -0.25866088274986515, -0.2586680579954578, -0.25803774441442184, -0.2583673299128009, -0.25882993921156855, -0.2585097287547204, -0.2584584755282248, -0.25849059604829355, -0.2585858316959873, -0.2589067534862026, -0.2580036579408953, -0.25810180033406904, -0.25836927363949436, -0.25932346317075916, -0.2587270144108803, -0.2585856480367722, -0.25869048864610733, -0.25876303003680323, -0.258444315156629, -0.25814840908973447, -0.2584496984943267, -0.25874573622980424, -0.2582138677181736, -0.25850035198273197, -0.25881200967296475, -0.258732462352322, -0.2582721763272439, -0.25836061123878723]|
2019-05-01 07:16:18,957 | INFO : Best of geration |201| has accuracy of |0.564838| and fitness_score of |-0.258004|
2019-05-01 07:16:19,152 | INFO : Testing generation |202|
2019-05-01 07:19:48,456 | INFO : Fitness scores of this generation: |[-0.26279412660192936, -0.2627681203133671, -0.26301279031004465, -0.26283809032211913, -0.26253661669737904, -0.26292729121996156, -0.2629978696716593, -0.2624919131398201, -0.26283774025051304, -0.26286229112892284, -0.2628671310260786, -0.2626217029830243, -0.2628786911567052, -0.2630681753686979, -0.26259144323726075, -0.2631335678252768, -0.2628532093995852, -0.26278537239166017, -0.2625488360511496, -0.2628213436679637, -0.2628052787789216, -0.26258446550961084, -0.26290080230286783, -0.2629342663689708, -0.2628393181249605, -0.2624989297373075, -0.26302175359100316, -0.2627792957086935, -0.2627562272421857, -0.2625113148321497, -0.2628602869438787, -0.26297672955279655, -0.2627714213538677, -0.26277768300146076, -0.2628272668901065, -0.2625679656334803, -0.26303437211623426, -0.26275933561384257, -0.26285630407485555, -0.26315378917658583, -0.26289379795392354, -0.26295987940426413, -0.2629178685288057, -0.26242647171020506, -0.262901290532545, -0.2627491263633079, -0.2627378323716475, -0.2631802674726392, -0.2627324945537757, -0.2629428529887335, -0.2630996615645733, -0.2627327359737234, -0.26248781989652215, -0.26283908801298617, -0.26259672957743313, -0.26276400597594307, -0.26317206490124373, -0.2627256604162514, -0.26272979386097994, -0.26272018471508163, -0.26242670037433613, -0.26243562811443993, -0.262759324083937, -0.2629399160755442, -0.26284757536565156, -0.26320585659209716, -0.26301138362985976, -0.2627747434779262, -0.2626999683730991, -0.26284571414720925, -0.2626379756005943, -0.2631190075519237, -0.2627635059204507, -0.2628304966798065, -0.26290035362996106, -0.26277343033687445, -0.2623993582230933, -0.26273126793457263, -0.26253775506154864, -0.2628596474515631, -0.26287204365358285, -0.26297924880017626, -0.26289870373323454, -0.26262433181206385, -0.26252002746712233, -0.26259700623175775, -0.262584107395605, -0.26272010815904495, -0.26270544876654944, -0.2626069191288441, -0.26295257993835086, -0.26277132095597316, -0.2628819209675417, -0.26273799997272224, -0.2627807083282065, -0.263048114062201, -0.2628482976492415, -0.2627151107957177, -0.2629526566740469, -0.2628027186220419]|
2019-05-01 07:19:52,028 | INFO : Best of geration |202| has accuracy of |0.559850| and fitness_score of |-0.262399|
2019-05-01 07:19:52,225 | INFO : Testing generation |203|
2019-05-01 07:23:12,764 | INFO : Fitness scores of this generation: |[-0.2637017093868141, -0.264025596538222, -0.2631834763719375, -0.2635145059730633, -0.26360811842493265, -0.26398872625396913, -0.2633000499333244, -0.26371452689888963, -0.26382782294089535, -0.26338752745145777, -0.26359002405261417, -0.2638373921434563, -0.2636355666690562, -0.2637931151203362, -0.2634447151458407, -0.26371949884187745, -0.26360804549900885, -0.263160229770534, -0.26383864181228434, -0.2640153821871941, -0.26350087076425555, -0.2635762476956988, -0.2635889170399631, -0.26329410510608947, -0.2632305085299963, -0.26352969874818644, -0.26390395530735156, -0.26390745467450244, -0.26384020749344883, -0.26288162401641707, -0.2631826544921082, -0.2633085683347231, -0.2633562428405486, -0.26373746743403287, -0.26365893298243903, -0.26368149348411213, -0.26384244216493813, -0.2636462835662336, -0.26302339258682295, -0.2634144804025271, -0.2635247675230704, -0.2634945537491017, -0.26398456764508443, -0.2641098721199725, -0.2638526452952121, -0.2629641151392316, -0.263431975873838, -0.26345163673521527, -0.2634432323187231, -0.26358311966241127, -0.2639485652906349, -0.2639766485755702, -0.2637725457549095, -0.2632164125162435, -0.2634120055709977, -0.26418173867894945, -0.26304591486612, -0.26382587175053285, -0.26385969070785015, -0.2639949998044106, -0.26406622037111993, -0.2631677387170045, -0.2635683453226664, -0.26341246768652676, -0.2636255448123059, -0.2630976063838924, -0.2644350806094078, -0.26404244143919775, -0.2640014250055853, -0.26329021376658635, -0.2632110326045967, -0.2633539948118738, -0.2636469412819449, -0.2635384282254311, -0.2635718879749976, -0.26421825370515684, -0.26374601215483195, -0.2634646406374782, -0.26333842381655453, -0.263276234340955, -0.2634003457355212, -0.26377905156598036, -0.26358179101742896, -0.26415785055562674, -0.26380098243075684, -0.2637143001498946, -0.2633664251271501, -0.26363714299647206, -0.26351111495351215, -0.26388122284986887, -0.26379231787230595, -0.2638837439468108, -0.26354049794286133, -0.2637062359825674, -0.26343866191714643, -0.2634282244077648, -0.2635478621505829, -0.2636960640729192, -0.2639735423297767, -0.26395017639341123]|
2019-05-01 07:23:16,333 | INFO : Best of geration |203| has accuracy of |0.567332| and fitness_score of |-0.262882|
2019-05-01 07:23:16,538 | INFO : Testing generation |204|
2019-05-01 07:26:56,053 | INFO : Fitness scores of this generation: |[-0.26230654095266637, -0.2620919373895471, -0.26206448442253527, -0.26231541927509044, -0.2621664820468798, -0.26201937599818154, -0.26225700358732873, -0.26236544963767816, -0.26191054504313227, -0.26217932602380156, -0.26205981063861084, -0.26246093765198725, -0.2622826899388968, -0.2623277655547543, -0.262004893252133, -0.2625307134570553, -0.2620752718866146, -0.2621447562759373, -0.26218814332242263, -0.2622329859521776, -0.2619992844565856, -0.2619718318100288, -0.2621654044403764, -0.2622105146653824, -0.26215267308815526, -0.26217756143027676, -0.2624076942694352, -0.262566050488828, -0.26220904544751217, -0.2620177402657481, -0.2622870436110865, -0.262344963646399, -0.26224005297856395, -0.26221744904625555, -0.2623054869911699, -0.26231784341094805, -0.2622739790771414, -0.2619293112664484, -0.26204703095871185, -0.2625378166414565, -0.2621493908193743, -0.26203256916432155, -0.26234099098766883, -0.2622046963837717, -0.2622631008784953, -0.26211387630126687, -0.2623893670924676, -0.2620554734240784, -0.26216328141021533, -0.2623943840074832, -0.262188617153407, -0.2628047322912578, -0.2622534203654488, -0.2619345289236817, -0.2621544093442952, -0.26230812793014846, -0.2620870626879178, -0.2622905542727806, -0.26241664548013005, -0.2622619335064202, -0.26217223730565825, -0.2620551890888644, -0.2622335696992542, -0.2620736593642848, -0.26210234186402726, -0.26224920030013754, -0.262145390357351, -0.2623757239234673, -0.2621683426701101, -0.2620725678179854, -0.262255483729926, -0.26221142384985197, -0.2622299662887043, -0.2620026395220788, -0.262219761305141, -0.262084425670699, -0.26227531640485685, -0.26193367501008347, -0.2622279846173827, -0.26227713790967777, -0.26222761050133725, -0.2620154697881011, -0.2621408791433404, -0.2621514169423933, -0.2621065227117407, -0.26231204288407467, -0.2623154305444274, -0.2621887019977042, -0.2624353390745914, -0.2621129636146811, -0.26246997073895495, -0.26224927083840444, -0.2620739493150926, -0.26188561443908975, -0.2620150280865534, -0.262186152731768, -0.26186591555415456, -0.26232125327425987, -0.2620954566730088, -0.2625630666476546]|
2019-05-01 07:26:59,555 | INFO : Best of geration |204| has accuracy of |0.566085| and fitness_score of |-0.261866|
2019-05-01 07:26:59,754 | INFO : Testing generation |205|
2019-05-01 07:30:14,171 | INFO : Fitness scores of this generation: |[-0.25324441492557526, -0.2530754031450079, -0.25314026064517203, -0.2533225618760314, -0.25321733726090506, -0.25350055088730233, -0.25327345294257003, -0.2535693255628933, -0.25354633486846034, -0.25328099708023827, -0.25298804518554296, -0.2530336461046286, -0.25342438981067716, -0.25324507616460323, -0.2532274811937098, -0.25343980940810423, -0.25330706388411817, -0.2531426094407052, -0.2530719396053699, -0.2535767998023514, -0.25348947069754724, -0.2527408272420105, -0.25324179911822603, -0.25287540119729546, -0.2531674248738247, -0.253382056592065, -0.25338553542500003, -0.25328840102935046, -0.2533066936098693, -0.25325479103546394, -0.2532766994677092, -0.2535670458159426, -0.25326649361012277, -0.25283918506874326, -0.253073336229774, -0.2534971355476923, -0.2533449890712897, -0.25304747921855825, -0.25322587494003146, -0.25356348800031764, -0.25311988098710253, -0.25311695588262456, -0.2534997466820897, -0.2533832707752784, -0.25337375834453524, -0.2531570847423976, -0.25342424168137084, -0.2531600836991218, -0.2533899706772022, -0.2527683927236419, -0.25315396209949986, -0.253990536228868, -0.2531703021704105, -0.25305142119657575, -0.253591690604624, -0.25367942014545725, -0.2531825179855029, -0.2531457569842276, -0.2537129778218897, -0.2535146231714048, -0.2533646388992406, -0.2529146524244233, -0.25338184317214446, -0.25353143445886017, -0.25301706911832617, -0.25311700653350144, -0.2531906675482005, -0.25343788683153035, -0.25346291741650356, -0.25365396226315123, -0.2529592061121213, -0.2532122911918059, -0.25327786172560435, -0.25300942720812664, -0.25294242403878453, -0.2533467499571934, -0.2537248557466164, -0.25299332503294736, -0.2533303813584018, -0.25336189875215814, -0.2530788443982601, -0.2533906029635354, -0.25332201128466086, -0.2538544740854648, -0.25330732782420357, -0.2535398656077552, -0.25350755159007876, -0.25356896927482203, -0.25322834827136576, -0.2532762924307271, -0.2530677607446386, -0.25361163623369576, -0.25310476503351276, -0.25318260229470435, -0.25364808591180726, -0.2533675927603454, -0.2530106447244945, -0.2534029176948886, -0.2530946941686827, -0.25323330519492165]|
2019-05-01 07:30:17,757 | INFO : Best of geration |205| has accuracy of |0.561097| and fitness_score of |-0.252741|
2019-05-01 07:30:18,260 | INFO : Testing generation |206|
2019-05-01 07:33:49,664 | INFO : Fitness scores of this generation: |[-0.2658778224795344, -0.2660914335803308, -0.26596023095182225, -0.26612946598590176, -0.26600286862308636, -0.26603205958918347, -0.266146949459648, -0.2666180019388722, -0.2660396201051405, -0.26621320598487613, -0.26622884997209917, -0.26550950719837396, -0.26616303370178335, -0.2660936247426414, -0.26626960356862567, -0.2663582164568908, -0.26583283443826494, -0.2658948855141883, -0.26598179528984844, -0.26624112931484917, -0.26642473809075257, -0.26585068961319874, -0.26614690379209494, -0.26601965736948824, -0.2663033290251398, -0.266050643160541, -0.266147018181037, -0.2664880689375008, -0.26632125973282317, -0.2663441901782897, -0.2657724503432983, -0.26618633631999317, -0.266086736015462, -0.2663310449020269, -0.2667836896477872, -0.26623943090732255, -0.26647449782545224, -0.2661937111582602, -0.2657066195490659, -0.2657472759736741, -0.26618190949098974, -0.26638887286102386, -0.2661790809634701, -0.266147431944996, -0.2663524907014206, -0.26598184824031784, -0.26615090332872926, -0.2662878904161574, -0.2662227831351271, -0.265960198016274, -0.26634512050535775, -0.26604438561595106, -0.26644995018483547, -0.26642079493122595, -0.26618726223539535, -0.26590308442229793, -0.2661348374458305, -0.2664149333257883, -0.26609564775865624, -0.26600007448769825, -0.2667610502989148, -0.2660787034407782, -0.2658935416222625, -0.2660095957009601, -0.26592678072667153, -0.2662751027572842, -0.26589067385082676, -0.26600353787594205, -0.26650200936152124, -0.2659781866310015, -0.2657219875085203, -0.2658648844258192, -0.26601725463583836, -0.26607941975489613, -0.2661274930595849, -0.26609552225147787, -0.266237221113321, -0.266235726124459, -0.2661799076740249, -0.265482988957782, -0.26618414191966655, -0.2662901951081307, -0.2660763335274074, -0.26619918987092084, -0.2663885575474231, -0.266046377205396, -0.26576658230374467, -0.26582458147938914, -0.266466588966035, -0.26650764643307645, -0.2663085218807145, -0.26652506773481893, -0.26672271554228627, -0.2664271676087681, -0.26615857849560376, -0.26577867815891904, -0.26627100115503105, -0.2664295496358818, -0.2657049058421755, -0.2663290658454855]|
2019-05-01 07:33:53,223 | INFO : Best of geration |206| has accuracy of |0.564838| and fitness_score of |-0.265483|
2019-05-01 07:33:53,417 | INFO : Testing generation |207|
2019-05-01 07:37:07,777 | INFO : Fitness scores of this generation: |[-0.24974206745741645, -0.24890219755397563, -0.2494392058060071, -0.24949431753111728, -0.2500087871474227, -0.24960434463145925, -0.249688710380631, -0.2494204904745042, -0.2492339065653402, -0.24951182074537445, -0.24913467621990645, -0.2494798310847554, -0.2494545234971056, -0.24963717944261368, -0.24981985049421052, -0.2493758193109265, -0.24944101112999006, -0.24911698350620645, -0.24948212000850611, -0.24920436599399814, -0.249723049008776, -0.25002581618857994, -0.24974100171699973, -0.24956557602568552, -0.24966992988216385, -0.24925303953921163, -0.2491661266282874, -0.24957158233538593, -0.2495298765907119, -0.2498885772551441, -0.2500512885672639, -0.24941657246447266, -0.2496134542763116, -0.24912042854342809, -0.24990219237879358, -0.249670098918126, -0.24981021204842566, -0.24953962382375608, -0.2501049231745171, -0.24944719124753723, -0.2496580971891613, -0.24892042026889816, -0.24929970400389614, -0.24971428009990626, -0.24987751977382802, -0.2497882871414683, -0.24957113357330352, -0.2497940092166421, -0.2495915135606567, -0.2494212691699592, -0.24915935825153981, -0.24948672815601108, -0.24995772221467819, -0.2501866928720755, -0.24972619089958475, -0.24950297293939383, -0.24966732449170884, -0.24908430552318664, -0.24882202072907056, -0.25005394571656564, -0.249878590578883, -0.24938281547929542, -0.24990740359883412, -0.24956613000343264, -0.24948183267079074, -0.24904776503622883, -0.24940992827382677, -0.24988835587482788, -0.2500584011052119, -0.24963773585021612, -0.24970671042712123, -0.2494701703311418, -0.24933438538802397, -0.24906714503563693, -0.24937484605139038, -0.24978197569463015, -0.2502120687298784, -0.24955444116957765, -0.24991893739035181, -0.2494110063391725, -0.24954572071143827, -0.24909650345565293, -0.2489298295471195, -0.2497842916102681, -0.24977568102257658, -0.25037237931562545, -0.249299655816644, -0.24936843594656946, -0.24932208707032832, -0.24916619018510658, -0.24943834030909248, -0.2495121372999049, -0.2500194457226043, -0.25014719279201186, -0.24952746488607702, -0.2494713900014319, -0.24947745070476196, -0.24947537871147185, -0.24924530691974056, -0.24930267240888712]|
2019-05-01 07:37:11,340 | INFO : Best of geration |207| has accuracy of |0.559850| and fitness_score of |-0.248822|
2019-05-01 07:37:11,533 | INFO : Testing generation |208|
2019-05-01 07:40:36,997 | INFO : Fitness scores of this generation: |[-0.2535173222549526, -0.2533590264707245, -0.25375055879659103, -0.2534295748633664, -0.25328285432400044, -0.25338525158786285, -0.25365013031374656, -0.2536939902189846, -0.2532731731385754, -0.25354698866453446, -0.25349312702120874, -0.2535072645042377, -0.2535235474371626, -0.25329877797901323, -0.2537555918097496, -0.2533207630176967, -0.25355571885379047, -0.2537426533878763, -0.2537508391135799, -0.2533443970082159, -0.25371195685619796, -0.25325791701496764, -0.25345702148225074, -0.25356755384086954, -0.25372642681028, -0.25355873811590207, -0.25376701747183095, -0.2535290071769305, -0.2534400481077029, -0.2535831481218338, -0.2531653659408706, -0.2538038233019018, -0.25361524418224873, -0.2536080233130788, -0.25361468144129246, -0.2535943826073479, -0.25334181762229036, -0.25335105738302716, -0.2538867300626976, -0.2537217106943033, -0.2530683253779119, -0.25363814896781767, -0.2534545871986035, -0.25339555637546046, -0.25350610498066045, -0.25327439613805314, -0.25371731782182927, -0.2534140997282285, -0.25365827261792334, -0.2537466533977088, -0.2539101038413722, -0.25386413802381674, -0.2533328338467486, -0.2536526242147312, -0.25399316634087993, -0.2535494417713692, -0.25333442645594856, -0.25370536448856024, -0.2535021416271769, -0.2536210245508352, -0.2533925908920712, -0.2536141230919901, -0.2537830814439962, -0.25336769504989837, -0.2535161467640323, -0.25360272278980667, -0.25351972126574895, -0.25371294170364206, -0.2537775297714254, -0.2531683341404852, -0.25336025591806416, -0.2537752158647908, -0.25378438949686505, -0.2536913620171596, -0.25345488735419114, -0.2539334717687391, -0.2533205808275197, -0.253352127969265, -0.25366986064427555, -0.2535328466756177, -0.2534875444420558, -0.2535610881838725, -0.25364578143396815, -0.2535803653744051, -0.25317688537618777, -0.25318885499411586, -0.2535599344989104, -0.25348856425772737, -0.25335791788271783, -0.253535353091547, -0.2534736738345083, -0.2535886121897925, -0.25357610407385345, -0.253106073484307, -0.2532140878893854, -0.25334802785256855, -0.253439766229519, -0.25351941519539034, -0.2536375571734048, -0.25378890255596204]|
2019-05-01 07:40:40,523 | INFO : Best of geration |208| has accuracy of |0.566085| and fitness_score of |-0.253068|
2019-05-01 07:40:40,749 | INFO : Testing generation |209|
2019-05-01 07:44:00,467 | INFO : Fitness scores of this generation: |[-0.26404367221523906, -0.2638042048166317, -0.2637429127884086, -0.2640302242815932, -0.26386778876367584, -0.2637705020151103, -0.2637472778267266, -0.26418132739355626, -0.26364628354902664, -0.26371577695412857, -0.2637778467573863, -0.2638575989561734, -0.2638619046448787, -0.26383908992874594, -0.264039695171826, -0.26444618680803583, -0.26388371963518464, -0.2638041960180243, -0.26377175637227107, -0.2639991521361696, -0.2639341135406844, -0.2637293342783282, -0.26401721037614606, -0.2647196847608445, -0.263902537834382, -0.2638133360587589, -0.2639375869139191, -0.26428972102683446, -0.264045382405843, -0.26373907185927, -0.2639436710507479, -0.26418770383360335, -0.26402770263350095, -0.2638702610084072, -0.26374211497513766, -0.2639878653263113, -0.26399358913921783, -0.2636249029876842, -0.2637555922010417, -0.2642842386928922, -0.2636854575723774, -0.26387844690119433, -0.26379590131761393, -0.264019384925552, -0.2639157649648802, -0.2638272911055164, -0.26382041587733407, -0.26417771861649375, -0.2640539402265129, -0.2638572364826949, -0.26373261377251817, -0.2640255449890799, -0.263893630401138, -0.26400588982918444, -0.263842435713065, -0.2641787617159939, -0.2638306940170255, -0.2640113967008579, -0.2636687145511504, -0.2640352926073564, -0.2637348877480094, -0.2636598523496707, -0.2638312723023093, -0.2642425726051727, -0.2640263730418711, -0.2638600016500081, -0.264349746547439, -0.2645666263177809, -0.2638008310698647, -0.26360691200331543, -0.2637757461855056, -0.2637387211354846, -0.26419004561119963, -0.26381835958995564, -0.2637096429038747, -0.2642276428075175, -0.26388411928869987, -0.2637521253311255, -0.2637018130723305, -0.26398092411768176, -0.26402246839114096, -0.263740162285441, -0.2640357577676878, -0.2634227977915323, -0.263797481551147, -0.26357715469409315, -0.2639281831517779, -0.26428852512667406, -0.26376367506086096, -0.2637272078024729, -0.26386774313114675, -0.2640274711736548, -0.2637136479097357, -0.26380765124754685, -0.2632128799056366, -0.2635637494054575, -0.26404845634416146, -0.26401991273269676, -0.26417409808973813, -0.26430039643366937]|
2019-05-01 07:44:04,050 | INFO : Best of geration |209| has accuracy of |0.567332| and fitness_score of |-0.263213|
2019-05-01 07:44:04,246 | INFO : Testing generation |210|
2019-05-01 07:47:38,163 | INFO : Fitness scores of this generation: |[-0.2618695642834618, -0.2610298346148597, -0.26193821139751916, -0.261543704186167, -0.2616204582604151, -0.2613178133113044, -0.2619508816230865, -0.26171109775702156, -0.26200524897802446, -0.26169093378006464, -0.2615963970101069, -0.2618761550907105, -0.26114838227393133, -0.26223890210900985, -0.2619074981080161, -0.26154521408535186, -0.261644013448367, -0.26193333203830416, -0.2620169684338191, -0.26142196877608226, -0.2613619006815411, -0.2612770617954315, -0.2617907640385249, -0.26169670076597307, -0.2615358240642245, -0.26214743705969007, -0.26189377051497265, -0.2618270314969714, -0.2612322500490007, -0.26172017131532943, -0.2620863620913218, -0.2613728515401719, -0.26225306174111745, -0.2617174650941576, -0.26210265431139207, -0.261319318167747, -0.2612421032171401, -0.2615082756962095, -0.2615140622570401, -0.26134050795956265, -0.26148686812037514, -0.26173575041786074, -0.2623234807120429, -0.2612840774134984, -0.2612574174669054, -0.2615616097147503, -0.261405070092943, -0.26132245152715655, -0.261582185285432, -0.2619768820206324, -0.26204100669376434, -0.2615692392133531, -0.26123350353468033, -0.26166538856332267, -0.2618428993792761, -0.26178673293855453, -0.26162203565476433, -0.26171968258562545, -0.26157254325965096, -0.26202978357436163, -0.2614376153075506, -0.2614058857966983, -0.2621678095109879, -0.2615922670231925, -0.2618131518269342, -0.2617546460931263, -0.2616184197342585, -0.2617495287126965, -0.2612392663009583, -0.26145684133446406, -0.2621543174603629, -0.26141603155741616, -0.26220426289808185, -0.26172848428998674, -0.26160282912708466, -0.2618730149004194, -0.26116092234376875, -0.26191339615791565, -0.2616557251177137, -0.2615493024814697, -0.2622755804989073, -0.2618725009096993, -0.26168208860215686, -0.26204250211753544, -0.2614166003181821, -0.2613339606637046, -0.2618253257728758, -0.2618255557994994, -0.26177016879831044, -0.26182140576461005, -0.26187180870109134, -0.2617407979094793, -0.26157601630876937, -0.26187273967833746, -0.2618757454365019, -0.26141789853572844, -0.26151953320654614, -0.2620692668736927, -0.2617216477886079, -0.26148780921148873]|
2019-05-01 07:47:41,743 | INFO : Best of geration |210| has accuracy of |0.567332| and fitness_score of |-0.261030|
2019-05-01 07:47:41,935 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 07:47:42,336 | INFO : Testing generation |211|
2019-05-01 07:51:00,473 | INFO : Fitness scores of this generation: |[-0.2649880839838623, -0.26544793929728294, -0.26514800519664306, -0.26501641505524975, -0.26548653832717195, -0.2651392797573695, -0.26515689652029184, -0.26489912133279947, -0.26521786860602814, -0.26537651574877313, -0.2653480127329282, -0.2652345665608608, -0.2651811672120373, -0.26519964967431464, -0.2651265679876784, -0.2650496828730392, -0.26506414401414996, -0.265254911481504, -0.26543344706711997, -0.26493247990654706, -0.2649302088284559, -0.2654092298161685, -0.2652366456049066, -0.26520624615687843, -0.2647463459946983, -0.26518377259083115, -0.2653431420663273, -0.265079771824866, -0.265336588315645, -0.2652969095949343, -0.26518865442292605, -0.2649530695341424, -0.26512423089204723, -0.2652358647467034, -0.2652391207957002, -0.265005833964826, -0.2653237192743668, -0.26543532345122284, -0.26487788005957696, -0.2652190047261775, -0.26448326358639096, -0.26493234531876103, -0.2653696627088908, -0.2649392529201375, -0.26536754950424424, -0.26480700521831063, -0.2652975733192186, -0.2653152249898751, -0.264987377278652, -0.2649279970021965, -0.2653293982770782, -0.2653825980582609, -0.2652807990945149, -0.26516588036396377, -0.2650001642390214, -0.26497332901177634, -0.2649487321132737, -0.265211425534862, -0.2654002582171833, -0.2647879700018171, -0.26525474594994175, -0.26544760167598724, -0.2650722991415717, -0.26502516676871557, -0.2650174292058666, -0.2649103920066257, -0.26551589622969085, -0.264932278242782, -0.2648602693152295, -0.26492967632985714, -0.265152837406626, -0.26528092868065767, -0.26508151631916466, -0.2648766872403017, -0.26551277476848, -0.2649871193100815, -0.26533336572162286, -0.26531198957006247, -0.264926126034811, -0.26529509567948767, -0.2650505243113114, -0.2650702168184403, -0.2650412998491675, -0.26476624012408484, -0.2652113451350034, -0.265406246097307, -0.26507057243319937, -0.26498128795441145, -0.26480707488850297, -0.2653895943817322, -0.26536572502516104, -0.2655539188046309, -0.26511587468196424, -0.2654475917557156, -0.2652336454491097, -0.26505250695439103, -0.2647112651123642, -0.2650596934648277, -0.2651845864681812, -0.26482201695525215]|
2019-05-01 07:51:04,073 | INFO : Best of geration |211| has accuracy of |0.563591| and fitness_score of |-0.264483|
2019-05-01 07:51:04,272 | INFO : Testing generation |212|
2019-05-01 07:54:26,001 | INFO : Fitness scores of this generation: |[-0.2561668508970724, -0.25606973999692995, -0.25604650378227234, -0.25589209442462485, -0.25605860159927235, -0.2559823092534273, -0.2561044981713363, -0.2560451833402732, -0.2562908169539056, -0.2560755672486171, -0.2561322836468541, -0.25577374181311335, -0.2560388813405282, -0.2563050864560189, -0.25643661144920926, -0.25602070398032994, -0.25584830887215815, -0.25581455547342163, -0.2559858112058399, -0.25631085694293204, -0.2562329507507343, -0.2560221259395499, -0.25627324324578604, -0.25608970197111464, -0.2563569865476132, -0.25605637412865084, -0.25594532349415183, -0.25593804477470206, -0.25613223603821533, -0.2561483631912223, -0.2565090894731739, -0.25582230125369276, -0.2560441824327032, -0.2559860167537305, -0.25623419154578203, -0.2559210934389591, -0.2560944485377116, -0.25649468003397835, -0.2563952662271059, -0.25590751675107526, -0.255901823120206, -0.2562033317632247, -0.25626551040814455, -0.25588770214007167, -0.2561401685155104, -0.25613458701057473, -0.256083865840751, -0.2559105993492319, -0.2560701426057408, -0.2560650129503645, -0.2557740932879286, -0.2560007407004575, -0.25608987313045467, -0.2561533076184733, -0.2561768668113115, -0.25602876033474814, -0.2559514169102822, -0.2558222735567918, -0.2562597945479417, -0.2560146260365991, -0.25602392380626676, -0.25637955557216296, -0.256286898356539, -0.2558499435605512, -0.2560646704195102, -0.2558920099466288, -0.2561126417783369, -0.25612762764602215, -0.2558208221706347, -0.25614095076934923, -0.2564881951889882, -0.2561037218910188, -0.25598374051567235, -0.2561099533183421, -0.2561627582352107, -0.2562873715377716, -0.2560490388892436, -0.2564751680977112, -0.25623456298129843, -0.255786130684229, -0.25593385958854364, -0.2560136257165886, -0.25598217293962855, -0.2560017667751584, -0.25593845975490415, -0.25587875688976947, -0.25615258400633456, -0.2560232140344179, -0.2558249218342469, -0.25580767859569126, -0.25604401497825213, -0.2560863398904999, -0.2560322183507687, -0.2563163625058052, -0.2560986305575773, -0.256038371551076, -0.2559958858760268, -0.25588623635870733, -0.256260139102612, -0.2562733623245068]|
2019-05-01 07:54:29,555 | INFO : Best of geration |212| has accuracy of |0.563591| and fitness_score of |-0.255774|
2019-05-01 07:54:29,749 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 07:54:29,752 | INFO : Testing generation |213|
2019-05-01 07:57:56,522 | INFO : Fitness scores of this generation: |[-0.25951316408100544, -0.25933116329064054, -0.2590905824733515, -0.2590969488918298, -0.2590534649608201, -0.2591471690533613, -0.2590060103412965, -0.2594058739815384, -0.2590781073636908, -0.2592845860524541, -0.25922238610600346, -0.2594383568102962, -0.2591190173062745, -0.2593317457159296, -0.2592581670785646, -0.25931286136808424, -0.2593566165992468, -0.259201097285535, -0.2594556134296777, -0.2591713977497633, -0.25966075253544596, -0.2589144157894813, -0.25900427870319576, -0.25897606554013985, -0.2592625543233641, -0.2589517254955958, -0.25950299737132737, -0.25951774101976055, -0.2594698261065074, -0.2591936363683141, -0.25908879377853544, -0.2591075553910466, -0.2589533514851882, -0.2597867667650867, -0.2592663750463019, -0.25936152520355565, -0.2596154577027843, -0.25912627581404324, -0.25886812065901593, -0.2590865287175055, -0.25952918880665904, -0.2594502458478682, -0.25922218562863053, -0.2593067231160895, -0.2596802324346437, -0.2596022557932129, -0.25917411870904256, -0.25915609230098696, -0.25937329092616973, -0.25896375846099623, -0.25902818972954295, -0.25934217900424184, -0.2596623091875444, -0.2594857534312159, -0.2592374833249389, -0.2592210712777738, -0.2594995168754695, -0.25886531628221515, -0.25911627777488344, -0.2592150201987795, -0.259346399063809, -0.2590242304765231, -0.2589870238226855, -0.25903907286628136, -0.259300580384086, -0.25908543027007597, -0.2588911327009649, -0.2592306513357394, -0.2594781526556085, -0.2590760365611537, -0.2589139576210388, -0.2587350828382919, -0.2593459809377089, -0.259420310055031, -0.2591259154691882, -0.2592741871310015, -0.25941136334471804, -0.2595181476741401, -0.2591151851116162, -0.25896674144644793, -0.25904942445179246, -0.25960460532233237, -0.2592733385497206, -0.25925801160656264, -0.25925705043336367, -0.25900787631928246, -0.2591675149346287, -0.2598373809379542, -0.25911753369884705, -0.2595226994596386, -0.2597944531680313, -0.2590295321261284, -0.25951193632917235, -0.25915547706657716, -0.25880817719999355, -0.25931857281169785, -0.2588706941644222, -0.25910783441951635, -0.25913668763212483, -0.2589879533218603]|
2019-05-01 07:58:00,036 | INFO : Best of geration |213| has accuracy of |0.561097| and fitness_score of |-0.258735|
2019-05-01 07:58:00,235 | INFO : Testing generation |214|
2019-05-01 08:01:30,525 | INFO : Fitness scores of this generation: |[-0.2573605102584073, -0.2572251509021071, -0.2573127348618443, -0.2577432403440083, -0.2571900069628987, -0.25707487369615867, -0.25759986690209213, -0.25700022830152613, -0.25745532223313644, -0.2570635727147332, -0.2570033255856117, -0.25718643229171856, -0.2573685651450736, -0.2573993631484578, -0.2581204262141051, -0.25766464949415624, -0.2573122975460767, -0.25689026834991824, -0.2569877399651187, -0.25727968886653274, -0.25724586960776974, -0.25704462139889056, -0.25747507150668975, -0.25742748598624327, -0.25725083477197597, -0.2569862077365622, -0.25683187044538275, -0.25730267967671855, -0.25709449937150697, -0.2571712657650622, -0.2572219110047081, -0.25740527562040905, -0.2573528795524892, -0.25687174073891744, -0.25731458372685656, -0.257347400398691, -0.2573402488460094, -0.25789313755448273, -0.25780196044781767, -0.2576603635754291, -0.257325578901343, -0.25708316208370363, -0.25725412804493253, -0.2572660348024497, -0.25740509942924833, -0.25735035091321296, -0.2578093245509163, -0.25809159640135537, -0.25735199133117964, -0.2569828884473839, -0.25732974368600325, -0.2572117225657633, -0.25715087202950687, -0.25759364152690717, -0.2578874444119722, -0.25746086568719023, -0.2577546674618068, -0.2571457062019703, -0.25702868262405004, -0.257344832417811, -0.2571500213202049, -0.2573172286776806, -0.25763568882827137, -0.25748554563759235, -0.25750265793439936, -0.25679696732543733, -0.2570555863162996, -0.2571666489009573, -0.2572093122685692, -0.25687339643877055, -0.2576275917974408, -0.2574731819781113, -0.2577431361416369, -0.2568095437680008, -0.2573536720319874, -0.25730347447229496, -0.2571438946480274, -0.2576715618456569, -0.2578609178703334, -0.2573834555930834, -0.257303666230886, -0.25709894278355744, -0.25723268800250515, -0.2571186892439745, -0.25725683253694714, -0.25760511686989734, -0.25756300697096535, -0.2578179170532883, -0.25704491926347894, -0.25695220015631065, -0.25703875741652343, -0.2573693621298199, -0.2572094092371618, -0.25701566119833646, -0.2577436330937764, -0.2576549803009263, -0.25748416572026617, -0.2573122251131079, -0.2571633481721323, -0.257190078179662]|
2019-05-01 08:01:34,162 | INFO : Best of geration |214| has accuracy of |0.559850| and fitness_score of |-0.256797|
2019-05-01 08:01:34,356 | INFO : Testing generation |215|
2019-05-01 08:05:02,284 | INFO : Fitness scores of this generation: |[-0.26498071430211906, -0.26492221827370893, -0.2648234366870147, -0.2647868789713689, -0.26498993220297257, -0.26506835154682323, -0.26492172945056214, -0.2653296223765757, -0.26504006799182206, -0.26540238693619256, -0.2648905663055897, -0.26496359205466175, -0.2650956332583472, -0.2649749484160285, -0.2649678089456534, -0.26525773659761365, -0.2652130987241827, -0.26532328521674864, -0.26510250213064135, -0.2650209686067503, -0.2650556788286374, -0.2652100770039082, -0.2648128413983897, -0.2653346935257403, -0.2649576679985629, -0.26499739376864045, -0.2647465892842995, -0.2649797093557971, -0.2651788222499498, -0.26497063020714984, -0.26495091095379075, -0.26492080257581524, -0.26536861810235796, -0.26529851811058275, -0.2649175004484671, -0.26473627798102867, -0.2647978638922037, -0.2652362915120337, -0.2646724232898651, -0.26503507143604366, -0.26517436849180137, -0.2651095775422882, -0.26485060859787474, -0.26473823842834165, -0.26496125083325994, -0.26507868281840075, -0.26480513265611344, -0.2648991988698141, -0.2651690208141189, -0.2653330355307117, -0.2651168840908384, -0.2650450142014437, -0.2649467892250426, -0.2650934812103771, -0.26499079927289115, -0.26496975410394963, -0.2654089495777383, -0.2651231870943513, -0.2648678394448947, -0.26486219106653375, -0.2648547271987553, -0.26498123785710753, -0.264877980492077, -0.26519955280545776, -0.2647718285983796, -0.26538755538881975, -0.2648798308634738, -0.2652369217147955, -0.26503916866733285, -0.26467906200115066, -0.2647423559282128, -0.2650331335344002, -0.26495048401237636, -0.2650755744436826, -0.2648026395454615, -0.2644782068847509, -0.26498447912866385, -0.2648482572672049, -0.26491887846181217, -0.26475830182220433, -0.26505755269657555, -0.2652773923927951, -0.2648334896534456, -0.26502234256637885, -0.2648273883848807, -0.2646589215866765, -0.264741458980903, -0.2649263909992103, -0.2651024534860446, -0.2654454912286561, -0.2650105626416947, -0.2651084088958881, -0.2650848766718463, -0.26465265136321586, -0.26517144934056086, -0.2649630294138398, -0.2652410490486824, -0.2653370696291215, -0.26507847843102106, -0.26450320647905895]|
2019-05-01 08:05:05,852 | INFO : Best of geration |215| has accuracy of |0.569825| and fitness_score of |-0.264478|
2019-05-01 08:05:06,399 | INFO : Testing generation |216|
2019-05-01 08:08:31,991 | INFO : Fitness scores of this generation: |[-0.25874583924688943, -0.2594854677159612, -0.25867219382669865, -0.258951176404953, -0.2591335157504896, -0.25919151729199946, -0.25875388923214704, -0.2591492337424581, -0.26028646999742927, -0.2599730217166063, -0.2588197807567876, -0.25919218749534795, -0.25894709579828307, -0.25936003571603355, -0.2600061344518894, -0.2592993942557312, -0.2597477396959212, -0.25886523873340794, -0.25891803114879425, -0.2589733095721501, -0.2593665981438102, -0.25943843140834716, -0.2602474751123568, -0.2589484546388068, -0.25877814412117006, -0.2584641292473165, -0.25909790449026154, -0.2586683687495022, -0.25925474168323887, -0.25951253988393924, -0.258817117723023, -0.2592670610329, -0.2590636484070522, -0.2587252360000843, -0.25855677318282244, -0.25881090593047257, -0.2594843813704281, -0.25844095256270433, -0.2595826417207718, -0.25924898585168327, -0.25860383746100635, -0.25864273200674753, -0.25857554855870035, -0.2588203093772981, -0.25917396910306884, -0.2589062155746832, -0.2597633653006903, -0.2599047507890841, -0.2595077569310258, -0.25877901193572256, -0.25820550098651796, -0.25914660690761193, -0.25854559987056547, -0.2593463415779719, -0.2589090147105659, -0.25917822100767274, -0.2599155316410995, -0.259015766454906, -0.25843716020991164, -0.2587078755367093, -0.25859924050366007, -0.25929496858178114, -0.25963432236415585, -0.2594703157936654, -0.2592692378962912, -0.25870095582996927, -0.2584969731656516, -0.2583746444015968, -0.2587836959449256, -0.25842416181796934, -0.2592528005198735, -0.25934768192651797, -0.26003458425766085, -0.25937543043276157, -0.25884549117669825, -0.25887750744819643, -0.25893359413961087, -0.25918370118955286, -0.2594520250035495, -0.2592387166110481, -0.25972637874324145, -0.25892421702059304, -0.2592857467692073, -0.25912720917201626, -0.25808884584322206, -0.25868531991795796, -0.2589959817107131, -0.2596745306108056, -0.2599658264619548, -0.25888262815591767, -0.25841724916202263, -0.25888740030730645, -0.2587626084031128, -0.25912200276444597, -0.25921274896075086, -0.25980532156258096, -0.2586972236051792, -0.25894006960275695, -0.25858433085243876, -0.25914321604298385]|
2019-05-01 08:08:35,703 | INFO : Best of geration |216| has accuracy of |0.567332| and fitness_score of |-0.258089|
2019-05-01 08:08:35,896 | INFO : Testing generation |217|
2019-05-01 08:11:59,406 | INFO : Fitness scores of this generation: |[-0.2652685263560186, -0.2644953479369481, -0.2651420558566478, -0.26509782808337046, -0.26580169684258265, -0.26497839380852617, -0.2651007405561001, -0.2652604677339098, -0.264670390024114, -0.2646313866720864, -0.2654905858769346, -0.26558838353228215, -0.26504156970562626, -0.2645941444297335, -0.26526713842776284, -0.2650623658996316, -0.26485335220448414, -0.2644440938584247, -0.26507092493387, -0.26515725068191986, -0.2649396415225309, -0.26466105559572056, -0.2656122204083115, -0.26596687144011405, -0.2653496796663721, -0.26517596554696854, -0.2661785474464075, -0.2646343891596913, -0.26444055897679497, -0.2654529269951493, -0.26544162676998634, -0.26495005019861667, -0.2650258160793959, -0.26471473740701057, -0.26509068884066683, -0.2645899836845066, -0.2649947975553683, -0.2646222885271803, -0.2652271703701114, -0.2646735968429651, -0.2649183964254844, -0.26574669060718953, -0.2652661763168686, -0.265507387447713, -0.26528668293905494, -0.26551848262993255, -0.2649370381488136, -0.2647216388390432, -0.2653180832590037, -0.26531329495989864, -0.26547278082785913, -0.2650321703200317, -0.26489590975775645, -0.26524989185345116, -0.26547648525653195, -0.2656839221122846, -0.2648081473894973, -0.26517046464616384, -0.2647326170212001, -0.2651288831560173, -0.2645346148838451, -0.26557468764521, -0.26554421448885507, -0.2660795760243686, -0.2655750640589206, -0.26552961366390115, -0.26524341895212583, -0.26512984738717627, -0.26456519000565826, -0.26470602452754977, -0.2651331741714952, -0.26459876119497405, -0.26514779550222617, -0.26478514996037555, -0.26574334469600697, -0.26568360088476495, -0.26485038129844474, -0.2650841637185557, -0.26625804819574406, -0.2650494875896036, -0.26507204784386196, -0.26475070639332726, -0.2660766146965881, -0.2645864449626771, -0.264284651122283, -0.26425701940237584, -0.2647717867621142, -0.2649827294681796, -0.26569164230752346, -0.26494114311476846, -0.2651415230029851, -0.26512421024082905, -0.2645608280132066, -0.265007572698949, -0.26605110404206744, -0.2654016458573033, -0.2649294770179103, -0.2656171462132563, -0.2655295312256362, -0.26499516210745816]|
2019-05-01 08:12:03,076 | INFO : Best of geration |217| has accuracy of |0.576060| and fitness_score of |-0.264257|
2019-05-01 08:12:03,276 | INFO : Testing generation |218|
2019-05-01 08:15:24,260 | INFO : Fitness scores of this generation: |[-0.26990265698701726, -0.26978733375960706, -0.2696728509503837, -0.26999055294721735, -0.2699854172327939, -0.26966772003866296, -0.2696307208571656, -0.2695725282252419, -0.26976544455643375, -0.2697728481143713, -0.26953401241232366, -0.26953392696804274, -0.2698908950768265, -0.2696316685600608, -0.2702259429748736, -0.26955711355834616, -0.2699956237247177, -0.27005851082503796, -0.2699052161884074, -0.2698408450894788, -0.27016204168253083, -0.2699043621108228, -0.2693336633234924, -0.26988804884547113, -0.269884511061451, -0.2698466979222847, -0.2697750508566113, -0.2698522484222171, -0.2697767581535028, -0.26971002408832895, -0.2696472131555863, -0.2700918766432533, -0.2699528605330224, -0.26985653480697497, -0.26955268254467085, -0.26969960160261275, -0.2700882402120852, -0.269849354656888, -0.2698697263338402, -0.26981646640627993, -0.26996388143914585, -0.2703965885893387, -0.2696372530989203, -0.269808789002983, -0.2697567860139351, -0.2692534921727344, -0.2698636510975513, -0.26979998805943656, -0.2697773813178726, -0.2700605034901231, -0.2697634237507979, -0.2695010102847043, -0.26941341176336886, -0.2701753242598737, -0.26980996329118223, -0.26963534859903887, -0.26978907799896074, -0.2698658722105856, -0.26978081315025393, -0.26956238679806976, -0.27022237630159246, -0.26958107320117014, -0.2695128667150058, -0.26963311309615773, -0.2697044317336643, -0.2698944416810192, -0.26971011303876546, -0.2697736492343977, -0.2697654893329623, -0.2696524191026886, -0.2700227866424065, -0.26984577720948294, -0.26984436769841935, -0.27013037178446264, -0.26982879697107803, -0.26945149946008246, -0.2700659370086357, -0.270224956612961, -0.2696364310880502, -0.26972759617309944, -0.26958010097344715, -0.2698797095640033, -0.2699895285106465, -0.26969125684277684, -0.26986677184993146, -0.269438961922538, -0.26966221815011665, -0.26976238013993875, -0.27002660495539504, -0.27021826560809914, -0.26972258613243993, -0.2694629637305351, -0.26957575357793007, -0.2696973528786033, -0.26979250857131737, -0.269981268592471, -0.26952075045190604, -0.26962887545061465, -0.2697656569527645, -0.2702695309531455]|
2019-05-01 08:15:27,779 | INFO : Best of geration |218| has accuracy of |0.572319| and fitness_score of |-0.269253|
2019-05-01 08:15:27,993 | INFO : Testing generation |219|
2019-05-01 08:19:04,327 | INFO : Fitness scores of this generation: |[-0.25865879228773814, -0.25849849755720633, -0.2589048755870345, -0.25872117665560834, -0.2584127291926882, -0.25858840138787503, -0.2586870323178306, -0.2589664259727466, -0.2586686710883705, -0.25856468033187424, -0.25865037166611454, -0.2586394918869679, -0.2586827982278491, -0.25876456150078786, -0.2588774894976765, -0.25898170428834494, -0.25907855581295225, -0.25860545923589234, -0.25867103585775364, -0.2586396322831842, -0.2584606184496535, -0.2585458071937339, -0.2588767903290939, -0.2590165073692697, -0.2586858742375344, -0.25871781490620327, -0.2587255382483625, -0.2584901258917001, -0.2584449659192203, -0.25849236978293144, -0.25870536472764866, -0.25880548407944715, -0.2585731342629725, -0.2588246945480246, -0.25880296532575076, -0.2586173698975323, -0.2585221970789537, -0.2587331261077071, -0.25875522770652587, -0.2588215415673611, -0.25874747917047614, -0.2585484195731457, -0.2588390937035839, -0.25839593183120046, -0.2585115738725581, -0.258351277007238, -0.25855636332372567, -0.2596557411265143, -0.2587873426145827, -0.258784369278049, -0.25858315661964665, -0.2587832711497242, -0.25831787027270364, -0.25881067218260034, -0.25876058780415073, -0.259113778134108, -0.2584869009974736, -0.2587629777674244, -0.258598822187537, -0.258350967454463, -0.25829934617245043, -0.2583941977392753, -0.25869890030064724, -0.2590417596953643, -0.2589190092918343, -0.258629904315511, -0.25849225043809976, -0.2585883388436606, -0.25820665279188365, -0.2588534595242544, -0.25852096150245363, -0.2595946769811946, -0.25871743532898345, -0.25867916079425485, -0.2587461193018572, -0.25861579538950397, -0.2586478421707056, -0.2586443994433586, -0.25887249987900696, -0.25876599130066635, -0.25903092347606466, -0.25862956213097194, -0.2586259461723315, -0.25853614659896285, -0.2584866284815814, -0.2585750626460472, -0.2589284818642786, -0.2587071024876823, -0.2585069868139681, -0.25899166619323616, -0.25894607482409193, -0.2583735077692203, -0.25864982384724533, -0.2584834228682206, -0.25836356603469, -0.2589306899385062, -0.25886652930817056, -0.2585427725921645, -0.2586130904517708, -0.2585035193247711]|
2019-05-01 08:19:07,861 | INFO : Best of geration |219| has accuracy of |0.567332| and fitness_score of |-0.258207|
2019-05-01 08:19:08,072 | INFO : Testing generation |220|
2019-05-01 08:22:33,185 | INFO : Fitness scores of this generation: |[-0.2693358021655253, -0.26929066606930324, -0.2692276942942824, -0.26918757262506654, -0.26913921745227914, -0.26964562090912036, -0.26951487261269774, -0.2699558240494558, -0.26916779008294855, -0.2703357495367527, -0.26990445383957457, -0.2690411393397621, -0.2692483571224979, -0.2695096432630505, -0.2691805635445884, -0.26940936345074856, -0.2690679685877902, -0.269327768736652, -0.2697210480059896, -0.2690834926973496, -0.26956236852066856, -0.2697999429223793, -0.2692118860515101, -0.2689192444884351, -0.2690586186679346, -0.2698808142649276, -0.26950455624610187, -0.2697084158126797, -0.2696207482101662, -0.2695216807669827, -0.26960347039358956, -0.2693971398153475, -0.2694900777723108, -0.2691716420863356, -0.26961785376604114, -0.2694745758016195, -0.26964302358350584, -0.26955699798251903, -0.2694678643984454, -0.2693253050957407, -0.26896752478288755, -0.2698491704517177, -0.2692866194461073, -0.2691053373206939, -0.269482306178127, -0.2698446808648961, -0.2693831020966172, -0.26905065152261937, -0.26897738203406335, -0.2695223478866475, -0.2695824366595064, -0.2693385563524706, -0.2692005351185799, -0.26923954979117426, -0.269321312595691, -0.2694026260769793, -0.26915163097104855, -0.26987899632326195, -0.2701493109177266, -0.26929702420852014, -0.26938865331134626, -0.26993014165865525, -0.26956222310130085, -0.2690249170043639, -0.26912631067846504, -0.2695137807567205, -0.269665993457394, -0.2690388715959021, -0.26973947007209065, -0.2696367937007121, -0.2694502440946443, -0.2691551996661084, -0.26930009414042744, -0.2697393841509308, -0.26945154507245334, -0.26930723094514436, -0.2695754626233663, -0.2698463584163359, -0.26931654446359193, -0.26919026132673024, -0.2692726434607591, -0.26982979247612615, -0.2704696351662278, -0.2691916034689971, -0.26910893180008444, -0.26997796930372714, -0.2696164224030716, -0.26937005900378735, -0.26941544357687236, -0.26989175437816554, -0.27006119191646577, -0.2690184772546802, -0.269192152071212, -0.2695013817133648, -0.26938005071133375, -0.26890717247234924, -0.2691698513392891, -0.2693171400842922, -0.2692615035655243, -0.269431223214737]|
2019-05-01 08:22:36,689 | INFO : Best of geration |220| has accuracy of |0.564838| and fitness_score of |-0.268907|
2019-05-01 08:22:37,232 | INFO : Testing generation |221|
2019-05-01 08:26:05,031 | INFO : Fitness scores of this generation: |[-0.25998291899106696, -0.25999288497275536, -0.2602830930752569, -0.26002297677471936, -0.26019191684040355, -0.25999761694816254, -0.26025865311475144, -0.2605198777615315, -0.26053251028297253, -0.26028236948857697, -0.2603192411298132, -0.2601227925515761, -0.2601734600919849, -0.2598644207504229, -0.25993295347142276, -0.25976947597527106, -0.26054495947640816, -0.26022936298580607, -0.2602661693384494, -0.26019177051123693, -0.2602430051347739, -0.2603329893121825, -0.2599486963414276, -0.2603398887625202, -0.26034469894243556, -0.26052121581726845, -0.2603206403027632, -0.26034082603492403, -0.2606321373669332, -0.2599376215762699, -0.26007158289723314, -0.25991936162716806, -0.26013520966202, -0.26014381283148236, -0.26039297214630197, -0.26012177006721876, -0.2601681191305808, -0.26014534025368097, -0.25997409861443255, -0.2597930351247114, -0.2603353163039845, -0.26037219032042563, -0.25995192085344765, -0.2600891348107479, -0.2605331992223847, -0.25973302884578325, -0.2601938425761948, -0.2600686273387649, -0.2603075579458716, -0.2608546983099097, -0.25993526529027394, -0.26015113433564496, -0.2602694886695951, -0.26022077757720435, -0.2599903068946147, -0.2599252768563997, -0.260580370094831, -0.2602062665404638, -0.2600736993702511, -0.2600222308185723, -0.26022882434605227, -0.26013369806270387, -0.25987119950253657, -0.2598472198118396, -0.26057535476102234, -0.2603785989187144, -0.26011377907432703, -0.2598920990724019, -0.2602409173887368, -0.26001867676754964, -0.26005994142708944, -0.2602207097479694, -0.2601573005803136, -0.26022788924796536, -0.2603095480603514, -0.2600131893351757, -0.260144828970143, -0.26004175091432635, -0.2599266422447186, -0.2598397273520077, -0.2606334018740363, -0.2604317740492174, -0.2601878726108976, -0.25995044448042937, -0.26043738786376347, -0.260195840667109, -0.2601629583066083, -0.25975288331366836, -0.2607063734157987, -0.2604501113165569, -0.25995125264094804, -0.2600990921897041, -0.26037711838613325, -0.2601558824175412, -0.25988879936919335, -0.2601237458950182, -0.26022344320705254, -0.26040527622771587, -0.26007576699203955, -0.26006834121519945]|
2019-05-01 08:26:08,561 | INFO : Best of geration |221| has accuracy of |0.568579| and fitness_score of |-0.259733|
2019-05-01 08:26:08,759 | INFO : Testing generation |222|
2019-05-01 08:29:44,396 | INFO : Fitness scores of this generation: |[-0.26331479489127607, -0.2634566875267996, -0.2634843673761534, -0.26320001497189016, -0.26344464204511947, -0.2635513179110883, -0.26339302959725225, -0.26313966104587394, -0.2636492142636053, -0.2633839755059, -0.263597476204995, -0.26340507247389644, -0.26337294354323554, -0.2631937511051896, -0.26348881225206117, -0.2634438351241245, -0.2633587880713558, -0.263123727348013, -0.26329435781533506, -0.263435795316406, -0.26307049655046555, -0.26333852430587734, -0.26336318335378084, -0.2632645222142801, -0.263498844743344, -0.2632388067220589, -0.26335531095296216, -0.2634501433297814, -0.2631751980214671, -0.2633059655976324, -0.2632870618298401, -0.26335322482595863, -0.2634632933289168, -0.26333349771566494, -0.26356075026610587, -0.2633175339932089, -0.26321557245988547, -0.26335306654113005, -0.2634085903659925, -0.26344675115511923, -0.26349719525770526, -0.2631544650116655, -0.26367626317858983, -0.26324099296957326, -0.2630993408597739, -0.2632371239577529, -0.26324240024021534, -0.2634527586524982, -0.2635693256176457, -0.26320046991074286, -0.26355050172576755, -0.26350552164604957, -0.2631081380661319, -0.26324194908888926, -0.26339106569355597, -0.26322534553226534, -0.26348370471013477, -0.2632260099942474, -0.2633006922402786, -0.263692259326186, -0.2631764177117399, -0.2632959740045247, -0.263325126632728, -0.26353052120682446, -0.2635643801747472, -0.2632843489916484, -0.2631051087916466, -0.2635926724653824, -0.263108655534738, -0.2634981318703699, -0.26348970486362394, -0.2633333475215623, -0.26359332868549307, -0.2631994416594932, -0.2634566212273014, -0.26364956490322056, -0.26322384474705685, -0.2634992892264893, -0.2636697204041168, -0.2632825138816401, -0.26341213883391995, -0.26313134840287283, -0.263256853530828, -0.26329702303382546, -0.26307423786217954, -0.2633501571516433, -0.2636523311135308, -0.2634565595244024, -0.2635018181918202, -0.26371942467649684, -0.2634672632258661, -0.26338363348157423, -0.2632200899833996, -0.26319083409619504, -0.2635001751787623, -0.26331015209487346, -0.26337471703925397, -0.2632354908936206, -0.2632411136636444, -0.2631899681573551]|
2019-05-01 08:29:47,909 | INFO : Best of geration |222| has accuracy of |0.569825| and fitness_score of |-0.263070|
2019-05-01 08:29:48,122 | INFO : Testing generation |223|
2019-05-01 08:32:59,828 | INFO : Fitness scores of this generation: |[-0.2609800457563983, -0.26123434510163346, -0.26091161367023874, -0.2608230673590081, -0.26067951302080694, -0.2608555737541232, -0.26114484602707444, -0.2614903769183367, -0.26111536017541803, -0.2606237484833559, -0.26086653053239967, -0.26118224010066693, -0.2610814718765463, -0.26105066535254234, -0.2612322085744429, -0.2613945088337082, -0.26140538534743296, -0.2607300293237361, -0.2612625426860876, -0.2617397480135922, -0.2609444408632782, -0.26096036444584875, -0.2612502268438256, -0.26112043519207484, -0.2608512364425513, -0.26072057352836475, -0.2608050628845869, -0.26090572832973763, -0.26078191025418485, -0.26117078361292595, -0.2613003450449898, -0.26081825347056037, -0.26076522859944007, -0.26082471364450244, -0.2608117286164688, -0.26149521829910155, -0.2610679230445337, -0.2616875770636001, -0.2610005468260253, -0.2613323261904404, -0.26085494195139564, -0.26098079214840475, -0.2615204987697726, -0.2612699356792275, -0.26134332448374237, -0.26107624036516164, -0.2610828635083536, -0.2610906356677218, -0.26056626559475105, -0.2607391477932576, -0.2610031039693991, -0.26116495202071804, -0.2615250767773936, -0.26138436517731073, -0.2607898691010267, -0.2605835428079143, -0.26120620643858306, -0.2607206919568074, -0.260934346758122, -0.26154150010196403, -0.2610945802458509, -0.26053020566311463, -0.26101843440116235, -0.2610176233290064, -0.26085552042878873, -0.2606291716926483, -0.26093961213873984, -0.2612285035861632, -0.2614748794829481, -0.2610097105846655, -0.2609534587987646, -0.26074577646744823, -0.26159656356906263, -0.26043701780284856, -0.260593261358259, -0.26156868954803225, -0.26044404357021034, -0.26122174887027283, -0.26082249167964966, -0.2613621258449346, -0.26097269499406023, -0.2612886511797988, -0.2607894820287238, -0.261307733418119, -0.260089653678336, -0.261345755194993, -0.26111149657761684, -0.2606658871127008, -0.2610483110341443, -0.2606430518314828, -0.2610725319932121, -0.2618311230402326, -0.2608964407417972, -0.26067304201261443, -0.26098281093039366, -0.26079349066883195, -0.2607858632264179, -0.26074575535204736, -0.26115154549804837, -0.2611543387825312]|
2019-05-01 08:33:03,344 | INFO : Best of geration |223| has accuracy of |0.562344| and fitness_score of |-0.260090|
2019-05-01 08:33:03,545 | INFO : Testing generation |224|
2019-05-01 08:36:30,916 | INFO : Fitness scores of this generation: |[-0.2564860804193366, -0.2562505334976635, -0.2564562094562194, -0.25639614785109427, -0.25634483121670654, -0.25630881333124267, -0.25678726319210754, -0.2566055450910722, -0.2564595072662335, -0.2565253206164573, -0.2564256889777819, -0.25610473331798733, -0.2560806852156316, -0.2566806312689113, -0.256435479865664, -0.2565223288216393, -0.2566600421179331, -0.2562004240249061, -0.25607649777020136, -0.25627800444572857, -0.256594043921125, -0.2565845180186846, -0.2565890600885487, -0.25630036205259576, -0.2565855671197279, -0.25657898950741775, -0.25621402152784967, -0.25610161078997135, -0.2564568244513756, -0.2567415222860744, -0.2563758040021035, -0.2566338081080402, -0.25615557490696544, -0.256726737266284, -0.25650305053457667, -0.25670264216597516, -0.2564653611667841, -0.256646614483071, -0.2566589055692448, -0.256286334014372, -0.25637237293239695, -0.25654446707464834, -0.25603624234768757, -0.25634922466166704, -0.2562160620201624, -0.25685906638375205, -0.25696260008999633, -0.25601699963779184, -0.2562648189418456, -0.25627166009588637, -0.25650668621166356, -0.2563870477918729, -0.2563999209643235, -0.256625277902222, -0.25660134579947663, -0.2561479990457581, -0.2564767019687846, -0.2564285849720549, -0.25653574230297627, -0.25650200108549587, -0.2561485296740458, -0.25669951769152727, -0.2565633559850879, -0.2562154248923991, -0.2566189410803021, -0.2564988286849949, -0.256191306022418, -0.2564565180365808, -0.25639157154465214, -0.25645725707488076, -0.25656774295912893, -0.2560970241326362, -0.2566290001504149, -0.25625283277519434, -0.2564723036126282, -0.2567611072972984, -0.25648460828515485, -0.2566051286835365, -0.2565667446844512, -0.2566674270741255, -0.2564660015944585, -0.2565432259213553, -0.25617923064215375, -0.25653281446971693, -0.256018594964359, -0.25671112966630283, -0.2565250298891307, -0.2562913123170191, -0.25694361446380204, -0.2565512939720418, -0.25642608022349517, -0.2564217600210934, -0.2563178111705607, -0.25685775643504616, -0.25663245064577017, -0.2563326817431252, -0.256398385422865, -0.25639334163760646, -0.25643314446957466, -0.2563220135687132]|
2019-05-01 08:36:34,506 | INFO : Best of geration |224| has accuracy of |0.567332| and fitness_score of |-0.256017|
2019-05-01 08:36:34,706 | INFO : Testing generation |225|
2019-05-01 08:40:03,667 | INFO : Fitness scores of this generation: |[-0.2567562587292116, -0.256521461393704, -0.25670323580571663, -0.2569606170274209, -0.25674863949611293, -0.25673831561701066, -0.2569525041692044, -0.2571406281808239, -0.2573851615554226, -0.25685018740884225, -0.2565395580867517, -0.25670270238733767, -0.256449072916575, -0.25689899047352177, -0.2566469569955501, -0.2569712052856303, -0.25730140173053306, -0.25693139324744724, -0.25691054875072317, -0.25661258515422347, -0.25658614543628183, -0.25665784104919726, -0.2566106070961141, -0.25693913170120175, -0.25712274582125955, -0.2572411227940058, -0.25637639539556406, -0.2568948427904298, -0.25651655321717715, -0.25673660304053514, -0.2567286614945242, -0.2570563255149294, -0.2571870111309782, -0.2572293995469695, -0.25686638661916705, -0.25670203698399774, -0.2564464589278267, -0.2565821543119956, -0.2565505909928832, -0.25713816064628003, -0.2572165859009272, -0.2569939455715051, -0.25692349841674716, -0.2566354271339879, -0.2567048514734962, -0.2565943403702306, -0.2568083367645059, -0.2567662955307942, -0.2569734045424414, -0.25700209995065365, -0.2569404077566279, -0.25680525367901946, -0.2567373374256808, -0.256851799837239, -0.25671607349138964, -0.2570275830617849, -0.2571835769418539, -0.25727941292465234, -0.25680358805654613, -0.25675483027502927, -0.25664244034106637, -0.25694078272940274, -0.25678270164107114, -0.2571287183112356, -0.25669612907708644, -0.2569793749864914, -0.25673615658537835, -0.2563577855047063, -0.25673743218615436, -0.25663622519289786, -0.25689828639081375, -0.25706972344334483, -0.25710531805509107, -0.2571072895776034, -0.2566664407014119, -0.25662000003341134, -0.2565606833072585, -0.2567079275119041, -0.25678378981229094, -0.2567903780691684, -0.2567388329635041, -0.25683266700769, -0.2569884321873284, -0.25694686865461047, -0.2565089233111644, -0.2564653322316598, -0.2569347026805492, -0.25685618244946956, -0.2570656742261258, -0.25681113436374836, -0.2572047060609864, -0.25673602097458187, -0.25661824024150975, -0.2569417034870427, -0.2568118986989777, -0.25666810428932546, -0.2569891008982487, -0.2573483905248475, -0.2565936144415792, -0.25693636771197725]|
2019-05-01 08:40:07,300 | INFO : Best of geration |225| has accuracy of |0.566085| and fitness_score of |-0.256358|
2019-05-01 08:40:08,028 | INFO : Testing generation |226|
2019-05-01 08:43:38,369 | INFO : Fitness scores of this generation: |[-0.25765808878174745, -0.2577106641777548, -0.2579061054940045, -0.2577056253411205, -0.2576108213209882, -0.2579269521088007, -0.25791440118188996, -0.2578909804762766, -0.2579690790379861, -0.2576387371005144, -0.25774073394307173, -0.25795280013777006, -0.257755412723884, -0.25790985482165135, -0.257792586283671, -0.2578535215502762, -0.2575505258966801, -0.257853828061377, -0.25780942808672125, -0.25779808765474255, -0.2578606297831778, -0.25776784431184313, -0.25783784121993075, -0.2578630335479376, -0.2576061223186004, -0.2577908927577247, -0.25774076305718785, -0.2578661069872389, -0.25781301397037315, -0.2579699410811326, -0.2577962877560492, -0.25773285493912945, -0.25794193467781085, -0.2578064473956783, -0.2575741100861844, -0.2579071299538236, -0.2578551548432155, -0.2578227494754785, -0.2578420811089646, -0.2577614658269059, -0.25783084027738457, -0.25759325179469633, -0.2577262741614537, -0.2579775533802219, -0.25788204406838183, -0.2580740184708931, -0.25786693668469207, -0.2576656750885837, -0.2577307485393093, -0.257696592374898, -0.25769277234154053, -0.2580674272304877, -0.2579335640352893, -0.25759774606071484, -0.2577039681903649, -0.25781493419544443, -0.2574587678873395, -0.25750049962655924, -0.25779637371201114, -0.2578579946414853, -0.25773687808309376, -0.257909790798523, -0.25787006131057916, -0.2578634658212483, -0.257890155287073, -0.2575221605987913, -0.2576743515739479, -0.25794040601216806, -0.25794531111736374, -0.2577854489865233, -0.2577542154145847, -0.2577655451245097, -0.2576369958988315, -0.25803499937137286, -0.25806127165455417, -0.2578219383396458, -0.25782754466715585, -0.25794316743471857, -0.2575855100829119, -0.2579774458604644, -0.25772055530723637, -0.25787300046987166, -0.2577950896787516, -0.25789057203086024, -0.25764864656221437, -0.25779482478916727, -0.258091651092731, -0.25780779893299344, -0.2576942851185958, -0.25758019937489085, -0.25798987423679437, -0.25795993913049836, -0.2576957060151311, -0.2577813709556179, -0.2576398316875519, -0.2578218297626439, -0.25777670387004115, -0.2576244927972675, -0.2576123194462324, -0.2580005318085991]|
2019-05-01 08:43:41,897 | INFO : Best of geration |226| has accuracy of |0.563591| and fitness_score of |-0.257459|
2019-05-01 08:43:42,092 | INFO : Testing generation |227|
2019-05-01 08:46:55,781 | INFO : Fitness scores of this generation: |[-0.26323261541664283, -0.2636325740940356, -0.2635236906521745, -0.26378583287856355, -0.2635198866511569, -0.26363210240789614, -0.2633723246567674, -0.26363776198455263, -0.26369358428361345, -0.2636541596217971, -0.2631154033031834, -0.2635250753300951, -0.26344847752724165, -0.2636777975939779, -0.2634130614354707, -0.26434276906060583, -0.26407445980337774, -0.2639275094398956, -0.26389789465663716, -0.26370655507427465, -0.263941229914021, -0.2638756822288772, -0.2631902914934478, -0.2635731355433321, -0.26383884096061533, -0.2632938454180588, -0.2634896547180425, -0.26358459918797544, -0.263269623015503, -0.26357442558442473, -0.26361322029768053, -0.2636131219552728, -0.2641075106840285, -0.26348211735854915, -0.2631155588849722, -0.2632507923366321, -0.2638736804536621, -0.2637710035688242, -0.26321017689595566, -0.26391276509568384, -0.2632811138081172, -0.2637295796021793, -0.2633871604578415, -0.26354165585478356, -0.2635468365443867, -0.2639099190264572, -0.26370362545867865, -0.2641934311474021, -0.2631100806977593, -0.263475691778109, -0.2633484297906701, -0.2634814598415264, -0.2633498152307312, -0.2638743651712172, -0.26378383370513847, -0.26355282507665995, -0.26399885275691903, -0.263611416994369, -0.26314331217943254, -0.2631127652720379, -0.26381909962894634, -0.2640493277729714, -0.2633559606325479, -0.2631676370767479, -0.2633715268796083, -0.2632488598636429, -0.2632539265738173, -0.2636367863658454, -0.2632908771172613, -0.2643105197152553, -0.2637947449030279, -0.2636792802726571, -0.2634562606113508, -0.2634712428748082, -0.26338967665162666, -0.2629266970740004, -0.26359235767334227, -0.2630310090130599, -0.2636575962710843, -0.2631258040508896, -0.26355479250299024, -0.26327897931532884, -0.26367838615042405, -0.263170923742037, -0.26384166492776684, -0.2631552311110539, -0.2637278468888483, -0.26371866559225415, -0.2635636280768763, -0.26372448750484134, -0.2631971551207218, -0.2633709102028051, -0.2639096305956916, -0.2637653978150568, -0.26383877108021386, -0.2634569399676415, -0.2633344641701044, -0.26320611584333725, -0.26341694761626094, -0.26315716224372704]|
2019-05-01 08:46:59,245 | INFO : Best of geration |227| has accuracy of |0.563591| and fitness_score of |-0.262927|
2019-05-01 08:46:59,453 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 08:46:59,456 | INFO : Testing generation |228|
2019-05-01 08:50:27,371 | INFO : Fitness scores of this generation: |[-0.25907199287107396, -0.2589163024673721, -0.25897137649502594, -0.2588905416491304, -0.2588009153567981, -0.2586439795024216, -0.25908996025748904, -0.2591415366941342, -0.25919696186412344, -0.25892257083383774, -0.25899596601558594, -0.25919804659809575, -0.25949952173407365, -0.25881310091626347, -0.2586479009463761, -0.2587800623854223, -0.2588590656025828, -0.25912091355967987, -0.2588069316591227, -0.2590162433829148, -0.2584923237645194, -0.25882909602607523, -0.258950375373317, -0.2589765292875116, -0.2589679406151632, -0.25909771575154034, -0.2587739548394275, -0.2588350827128608, -0.2586862405549351, -0.2587493680687336, -0.2588404573935984, -0.2587999273869819, -0.2592027605015753, -0.2594428656617579, -0.25879888443022053, -0.2591988246337949, -0.2591238542249774, -0.2586583012823939, -0.2587779502495916, -0.2588813245649291, -0.2588687442699681, -0.2592676448062436, -0.25919236888211417, -0.2589166453289786, -0.25919208521007825, -0.259082834347875, -0.2590148682838363, -0.25915662838472964, -0.2590431368969443, -0.2593613049342274, -0.2589853399726342, -0.25878283657486395, -0.2591064363552003, -0.2588306660232106, -0.25868965010872125, -0.2589500956237316, -0.2591074924283041, -0.25929102954301664, -0.2590407106330136, -0.25892551203873165, -0.2588353366863429, -0.25858555471623174, -0.2588544053163037, -0.2590421892515796, -0.2587775660466019, -0.258935915664212, -0.25928424382815785, -0.25897291878596324, -0.25899970549104273, -0.25885278513670634, -0.25898088985913975, -0.2590392563274146, -0.25901992664695783, -0.259272080288375, -0.2592808444021804, -0.2588462706935439, -0.2591880600390992, -0.25884932447691816, -0.25858325270474125, -0.25906517661713624, -0.25886527894059597, -0.2592704565910244, -0.25898488141949133, -0.25905107021912893, -0.2594661413481807, -0.2588434947815446, -0.2590435505494434, -0.25880130761222586, -0.259106616134182, -0.2592478797960414, -0.259104439340179, -0.25887431947301687, -0.25935391734112934, -0.2586958842108177, -0.2588002635970255, -0.25886138150867977, -0.25925371336198116, -0.2590553451713413, -0.2588667081860945, -0.25907057788337173]|
2019-05-01 08:50:30,910 | INFO : Best of geration |228| has accuracy of |0.564838| and fitness_score of |-0.258492|
2019-05-01 08:50:31,106 | INFO : Testing generation |229|
2019-05-01 08:54:01,600 | INFO : Fitness scores of this generation: |[-0.25533321484087323, -0.2555088686667653, -0.25551490437473007, -0.25568157862318625, -0.2552552736336642, -0.2554527711848615, -0.25499609258308664, -0.2552205015625497, -0.25514243023820443, -0.2551061423698274, -0.2550326933365057, -0.2556646561563605, -0.255808881062879, -0.25557962184888694, -0.255383900319389, -0.2548786138052201, -0.2550269127875665, -0.254961293296452, -0.2549293681339856, -0.2561931891901658, -0.25605028787068407, -0.2555751828864069, -0.25576772187212515, -0.25565406020128295, -0.2555993319738029, -0.255360729662892, -0.25590285363763865, -0.2554920555931507, -0.25565346297454516, -0.25571161046279933, -0.2555348808025763, -0.2550785757724208, -0.2552646751647735, -0.2546561618842701, -0.2551604192740846, -0.25574757965287753, -0.2555995515667566, -0.25537230732417343, -0.25568813298991805, -0.25521085459997156, -0.25534879160989626, -0.25508336139590826, -0.2557253303504226, -0.2556741048302194, -0.25484709622639634, -0.25539992474290013, -0.25575801854086394, -0.25535120039489795, -0.25505104011828356, -0.2550566649869724, -0.2555578745139314, -0.25525708671646935, -0.255347680150479, -0.25570621486544215, -0.2553454758703905, -0.25539547800034185, -0.25503244670507536, -0.25490511331227744, -0.2553930215217886, -0.25557256920306204, -0.25537360611528453, -0.2555979001443378, -0.2552938315832969, -0.2549512250195242, -0.2554210271575663, -0.2551945188454669, -0.2553951272378267, -0.255449314961339, -0.2550556959000358, -0.25601799404463754, -0.2552536947302299, -0.2553548944075115, -0.255425893847305, -0.2552381225446663, -0.2554567257464916, -0.2553828009284369, -0.2554056091965622, -0.2552083162584714, -0.25543481063331314, -0.2553546160754591, -0.25550556399247826, -0.25516551257950243, -0.2553863678533252, -0.25603126665153125, -0.25541410995985414, -0.25552426542189255, -0.25557311067093325, -0.25521696407606104, -0.25502231550885507, -0.2549008023424117, -0.25532131174413286, -0.2555330395895262, -0.2556719297229654, -0.25589140436240154, -0.25546544446016695, -0.25532153294031373, -0.25503887818394716, -0.25501678505353015, -0.2548275830722091, -0.25516354314761586]|
2019-05-01 08:54:05,074 | INFO : Best of geration |229| has accuracy of |0.567332| and fitness_score of |-0.254656|
2019-05-01 08:54:05,274 | INFO : Testing generation |230|
2019-05-01 08:57:36,752 | INFO : Fitness scores of this generation: |[-0.25667115587139455, -0.256751986539241, -0.25687239272487944, -0.25674691308814634, -0.25682051745067347, -0.2567730139723348, -0.25697885309298013, -0.2572057075619288, -0.25708808713557385, -0.25699397284550357, -0.256692733510663, -0.25682281365304466, -0.2563813210762653, -0.25666098219832195, -0.2570201974861401, -0.257076376133768, -0.2568030387265576, -0.2566514706693564, -0.2572040297014197, -0.2571243033581173, -0.2570531079347191, -0.2568321261926205, -0.2570681566942189, -0.25687992126261655, -0.2567514906838997, -0.25675985933988776, -0.25685139315849315, -0.25663481273806793, -0.25655474440543513, -0.2565653275071141, -0.25710779706022585, -0.25699098343701704, -0.25713335652531627, -0.25704685773226815, -0.256670030070744, -0.25695624242943177, -0.2567941549307702, -0.25654321175670297, -0.2569705483839684, -0.25678489980419067, -0.2568089190627291, -0.25676246421648463, -0.25688339473865285, -0.2570055486819998, -0.25689477480154266, -0.25652697472433045, -0.2572514302644533, -0.25656063460402473, -0.2572218023010136, -0.2569679259332185, -0.2566946816505845, -0.25660948310930703, -0.25697462962255446, -0.256528114832144, -0.2567057610684654, -0.2569462413333126, -0.2569431657234008, -0.25675719734729363, -0.25692749563156536, -0.25670530188739094, -0.25722528004769196, -0.2570206807651061, -0.2564982438620014, -0.25699122996674373, -0.25657845397585444, -0.2568926893149045, -0.2568191179295176, -0.2570200523150336, -0.2567273200172739, -0.2567613456974325, -0.2568521992037796, -0.2564528545563164, -0.25702248371343844, -0.25671818016730635, -0.256872610169178, -0.25698754156578035, -0.25677030774735915, -0.2565821441178469, -0.257099206126023, -0.2567976681227537, -0.2567878526510652, -0.2568156852857354, -0.2568379527309916, -0.25680979729927694, -0.25662897493421416, -0.2569067863152199, -0.25692613053157976, -0.25710779575957465, -0.2570059993934795, -0.25681947228015495, -0.2568211853504181, -0.25682074816775896, -0.25684983356506963, -0.25688085174027997, -0.2565931962732597, -0.2574695403838076, -0.2570904771896572, -0.25690254916235344, -0.25675949560817574, -0.25695916854638823]|
2019-05-01 08:57:40,265 | INFO : Best of geration |230| has accuracy of |0.562344| and fitness_score of |-0.256381|
2019-05-01 08:57:41,049 | INFO : Testing generation |231|
2019-05-01 09:00:54,012 | INFO : Fitness scores of this generation: |[-0.2650149232875448, -0.26506448991063486, -0.2653635169020935, -0.26526945656457307, -0.2652029238886252, -0.2656101774085652, -0.2654402001222282, -0.26565979487430197, -0.2652808976588443, -0.26522968447185347, -0.2653218415535165, -0.26524563522818473, -0.2652311766055382, -0.2652760172835632, -0.2652456483135371, -0.2653083843926627, -0.26529811873196174, -0.26529040903832973, -0.26570740768711154, -0.2651287312664423, -0.26535484442627866, -0.2658329988817182, -0.2655280640554151, -0.265437331778399, -0.26584310273367845, -0.26545680676023087, -0.26554530490067296, -0.2651616285340698, -0.26535168099910655, -0.26568294695544287, -0.2648738329253759, -0.2650451703389793, -0.26577160310007386, -0.265284666989712, -0.26552740857725676, -0.2652373651125445, -0.2653246795762208, -0.26553225033057265, -0.26480053466108827, -0.26571930215713824, -0.2653728656658121, -0.2650714863660949, -0.26605551466489896, -0.265170002525503, -0.265813881527755, -0.26506028536209975, -0.2650155546125637, -0.26467728660922907, -0.265475833439043, -0.26605399001958985, -0.2650668719635711, -0.26546579633967327, -0.26503680286139997, -0.2652755466143905, -0.2652243526807376, -0.2648875852848621, -0.26496851536475946, -0.265080197233296, -0.2655480618172504, -0.2655370838983377, -0.26512769590955176, -0.26516621267311347, -0.265316537258934, -0.2651377654629012, -0.2656056075654131, -0.2662288821527529, -0.26588797690328825, -0.26542429133125617, -0.2649334463321494, -0.26523363503773395, -0.26493598344939356, -0.26556553226144447, -0.264859646270538, -0.26566299444471614, -0.265636682510376, -0.2650232538148559, -0.26527779239519883, -0.2649043689498127, -0.26537129968923573, -0.2648077048577469, -0.26518245211422325, -0.265630608658726, -0.26563073501596135, -0.2655979069796475, -0.26554711321566965, -0.26560545371164435, -0.2648352531561307, -0.2652437888100253, -0.26572577808073916, -0.26559244272095556, -0.26555313466826536, -0.26515833142878237, -0.2657599200708954, -0.2652536447896718, -0.26507776647056785, -0.26490557285987665, -0.2656537439076075, -0.26543037625069316, -0.26526878517647084, -0.26511657249535536]|
2019-05-01 09:00:57,463 | INFO : Best of geration |231| has accuracy of |0.573566| and fitness_score of |-0.264677|
2019-05-01 09:00:57,668 | INFO : Testing generation |232|
2019-05-01 09:04:15,420 | INFO : Fitness scores of this generation: |[-0.25747781459649216, -0.25793354554686226, -0.25766978840990434, -0.25779292766622036, -0.25809296069077964, -0.2579143836691573, -0.25749875120074434, -0.2580590805106662, -0.2579713891206701, -0.2576873390360809, -0.2579860235843479, -0.25773760058274703, -0.2577515080238481, -0.25754107377293806, -0.2581262925746998, -0.25766988170413097, -0.25792400491643874, -0.2580833173806743, -0.2577693221606883, -0.2577128739880899, -0.25744411993671107, -0.25744104063188705, -0.2579051842245456, -0.2578549697802574, -0.2577546937905523, -0.25865980019720686, -0.2576553755550351, -0.2574645051279584, -0.25764561322825213, -0.2576650943340062, -0.2580154053122681, -0.2577516647399382, -0.2580236022116575, -0.25840110602306005, -0.25764359454990976, -0.25776302231394727, -0.25789828899674355, -0.2577490800801231, -0.257485749473583, -0.2575937985638474, -0.25780209408663696, -0.25806555439106305, -0.2577446243527633, -0.2573624783306088, -0.2576784493290019, -0.2580314951168524, -0.25796824753214415, -0.25762263462210094, -0.2576214673936577, -0.25796079465771393, -0.2580394643314016, -0.2574041799919025, -0.25833084666280715, -0.25784271804902587, -0.2577541315387475, -0.2576959228228458, -0.25766631843550647, -0.2578036322857042, -0.2578384707803312, -0.25755841352404496, -0.25756442200142965, -0.257777878421454, -0.2583799332415315, -0.25766934841415995, -0.2578136584208239, -0.25795920410321543, -0.25791623568562866, -0.2578360277953635, -0.25795121606522525, -0.25761432858177413, -0.25793356652405514, -0.2583008432360289, -0.2579391959761341, -0.2577444584438299, -0.257853267178132, -0.2577538241825989, -0.25762057927744647, -0.25779154003717086, -0.25820865314869706, -0.25769837769722403, -0.2582012770213756, -0.2582212498479388, -0.258018957777113, -0.25733941993057796, -0.2575816349963604, -0.2575637615700586, -0.2579614931562112, -0.25796419515172686, -0.25779156173228096, -0.2579237238430669, -0.25788893815913577, -0.2577682653339153, -0.25768965965992696, -0.2574373586967885, -0.25806490800285453, -0.25762544209892685, -0.25773632503634475, -0.25805961725014215, -0.2579525758180719, -0.25771496554379175]|
2019-05-01 09:04:18,924 | INFO : Best of geration |232| has accuracy of |0.572319| and fitness_score of |-0.257339|
2019-05-01 09:04:19,133 | INFO : Testing generation |233|
2019-05-01 09:07:32,798 | INFO : Fitness scores of this generation: |[-0.2698289453983307, -0.2690678777583137, -0.2690435709428539, -0.26909513479708796, -0.2692225961276109, -0.2692893458404409, -0.26962562574257676, -0.269277597475713, -0.26908440534122274, -0.26881998705078863, -0.268817541194334, -0.26943262146085345, -0.2696570860967686, -0.26939471362988293, -0.2691724506469905, -0.2690727070258023, -0.26906518661376716, -0.26917273834011995, -0.26914164336136764, -0.2696464112871028, -0.269954179043993, -0.2695499262941979, -0.26966919771926656, -0.2688399581190205, -0.2692058655066961, -0.2694448184615818, -0.2691023481470667, -0.2696176654751214, -0.26992667263673953, -0.2696177908824676, -0.2693099353197749, -0.2688295672836502, -0.26921190241387233, -0.26934557223443967, -0.26917419297236506, -0.26903696412436884, -0.26966536112220074, -0.2695983549647769, -0.26881936042726146, -0.26922896576712824, -0.2690325519860927, -0.26943343939772924, -0.26917754121421733, -0.2695623657938926, -0.269737004613959, -0.269513117791875, -0.26959231909061016, -0.26897245939930764, -0.2690940935752214, -0.26924697881761417, -0.26925765228436765, -0.269214345429551, -0.26955459157143763, -0.26958237513512423, -0.2693531896977119, -0.26900036299869134, -0.26893874279754415, -0.2692807291471359, -0.268832639970234, -0.2696976218521078, -0.26957310330723144, -0.2693700853935354, -0.26923496290344096, -0.26903738337125066, -0.2687873224658404, -0.2692278062656806, -0.26928833741662406, -0.2694586432269376, -0.26960850366273414, -0.26950008544806175, -0.26906060439048646, -0.26945856022462894, -0.2690298783510562, -0.2691620942108346, -0.2691445205509146, -0.2695000706243763, -0.2697187489612057, -0.2695931913121321, -0.2692655152423336, -0.26923501909915454, -0.26921798296569743, -0.2693104872567195, -0.2690138269854997, -0.2694113994698384, -0.269807714471784, -0.2694536877256952, -0.26914610327633043, -0.2691935802869615, -0.269422552717827, -0.269295652982887, -0.26950095384744877, -0.2695411463854011, -0.2697612364845838, -0.2698667622728199, -0.26945208490824574, -0.2691014776300103, -0.26890825367882926, -0.26945278683816126, -0.2690518983418648, -0.26941103502410746]|
2019-05-01 09:07:36,277 | INFO : Best of geration |233| has accuracy of |0.571072| and fitness_score of |-0.268787|
2019-05-01 09:07:36,469 | INFO : Testing generation |234|
2019-05-01 09:11:04,950 | INFO : Fitness scores of this generation: |[-0.2542171791844641, -0.25414765798683076, -0.2542419619472091, -0.2541814837154225, -0.25406556190831464, -0.25391714302687785, -0.2541306495316373, -0.25413470836285484, -0.2539665694062102, -0.2545571998225135, -0.2540192941014488, -0.2543330951526236, -0.2537311308224941, -0.25392572323289014, -0.25403329320174706, -0.25403061243444786, -0.25455546564452797, -0.254464783572541, -0.254109380137286, -0.2538694950450101, -0.2541557203182782, -0.2535909197416154, -0.2540092267657282, -0.2542630227767935, -0.2541671253910704, -0.25493479399081337, -0.2542742203558076, -0.25404138372903373, -0.2545303562302052, -0.25406148604425627, -0.2542192084713483, -0.2542009864416959, -0.2541521101592735, -0.25383571451420445, -0.25418389566453803, -0.2542182641166939, -0.2542814517544316, -0.25395819728096025, -0.25404864791639115, -0.2547677523960471, -0.2542447204744725, -0.25424035938756584, -0.2544015017701744, -0.2545278361112229, -0.2541957614993588, -0.25400274135198114, -0.2535911382439224, -0.25394154933706675, -0.2538662073154159, -0.25455962746573385, -0.2540968058948774, -0.2538999230411025, -0.25437706027182533, -0.2543936873314376, -0.2539506483135672, -0.2541561176963073, -0.25410610155228835, -0.2539205406255037, -0.25433581430045343, -0.2543541611620864, -0.2539325261536185, -0.2541991881279593, -0.25420143254971456, -0.254230898725797, -0.2542511124341506, -0.2542501256827577, -0.2543029562102241, -0.2542917963629685, -0.25421333926747236, -0.2541652912712954, -0.2541721803242368, -0.2538175929103461, -0.25389834799763245, -0.25394568096462744, -0.25430481032865493, -0.2540939227004008, -0.25389212255611365, -0.2537954745823215, -0.2539730419783899, -0.25447438651105003, -0.2543891126028653, -0.25420623781891966, -0.25422378198476026, -0.2540268016401125, -0.2540146996625638, -0.254111320696869, -0.25402181467354173, -0.25410151570190953, -0.25437775233653637, -0.2541114501320418, -0.2540329232472095, -0.2540831463289162, -0.25417273938037976, -0.2541813612828686, -0.2541884056806729, -0.25393805322806917, -0.2540641431365247, -0.2549536246407337, -0.2540291033803634, -0.254081790838146]|
2019-05-01 09:11:08,423 | INFO : Best of geration |234| has accuracy of |0.573566| and fitness_score of |-0.253591|
2019-05-01 09:11:08,629 | INFO : Testing generation |235|
2019-05-01 09:14:31,363 | INFO : Fitness scores of this generation: |[-0.26146886264905334, -0.26096855801006313, -0.26158688294526655, -0.2615251682436792, -0.2611543401289964, -0.26116779138101265, -0.2612547831668053, -0.26152218838979024, -0.2614311131910654, -0.2616376707883319, -0.26141205630847253, -0.26119975763140246, -0.2614350519143045, -0.2612814390595304, -0.2610215978929773, -0.2617525796085829, -0.26144565353752114, -0.26164435196551494, -0.2613454645179445, -0.2613174150028499, -0.2612867969291983, -0.26100722362753004, -0.261229879266466, -0.2616257252666401, -0.26151102309813723, -0.26175471185706556, -0.26151792325254064, -0.26158842544828076, -0.26105652484693564, -0.26111054775537923, -0.2616173913993407, -0.26137705039582215, -0.26183665022836067, -0.26164110691752285, -0.26142287800030317, -0.2614617513027042, -0.2612607690243749, -0.26121645807870664, -0.26137241804099176, -0.26135852860170417, -0.26181953493505716, -0.2614375105331419, -0.26138855736644473, -0.261201957880985, -0.26108803755778354, -0.2610861398570705, -0.26123869730508886, -0.2612764540244825, -0.2613435954845045, -0.26130165392532945, -0.2613263766397722, -0.26119981207011733, -0.26117459920351394, -0.26089377551397774, -0.2611152643803507, -0.26128671878541354, -0.26157464712741785, -0.26145621201430913, -0.26121172976854723, -0.2611569507862441, -0.2612188773782691, -0.2609327101818053, -0.26152492480468936, -0.2614056207239628, -0.2613400671107229, -0.2613244400417898, -0.2613751979661174, -0.2613665012468118, -0.26109200036444236, -0.26111155771650374, -0.261300612881314, -0.2612272058468079, -0.262182506499812, -0.26170547696528956, -0.2614498218317749, -0.26131438446464017, -0.26142199903551955, -0.2613207936810795, -0.26140576849866193, -0.2614642986736726, -0.26149961093324237, -0.2617352386150742, -0.26132360465999227, -0.26152610634744633, -0.2613060403527925, -0.2612992962822318, -0.2615907712315675, -0.2611840807076078, -0.26178733989945613, -0.26153505966067314, -0.26161285559646785, -0.26162104788818397, -0.2609954833606025, -0.26132431233418174, -0.2611643523996463, -0.26111824810504913, -0.26123056016513146, -0.2612913241609931, -0.26120702009939123, -0.26144489750731736]|
2019-05-01 09:14:34,881 | INFO : Best of geration |235| has accuracy of |0.571072| and fitness_score of |-0.260894|
2019-05-01 09:14:35,453 | INFO : Testing generation |236|
2019-05-01 09:18:09,775 | INFO : Fitness scores of this generation: |[-0.2615744671448062, -0.2615891047086535, -0.2616381931461786, -0.2617006765147318, -0.26160317935697014, -0.2618980177631431, -0.2616762231346881, -0.2615200490525478, -0.26158063451108615, -0.26181572242531664, -0.26161078899879936, -0.2618347570537208, -0.2614942056786912, -0.26172584964639556, -0.2619952510773333, -0.2616661523116554, -0.2617377899085585, -0.26157033800932883, -0.2617657499586208, -0.2615056308111771, -0.2616243222078612, -0.2615993790501772, -0.2620873461355486, -0.26171657691095274, -0.2615386302625097, -0.2615775144596287, -0.2617583254596157, -0.2618002105171415, -0.2613782866822608, -0.26187116775839536, -0.26202535760592366, -0.2615714066797546, -0.261611353811173, -0.2614210404938992, -0.26145095970923926, -0.26170601610053273, -0.261570114118014, -0.2616981997484093, -0.2619467773081477, -0.2618290060627271, -0.2614923740396301, -0.2616246571556883, -0.26134918498803233, -0.2616876195956619, -0.26169279738439927, -0.26172649329630804, -0.26180342224630615, -0.2617658634591424, -0.26179428653041475, -0.26145280321268877, -0.2617751283883465, -0.26174457997740264, -0.26171294506753234, -0.2615953532105706, -0.26191309948920327, -0.26168935205171856, -0.26129748388632423, -0.2616383056162037, -0.26172609222343823, -0.2616142512115592, -0.2614894392221911, -0.2618776126018061, -0.2620331618200755, -0.26191506050572694, -0.2615337567073333, -0.2615998218262356, -0.2616508129705998, -0.26181259695691317, -0.26140632453024604, -0.26164328628829525, -0.26151209434031564, -0.2615778616548606, -0.26176767021125796, -0.26126688111441226, -0.26198255402039433, -0.2616325797766192, -0.2616383891046558, -0.2615218378940878, -0.26160360945701017, -0.2614015213680092, -0.2616805003424753, -0.2614094919571824, -0.261717685971368, -0.26185592512897643, -0.26139112119648417, -0.2616422029720526, -0.2618783392386016, -0.2614937781776909, -0.2616616313960152, -0.26142417944995106, -0.2614748404615512, -0.26170783326704616, -0.2618058026201722, -0.2615490912698036, -0.2618097595350687, -0.2620776741693624, -0.26164978509141884, -0.26160933574344714, -0.2616573238752171, -0.2617050869027871]|
2019-05-01 09:18:13,406 | INFO : Best of geration |236| has accuracy of |0.567332| and fitness_score of |-0.261267|
2019-05-01 09:18:13,600 | INFO : Testing generation |237|
2019-05-01 09:21:40,248 | INFO : Fitness scores of this generation: |[-0.2666909684036577, -0.26647538268169735, -0.2669681446250628, -0.2664700616740252, -0.2666624453332689, -0.2668276254664759, -0.2663171247844278, -0.26678888251988364, -0.26664740557798217, -0.26686056462227575, -0.26669381120199126, -0.26671930062316435, -0.26700492523495784, -0.26684028802126863, -0.2665805516210109, -0.26630470582071786, -0.266824400748843, -0.26739444064591245, -0.26699636099499024, -0.2669630982918364, -0.26659738647676734, -0.26690058440380915, -0.2665138880556807, -0.26664211454182646, -0.26697134940196904, -0.2663954422421699, -0.26670661312433536, -0.2664506758313206, -0.26668963203658347, -0.2668688093513758, -0.26646864058907593, -0.266438782408483, -0.2667127797155001, -0.26685258550365476, -0.26660112387652524, -0.2666631500022931, -0.26707165613951767, -0.26703131068361935, -0.26622542357019363, -0.2664755358264781, -0.26695229783835495, -0.26669890781001937, -0.26683150810723566, -0.26676445208423427, -0.266638064785692, -0.26656201861297224, -0.26660373311456587, -0.26644539337572004, -0.2667257123281582, -0.26688194250731767, -0.26652426854537353, -0.2666062611394652, -0.26719492857570293, -0.2666211326191895, -0.2664668398326911, -0.2663721600056468, -0.26683676334676565, -0.26671060694975285, -0.2666422551662479, -0.26658003905973876, -0.2665025371898023, -0.2666564227504065, -0.2663344220475075, -0.2665050321735218, -0.266763133869264, -0.2669241039470648, -0.2667670578417117, -0.2666097654140005, -0.2667895104231529, -0.2668971239263607, -0.2664208801558418, -0.2664268654676733, -0.2667806956551467, -0.26671839422649807, -0.26689586918332764, -0.26641885224436707, -0.2666269756146591, -0.26687588787426914, -0.2663643436275259, -0.26645465029610527, -0.26688798065603214, -0.26682726252108013, -0.2670295584375841, -0.26652840081986046, -0.2667937931353158, -0.2667740380145241, -0.26654080931771024, -0.2663026949253299, -0.2667682888250668, -0.26683868626125057, -0.26672962100063025, -0.2665209373563456, -0.26687125099063014, -0.26699406503180806, -0.2664437993261162, -0.26652701828698266, -0.2669492698933956, -0.266967557739264, -0.2669680434228537, -0.26665883864799556]|
2019-05-01 09:21:43,799 | INFO : Best of geration |237| has accuracy of |0.569825| and fitness_score of |-0.266225|
2019-05-01 09:21:43,999 | INFO : Testing generation |238|
2019-05-01 09:25:01,686 | INFO : Fitness scores of this generation: |[-0.2549982723907231, -0.25502929430198207, -0.2552656078353038, -0.2551225068491344, -0.25502677881660024, -0.2552601760287095, -0.25537068831949455, -0.2551754271248952, -0.25499044825405137, -0.2552697059789621, -0.2551569211079391, -0.2551910823172785, -0.2552248949079156, -0.2551496046197746, -0.255323264554161, -0.2554551173979022, -0.2551481298012197, -0.2553744419526304, -0.2551406014354803, -0.25508203086282205, -0.2550224129024988, -0.2549758656389624, -0.2552083330330278, -0.25496345733212444, -0.25532199316258297, -0.25515790256652465, -0.255191516667208, -0.2551892258524174, -0.25507879754508134, -0.2548293117816676, -0.25501806837615826, -0.25504836632882527, -0.25519852505990065, -0.255253877143906, -0.2551986062505081, -0.25528726071804003, -0.2553849849476059, -0.2550764709819185, -0.25524904347388605, -0.25526469034179955, -0.2553428109496508, -0.2551130065390392, -0.2553117780652271, -0.2553434788712279, -0.25528260539347775, -0.2549783673943747, -0.25526319096425715, -0.25504102108340165, -0.25506029705975336, -0.25553546588250775, -0.25519759169224526, -0.25519661439589464, -0.25503581046986035, -0.25478110924597375, -0.2554538228347483, -0.25509716359562856, -0.2551308822747153, -0.2553969937339515, -0.2550692703516336, -0.25526750453510194, -0.2550417816552459, -0.2550620104049973, -0.25495795127198084, -0.255166548158987, -0.2549713269650864, -0.25538763666960174, -0.25513900465083095, -0.25538326495359714, -0.2550404028924229, -0.25505925078922487, -0.2549860119423238, -0.25493720283747584, -0.2547942046999499, -0.25537758957518053, -0.2551807246408555, -0.2553017532234469, -0.25530458837207026, -0.25526465223302575, -0.2550957547782266, -0.25498422673996873, -0.2551153097504428, -0.25518508830266534, -0.2551434622962645, -0.25526719773695, -0.25501421713771383, -0.2550394061903279, -0.25481956537718353, -0.2552734858467905, -0.2553234456744419, -0.25503173895729786, -0.25520241981261876, -0.2551851606282531, -0.255342561666017, -0.2549855569073482, -0.2551230650751017, -0.25519341448414284, -0.25512768931804, -0.2553577214083043, -0.25523517933981593, -0.255212729253965]|
2019-05-01 09:25:05,281 | INFO : Best of geration |238| has accuracy of |0.569825| and fitness_score of |-0.254781|
2019-05-01 09:25:05,475 | INFO : Stuck at local maximum, expanding mutation rate and chance by stuck multiplier of |1.250000|
2019-05-01 09:25:05,478 | INFO : Testing generation |239|