-
Notifications
You must be signed in to change notification settings - Fork 1
/
save.txt
63031 lines (63031 loc) · 515 KB
/
save.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(lp0
I60
aI1100
aI600
aF1.0
a(ipopulationk
Population
p1
(dp2
S'food'
p3
(lp4
(ipopulationk
Food
p5
(dp6
S'y'
p7
cnumpy.core.multiarray
scalar
p8
(cnumpy
dtype
p9
(S'f8'
p10
I0
I1
tp11
Rp12
(I3
S'<'
p13
NNNI-1
I-1
I0
tp14
bS'\xe8|~\xbd\x17\xe1\x80@'
p15
tp16
Rp17
sS'x'
p18
g8
(g12
S'\xd5\r%\xf4\xbd\xd7{@'
p19
tp20
Rp21
sS'pop'
p22
g1
sba(ipopulationk
Food
p23
(dp24
g7
g8
(g12
S'\xb1\xc6\xf3\x0e8\xeav@'
p25
tp26
Rp27
sg18
g8
(g12
S'd;3\xc9p\x9f\x87@'
p28
tp29
Rp30
sg22
g1
sba(ipopulationk
Food
p31
(dp32
g7
g8
(g12
S'\xa8\xf4\xcdk\x9e\x14c@'
p33
tp34
Rp35
sg18
g8
(g12
S'\xaa3\x02\xc7\x84\xcb\x86@'
p36
tp37
Rp38
sg22
g1
sba(ipopulationk
Food
p39
(dp40
g7
g8
(g12
S'\x87s<\x13-\xb1k@'
p41
tp42
Rp43
sg18
g8
(g12
S'\x95\x81\x86&a\x19\x89@'
p44
tp45
Rp46
sg22
g1
sba(ipopulationk
Food
p47
(dp48
g7
g8
(g12
S'\xb2\x1a\xbf8l\xad\x81@'
p49
tp50
Rp51
sg18
g8
(g12
S'\x91\r\xc4\x01\x1b]\x85@'
p52
tp53
Rp54
sg22
g1
sbasS'time_since_last_death'
p55
F0.10666666666666667
sS'bots'
p56
(lp57
(ipopulationk
Bot
p58
(dp59
S'nnet'
p60
(ineural_network
NeuralNet
p61
(dp62
S'model'
p63
ccopy_reg
_reconstructor
p64
(ckeras.models
Sequential
p65
c__builtin__
object
p66
Ntp67
Rp68
(dp69
S'outbound_nodes'
p70
(lp71
sS'container_nodes'
p72
c__builtin__
set
p73
((lp74
S'activation_560_ib-0'
p75
aS'dense_1680_ib-0'
p76
aS'dense_1679_ib-0'
p77
aS'dense_1678_ib-0'
p78
aS'dense_1678_input_ib-0'
p79
atp80
Rp81
sS'supports_masking'
p82
I00
sS'_feed_input_names'
p83
(lp84
S'dense_1678_input'
p85
asS'inbound_nodes'
p86
(lp87
g64
(ckeras.engine.topology
Node
p88
g66
Ntp89
Rp90
(dp91
S'outbound_layer'
p92
g68
sS'output_tensors'
p93
(lp94
g64
(ctheano.tensor.var
TensorVariable
p95
g66
Ntp96
Rp97
(dp98
S'index'
p99
I0
sS'_uses_learning_phase'
p100
I00
sS'name'
p101
NsS'_keras_shape'
p102
(NI4
tp103
sS'auto_name'
p104
S'auto_478989'
p105
sS'tag'
p106
g64
(ctheano.gof.utils
scratchpad
p107
g66
Ntp108
Rp109
(dp110
S'trace'
p111
(lp112
(lp113
(S'/home/shriya/Desktop/CS275/bot-bot/populationk.py'
p114
I165
S'_move_forward'
p115
S'self.pop.eliminate(self, replace = True)'
p116
tp117
a(S'/home/shriya/Desktop/CS275/bot-bot/populationk.py'
p118
I43
S'eliminate'
p119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p120
tp121
a(S'/home/shriya/Desktop/CS275/bot-bot/neural_network.py'
p122
I24
S'__init__'
p123
S'self.model.add(Activation(activation_fns[1]))'
p124
tp125
a(S'/usr/local/lib/python2.7/dist-packages/keras/models.py'
p126
I466
S'add'
p127
S'output_tensor = layer(self.outputs[0])'
p128
tp129
a(S'/usr/local/lib/python2.7/dist-packages/keras/engine/topology.py'
p130
I585
S'__call__'
p131
S'output = self.call(inputs, **kwargs)'
p132
tp133
a(S'/usr/local/lib/python2.7/dist-packages/keras/layers/core.py'
p134
I290
S'call'
p135
S'return self.activation(inputs)'
p136
tp137
a(S'/usr/local/lib/python2.7/dist-packages/keras/activations.py'
p138
I24
S'softmax'
p139
S'return K.softmax(x)'
p140
tp141
a(S'/usr/local/lib/python2.7/dist-packages/keras/backend/theano_backend.py'
p142
I1445
g139
S'return T.nnet.softmax(x)'
p143
tp144
aasbsS'_keras_history'
p145
(g64
(ckeras.layers.core
Activation
p146
g66
Ntp147
Rp148
(dp149
S'trainable'
p150
I01
sg70
(lp151
sg82
I01
sS'activation'
p152
ckeras.activations
softmax
p153
sS'_non_trainable_weights'
p154
(lp155
sS'_built'
p156
I01
sg86
(lp157
g64
(g88
g66
Ntp158
Rp159
(dp160
g92
g148
sg93
(lp161
g97
asS'input_masks'
p162
(lp163
NasS'output_masks'
p164
(lp165
NasS'input_shapes'
p166
(lp167
g103
asS'input_tensors'
p168
(lp169
g64
(g95
g66
Ntp170
Rp171
(dp172
g99
I0
sg100
I00
sg101
Nsg102
g103
sg104
S'auto_478988'
p173
sg106
g64
(g107
g66
Ntp174
Rp175
(dp176
g111
(lp177
(lp178
(S'/home/shriya/Desktop/CS275/bot-bot/populationk.py'
p179
I189
S'update'
p180
S'self._move_forward(dt)'
p181
tp182
a(g114
I165
g115
S'self.pop.eliminate(self, replace = True)'
p183
tp184
a(g118
I43
g119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p185
tp186
a(g122
I23
g123
S'self.model.add(Dense(layers[2]))'
p187
tp188
a(g126
I466
g127
S'output_tensor = layer(self.outputs[0])'
p189
tp190
a(g130
I585
g131
S'output = self.call(inputs, **kwargs)'
p191
tp192
a(g134
I842
g135
S'output = K.bias_add(output, self.bias)'
p193
tp194
a(g142
I2030
S'bias_add'
p195
S'x += bias'
p196
tp197
aasbsg145
(g64
(ckeras.layers.core
Dense
p198
g66
Ntp199
Rp200
(dp201
S'kernel'
p202
g64
(ctheano.tensor.sharedvar
TensorSharedVariable
p203
g66
Ntp204
Rp205
(dp206
g99
NsS'container'
p207
g64
(ctheano.gof.link
Container
p208
g66
Ntp209
Rp210
(dp211
g101
S'dense_1680/kernel'
p212
sS'storage'
p213
(lp214
cnumpy.core.multiarray
_reconstruct
p215
(cnumpy
ndarray
p216
(I0
tp217
S'b'
p218
tp219
Rp220
(I1
(I2
I4
tp221
g9
(S'f4'
p222
I0
I1
tp223
Rp224
(I3
S'<'
p225
NNNI-1
I-1
I0
tp226
bI00
S'\x10t\xc1=\xe4\xdf\x00?d\x95\x7f\xbf\x08\x19\x0c?@\xba\xe6> \xc6\xc0\xbej\x95b\xbf\xb8)\xf1\xbd'
p227
tp228
basS'strict'
p229
I00
sS'readonly'
p230
I00
sS'type'
p231
g64
(ctheano.tensor.type
TensorType
p232
g66
Ntp233
Rp234
(dp235
S'broadcastable'
p236
(I00
I00
tp237
sS'dtype'
p238
S'float32'
p239
sS'numpy_dtype'
p240
g9
(S'f4'
p241
I0
I1
tp242
Rp243
(I3
S'<'
p244
NNNI-1
I-1
I0
tp245
bsS'sparse_grad'
p246
I00
sg101
NsbsS'allow_downcast'
p247
Nsbsg101
g212
sg102
(I2
I4
tp248
sg104
S'auto_478971'
p249
sg106
g64
(g107
g66
Ntp250
Rp251
(dp252
g111
(lp253
(lp254
(g118
I43
g119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p255
tp256
a(g122
I23
g123
S'self.model.add(Dense(layers[2]))'
p257
tp258
a(g126
I466
g127
S'output_tensor = layer(self.outputs[0])'
p259
tp260
a(g130
I558
g131
S'self.build(input_shapes[0])'
p261
tp262
a(g134
I827
S'build'
p263
S'constraint=self.kernel_constraint)'
p264
tp265
a(S'/usr/local/lib/python2.7/dist-packages/keras/legacy/interfaces.py'
p266
I88
S'wrapper'
p267
S'return func(*args, **kwargs)'
p268
tp269
a(g130
I391
S'add_weight'
p270
S'weight = K.variable(initializer(shape), dtype=dtype, name=name)'
p271
tp272
a(g142
I147
S'variable'
p273
S'strict=False)'
p274
tp275
aasbsS'owner'
p276
Nsg100
I00
sg231
g234
sbsg150
I01
sg70
(lp277
g159
asS'kernel_constraint'
p278
Nsg82
I01
sg152
ckeras.activations
linear
p279
sg154
(lp280
sg156
I01
sS'bias'
p281
g64
(g203
g66
Ntp282
Rp283
(dp284
g99
Nsg207
g64
(g208
g66
Ntp285
Rp286
(dp287
g101
S'dense_1680/bias'
p288
sg213
(lp289
g215
(g216
(I0
tp290
g218
tp291
Rp292
(I1
(I4
tp293
g224
I00
S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
p294
tp295
basg229
I00
sg230
I00
sg231
g64
(g232
g66
Ntp296
Rp297
(dp298
g236
(I00
tp299
sg238
S'float32'
p300
sg240
g243
sg246
I00
sg101
Nsbsg247
Nsbsg101
g288
sg102
(I4
tp301
sg104
S'auto_478982'
p302
sg106
g64
(g107
g66
Ntp303
Rp304
(dp305
g111
(lp306
(lp307
(g118
I43
g119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p308
tp309
a(g122
I23
g123
S'self.model.add(Dense(layers[2]))'
p310
tp311
a(g126
I466
g127
S'output_tensor = layer(self.outputs[0])'
p312
tp313
a(g130
I558
g131
S'self.build(input_shapes[0])'
p314
tp315
a(g134
I833
g263
S'constraint=self.bias_constraint)'
p316
tp317
a(g266
I88
g267
S'return func(*args, **kwargs)'
p318
tp319
a(g130
I391
g270
S'weight = K.variable(initializer(shape), dtype=dtype, name=name)'
p320
tp321
a(g142
I147
g273
S'strict=False)'
p322
tp323
aasbsg276
Nsg100
I00
sg231
g297
sbsS'kernel_initializer'
p324
g64
(ckeras.initializers
VarianceScaling
p325
g66
Ntp326
Rp327
(dp328
S'distribution'
p329
S'uniform'
p330
sS'scale'
p331
F1.0
sS'seed'
p332
NsS'mode'
p333
S'fan_avg'
p334
sbsS'use_bias'
p335
I01
sg86
(lp336
g64
(g88
g66
Ntp337
Rp338
(dp339
g92
g200
sg93
(lp340
g171
asg162
(lp341
Nasg164
(lp342
Nasg166
(lp343
(NI2
tp344
asg168
(lp345
g64
(g95
g66
Ntp346
Rp347
(dp348
g99
I0
sg100
I00
sg101
Nsg102
g344
sg104
S'auto_478757'
p349
sg106
g64
(g107
g66
Ntp350
Rp351
(dp352
g111
(lp353
(lp354
(g114
I165
g115
S'self.pop.eliminate(self, replace = True)'
p355
tp356
a(g118
I43
g119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p357
tp358
a(g122
I22
g123
S'self.model.add(Dense(layers[1], init="random_uniform", activation=activation_fns[0]))'
p359
tp360
a(g126
I466
g127
S'output_tensor = layer(self.outputs[0])'
p361
tp362
a(g130
I585
g131
S'output = self.call(inputs, **kwargs)'
p363
tp364
a(g134
I844
g135
S'output = self.activation(output)'
p365
tp366
a(g138
I54
S'sigmoid'
p367
S'return K.sigmoid(x)'
p368
tp369
a(g142
I1483
g367
S'return T.nnet.sigmoid(x)'
p370
tp371
aasbsg145
(g64
(g198
g66
Ntp372
Rp373
(dp374
g202
g64
(g203
g66
Ntp375
Rp376
(dp377
g99
Nsg207
g64
(g208
g66
Ntp378
Rp379
(dp380
g101
S'dense_1679/kernel'
p381
sg213
(lp382
g215
(g216
(I0
tp383
g218
tp384
Rp385
(I1
(I1
I2
tp386
g224
I00
S'([\xa9\xbc+\xfe>='
p387
tp388
basg229
I00
sg230
I00
sg231
g64
(g232
g66
Ntp389
Rp390
(dp391
g236
(I00
I00
tp392
sg238
S'float32'
p393
sg240
g243
sg246
I00
sg101
Nsbsg247
Nsbsg101
g381
sg102
(I1
I2
tp394
sg104
S'auto_478737'
p395
sg106
g64
(g107
g66
Ntp396
Rp397
(dp398
g111
(lp399
(lp400
(g118
I43
g119
S'self.bots.append(Bot(NeuralNet((1, 2, 4), ("sigmoid", "softmax")), random_rgb, self))'
p401
tp402
a(g122
I22