This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
logs_test.log
1292 lines (1292 loc) · 114 KB
/
logs_test.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
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
2018-08-27 13:00:41,194 - AlexNetTest - INFO - In Test: Building the graph...
2018-08-27 13:00:46,358 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 0
2018-08-27 13:00:46,369 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 1
2018-08-27 13:00:46,370 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 2
2018-08-27 13:00:46,370 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 3
2018-08-27 13:00:46,379 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 4
2018-08-27 13:00:46,379 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 5
2018-08-27 13:00:46,380 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 6
2018-08-27 13:00:46,382 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 7
2018-08-27 13:00:46,432 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 8
2018-08-27 13:00:46,433 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 9
2018-08-27 13:00:52,450 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 10
2018-08-27 13:00:52,466 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 11
2018-08-27 13:00:52,482 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 12
2018-08-27 13:00:52,482 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 13
2018-08-27 13:00:52,494 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 14
2018-08-27 13:00:52,996 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 15
2018-08-27 13:00:52,996 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 16
2018-08-27 13:00:52,997 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 17
2018-08-27 13:00:52,997 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 18
2018-08-27 13:00:54,007 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 19
2018-08-27 13:00:55,972 - AlexNetTest - INFO - Time: 9.623876 Step: 0 Avg Accuracy: 0.507812 Avg Top 5 Accuracy: 0.773438
2018-08-27 13:00:58,027 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 20
2018-08-27 13:00:58,049 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 21
2018-08-27 13:00:58,554 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 22
2018-08-27 13:00:59,055 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 23
2018-08-27 13:01:00,082 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 24
2018-08-27 13:01:01,587 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 25
2018-08-27 13:01:03,090 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 26
2018-08-27 13:01:04,092 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 27
2018-08-27 13:01:05,594 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 28
2018-08-27 13:01:06,595 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 29
2018-08-27 13:01:08,098 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 30
2018-08-27 13:01:08,983 - AlexNetTest - INFO - Time: 13.004517 Step: 10 Avg Accuracy: 0.490767 Avg Top 5 Accuracy: 0.723722
2018-08-27 13:01:09,099 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 31
2018-08-27 13:01:10,600 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 32
2018-08-27 13:01:11,602 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 33
2018-08-27 13:01:13,106 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 34
2018-08-27 13:01:14,108 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 35
2018-08-27 13:01:15,610 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 36
2018-08-27 13:01:17,112 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 37
2018-08-27 13:01:18,114 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 38
2018-08-27 13:01:19,616 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 39
2018-08-27 13:01:20,618 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 40
2018-08-27 13:01:21,714 - AlexNetTest - INFO - Time: 12.731266 Step: 20 Avg Accuracy: 0.486235 Avg Top 5 Accuracy: 0.717634
2018-08-27 13:01:22,120 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 41
2018-08-27 13:01:23,122 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 42
2018-08-27 13:01:24,625 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 43
2018-08-27 13:01:25,626 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 44
2018-08-27 13:01:27,127 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 45
2018-08-27 13:01:28,128 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 46
2018-08-27 13:01:29,634 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 47
2018-08-27 13:01:30,636 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 48
2018-08-27 13:01:32,138 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 49
2018-08-27 13:01:33,647 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 50
2018-08-27 13:01:34,372 - AlexNetTest - INFO - Time: 12.657613 Step: 30 Avg Accuracy: 0.479839 Avg Top 5 Accuracy: 0.716230
2018-08-27 13:01:34,653 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 51
2018-08-27 13:01:36,155 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 52
2018-08-27 13:01:37,157 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 53
2018-08-27 13:01:38,659 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 54
2018-08-27 13:01:39,661 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 55
2018-08-27 13:01:41,163 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 56
2018-08-27 13:01:42,167 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 57
2018-08-27 13:01:43,670 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 58
2018-08-27 13:01:45,197 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 59
2018-08-27 13:01:46,201 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 60
2018-08-27 13:01:47,234 - AlexNetTest - INFO - Time: 12.861603 Step: 40 Avg Accuracy: 0.481707 Avg Top 5 Accuracy: 0.719512
2018-08-27 13:01:47,702 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 61
2018-08-27 13:01:48,704 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 62
2018-08-27 13:01:50,206 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 63
2018-08-27 13:01:51,208 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 64
2018-08-27 13:01:52,711 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 65
2018-08-27 13:01:53,713 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 66
2018-08-27 13:01:55,215 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 67
2018-08-27 13:01:56,217 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 68
2018-08-27 13:01:57,722 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 69
2018-08-27 13:01:58,723 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 70
2018-08-27 13:01:59,946 - AlexNetTest - INFO - Time: 12.711263 Step: 50 Avg Accuracy: 0.477941 Avg Top 5 Accuracy: 0.717984
2018-08-27 13:02:00,226 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 71
2018-08-27 13:02:01,728 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 72
2018-08-27 13:02:02,730 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 73
2018-08-27 13:02:04,232 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 74
2018-08-27 13:02:05,233 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 75
2018-08-27 13:02:06,735 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 76
2018-08-27 13:02:07,737 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 77
2018-08-27 13:02:09,239 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 78
2018-08-27 13:02:10,775 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 79
2018-08-27 13:02:11,776 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 80
2018-08-27 13:02:12,828 - AlexNetTest - INFO - Time: 12.881901 Step: 60 Avg Accuracy: 0.477075 Avg Top 5 Accuracy: 0.716957
2018-08-27 13:02:13,278 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 81
2018-08-27 13:02:14,280 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 82
2018-08-27 13:02:15,782 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 83
2018-08-27 13:02:16,784 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 84
2018-08-27 13:02:18,298 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 85
2018-08-27 13:02:19,300 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 86
2018-08-27 13:02:20,802 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 87
2018-08-27 13:02:22,306 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 88
2018-08-27 13:02:23,307 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 89
2018-08-27 13:02:24,808 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 90
2018-08-27 13:02:25,725 - AlexNetTest - INFO - Time: 12.896455 Step: 70 Avg Accuracy: 0.479864 Avg Top 5 Accuracy: 0.717320
2018-08-27 13:02:25,809 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 91
2018-08-27 13:02:27,311 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 92
2018-08-27 13:02:28,824 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 93
2018-08-27 13:02:29,827 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 94
2018-08-27 13:02:31,329 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 95
2018-08-27 13:02:32,331 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 96
2018-08-27 13:02:33,832 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 97
2018-08-27 13:02:34,834 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 98
2018-08-27 13:02:36,337 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 99
2018-08-27 13:02:37,339 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 100
2018-08-27 13:02:38,546 - AlexNetTest - INFO - Time: 12.820568 Step: 80 Avg Accuracy: 0.479552 Avg Top 5 Accuracy: 0.716146
2018-08-27 13:02:38,841 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 101
2018-08-27 13:02:39,843 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 102
2018-08-27 13:02:41,351 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 103
2018-08-27 13:02:42,853 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 104
2018-08-27 13:02:43,854 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 105
2018-08-27 13:02:45,356 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 106
2018-08-27 13:02:46,356 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 107
2018-08-27 13:02:47,859 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 108
2018-08-27 13:02:48,860 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 109
2018-08-27 13:02:50,366 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 110
2018-08-27 13:02:51,359 - AlexNetTest - INFO - Time: 12.813020 Step: 90 Avg Accuracy: 0.479825 Avg Top 5 Accuracy: 0.715573
2018-08-27 13:02:51,391 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 111
2018-08-27 13:02:52,899 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 112
2018-08-27 13:02:54,401 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 113
2018-08-27 13:02:55,403 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 114
2018-08-27 13:02:56,905 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 115
2018-08-27 13:02:57,907 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 116
2018-08-27 13:02:59,409 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 117
2018-08-27 13:03:00,412 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 118
2018-08-27 13:03:01,920 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 119
2018-08-27 13:03:03,445 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 120
2018-08-27 13:03:04,218 - AlexNetTest - INFO - Time: 12.859053 Step: 100 Avg Accuracy: 0.481049 Avg Top 5 Accuracy: 0.715811
2018-08-27 13:03:04,446 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 121
2018-08-27 13:03:05,948 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 122
2018-08-27 13:03:06,950 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 123
2018-08-27 13:03:08,452 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 124
2018-08-27 13:03:09,453 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 125
2018-08-27 13:03:10,954 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 126
2018-08-27 13:03:11,956 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 127
2018-08-27 13:03:13,458 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 128
2018-08-27 13:03:14,960 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 129
2018-08-27 13:03:15,961 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 130
2018-08-27 13:03:17,027 - AlexNetTest - INFO - Time: 12.807700 Step: 110 Avg Accuracy: 0.481419 Avg Top 5 Accuracy: 0.715864
2018-08-27 13:03:17,462 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 131
2018-08-27 13:03:18,463 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 132
2018-08-27 13:03:19,964 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 133
2018-08-27 13:03:20,966 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 134
2018-08-27 13:03:22,469 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 135
2018-08-27 13:03:23,470 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 136
2018-08-27 13:03:24,973 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 137
2018-08-27 13:03:26,509 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 138
2018-08-27 13:03:27,510 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 139
2018-08-27 13:03:29,012 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 140
2018-08-27 13:03:29,803 - AlexNetTest - INFO - Time: 12.776304 Step: 120 Avg Accuracy: 0.481082 Avg Top 5 Accuracy: 0.715909
2018-08-27 13:03:30,013 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 141
2018-08-27 13:03:31,515 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 142
2018-08-27 13:03:32,517 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 143
2018-08-27 13:03:34,018 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 144
2018-08-27 13:03:35,022 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 145
2018-08-27 13:03:36,525 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 146
2018-08-27 13:03:37,526 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 147
2018-08-27 13:03:39,032 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 148
2018-08-27 13:03:40,534 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 149
2018-08-27 13:03:41,536 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 150
2018-08-27 13:03:42,670 - AlexNetTest - INFO - Time: 12.866103 Step: 130 Avg Accuracy: 0.479783 Avg Top 5 Accuracy: 0.715351
2018-08-27 13:03:43,038 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 151
2018-08-27 13:03:44,040 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 152
2018-08-27 13:03:45,543 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 153
2018-08-27 13:03:47,045 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 154
2018-08-27 13:03:48,046 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 155
2018-08-27 13:03:49,549 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 156
2018-08-27 13:03:50,550 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 157
2018-08-27 13:03:52,051 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 158
2018-08-27 13:03:53,053 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 159
2018-08-27 13:03:54,556 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 160
2018-08-27 13:03:55,617 - AlexNetTest - INFO - Time: 12.946833 Step: 140 Avg Accuracy: 0.479832 Avg Top 5 Accuracy: 0.715426
2018-08-27 13:03:56,058 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 161
2018-08-27 13:03:57,062 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 162
2018-08-27 13:03:58,564 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 163
2018-08-27 13:03:59,566 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 164
2018-08-27 13:04:01,069 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 165
2018-08-27 13:04:02,070 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 166
2018-08-27 13:04:03,572 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 167
2018-08-27 13:04:04,575 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 168
2018-08-27 13:04:06,077 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 169
2018-08-27 13:04:07,580 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 170
2018-08-27 13:04:08,426 - AlexNetTest - INFO - Time: 12.808140 Step: 150 Avg Accuracy: 0.479719 Avg Top 5 Accuracy: 0.715387
2018-08-27 13:04:08,582 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 171
2018-08-27 13:04:10,083 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 172
2018-08-27 13:04:11,085 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 173
2018-08-27 13:04:12,587 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 174
2018-08-27 13:04:14,093 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 175
2018-08-27 13:04:15,095 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 176
2018-08-27 13:04:16,598 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 177
2018-08-27 13:04:17,600 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 178
2018-08-27 13:04:19,103 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 179
2018-08-27 13:04:20,612 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 180
2018-08-27 13:04:21,397 - AlexNetTest - INFO - Time: 12.971071 Step: 160 Avg Accuracy: 0.480784 Avg Top 5 Accuracy: 0.716712
2018-08-27 13:04:21,613 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 181
2018-08-27 13:04:23,116 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 182
2018-08-27 13:04:24,118 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 183
2018-08-27 13:04:25,620 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 184
2018-08-27 13:04:26,622 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 185
2018-08-27 13:04:28,126 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 186
2018-08-27 13:04:29,628 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 187
2018-08-27 13:04:30,636 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 188
2018-08-27 13:04:32,138 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 189
2018-08-27 13:04:33,140 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 190
2018-08-27 13:04:34,414 - AlexNetTest - INFO - Time: 13.017248 Step: 170 Avg Accuracy: 0.480674 Avg Top 5 Accuracy: 0.716694
2018-08-27 13:04:34,643 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 191
2018-08-27 13:04:36,145 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 192
2018-08-27 13:04:37,147 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 193
2018-08-27 13:04:38,650 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 194
2018-08-27 13:04:39,652 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 195
2018-08-27 13:04:41,154 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 196
2018-08-27 13:04:42,656 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 197
2018-08-27 13:04:43,657 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 198
2018-08-27 13:04:45,160 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 199
2018-08-27 13:04:46,163 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 200
2018-08-27 13:04:47,428 - AlexNetTest - INFO - Time: 13.013196 Step: 180 Avg Accuracy: 0.481397 Avg Top 5 Accuracy: 0.717541
2018-08-27 13:04:47,665 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 201
2018-08-27 13:04:49,167 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 202
2018-08-27 13:04:50,168 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 203
2018-08-27 13:04:51,671 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 204
2018-08-27 13:04:52,672 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 205
2018-08-27 13:04:54,174 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 206
2018-08-27 13:04:55,176 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 207
2018-08-27 13:04:56,678 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 208
2018-08-27 13:04:58,190 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 209
2018-08-27 13:04:59,191 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 210
2018-08-27 13:05:00,274 - AlexNetTest - INFO - Time: 12.845891 Step: 190 Avg Accuracy: 0.480898 Avg Top 5 Accuracy: 0.717032
2018-08-27 13:05:00,694 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 211
2018-08-27 13:05:01,696 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 212
2018-08-27 13:05:03,198 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 213
2018-08-27 13:05:04,701 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 214
2018-08-27 13:05:05,703 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 215
2018-08-27 13:05:07,205 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 216
2018-08-27 13:05:08,207 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 217
2018-08-27 13:05:09,709 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 218
2018-08-27 13:05:10,711 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 219
2018-08-27 13:05:12,213 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 220
2018-08-27 13:05:13,253 - AlexNetTest - INFO - Time: 12.978802 Step: 200 Avg Accuracy: 0.479633 Avg Top 5 Accuracy: 0.716845
2018-08-27 13:05:13,716 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 221
2018-08-27 13:05:14,718 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 222
2018-08-27 13:05:16,220 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 223
2018-08-27 13:05:17,222 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 224
2018-08-27 13:05:18,725 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 225
2018-08-27 13:05:19,726 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 226
2018-08-27 13:05:21,228 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 227
2018-08-27 13:05:22,731 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 228
2018-08-27 13:05:23,732 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 229
2018-08-27 13:05:25,234 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 230
2018-08-27 13:05:26,159 - AlexNetTest - INFO - Time: 12.905031 Step: 210 Avg Accuracy: 0.480450 Avg Top 5 Accuracy: 0.716899
2018-08-27 13:05:26,236 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 231
2018-08-27 13:05:27,742 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 232
2018-08-27 13:05:29,245 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 233
2018-08-27 13:05:30,247 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 234
2018-08-27 13:05:31,749 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 235
2018-08-27 13:05:33,253 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 236
2018-08-27 13:05:34,255 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 237
2018-08-27 13:05:35,757 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 238
2018-08-27 13:05:36,759 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 239
2018-08-27 13:05:38,261 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 240
2018-08-27 13:05:39,274 - AlexNetTest - INFO - Time: 13.114909 Step: 220 Avg Accuracy: 0.480840 Avg Top 5 Accuracy: 0.716417
2018-08-27 13:05:39,766 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 241
2018-08-27 13:05:40,767 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 242
2018-08-27 13:05:42,270 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 243
2018-08-27 13:05:43,271 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 244
2018-08-27 13:05:44,773 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 245
2018-08-27 13:05:45,775 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 246
2018-08-27 13:05:47,278 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 247
2018-08-27 13:05:48,780 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 248
2018-08-27 13:05:49,782 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 249
2018-08-27 13:05:51,285 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 250
2018-08-27 13:05:52,196 - AlexNetTest - INFO - Time: 12.921639 Step: 230 Avg Accuracy: 0.480553 Avg Top 5 Accuracy: 0.716416
2018-08-27 13:05:52,289 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 251
2018-08-27 13:05:53,791 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 252
2018-08-27 13:05:55,294 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 253
2018-08-27 13:05:56,296 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 254
2018-08-27 13:05:57,798 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 255
2018-08-27 13:05:58,799 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 256
2018-08-27 13:06:00,301 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 257
2018-08-27 13:06:01,804 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 258
2018-08-27 13:06:02,809 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 259
2018-08-27 13:06:04,312 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 260
2018-08-27 13:06:05,183 - AlexNetTest - INFO - Time: 12.986690 Step: 240 Avg Accuracy: 0.480582 Avg Top 5 Accuracy: 0.716448
2018-08-27 13:06:05,313 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 261
2018-08-27 13:06:06,816 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 262
2018-08-27 13:06:07,821 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 263
2018-08-27 13:06:09,324 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 264
2018-08-27 13:06:10,826 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 265
2018-08-27 13:06:11,828 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 266
2018-08-27 13:06:13,330 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 267
2018-08-27 13:06:14,332 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 268
2018-08-27 13:06:15,837 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 269
2018-08-27 13:06:17,344 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 270
2018-08-27 13:06:18,201 - AlexNetTest - INFO - Time: 13.017177 Step: 250 Avg Accuracy: 0.480080 Avg Top 5 Accuracy: 0.716135
2018-08-27 13:06:18,345 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 271
2018-08-27 13:06:19,848 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 272
2018-08-27 13:06:20,853 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 273
2018-08-27 13:06:22,358 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 274
2018-08-27 13:06:23,860 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 275
2018-08-27 13:06:24,861 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 276
2018-08-27 13:06:26,363 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 277
2018-08-27 13:06:27,365 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 278
2018-08-27 13:06:28,867 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 279
2018-08-27 13:06:30,370 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 280
2018-08-27 13:06:31,220 - AlexNetTest - INFO - Time: 13.019170 Step: 260 Avg Accuracy: 0.480154 Avg Top 5 Accuracy: 0.716505
2018-08-27 13:06:31,371 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 281
2018-08-27 13:06:32,874 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 282
2018-08-27 13:06:33,875 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 283
2018-08-27 13:06:35,377 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 284
2018-08-27 13:06:36,879 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 285
2018-08-27 13:06:37,881 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 286
2018-08-27 13:06:39,400 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 287
2018-08-27 13:06:40,401 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 288
2018-08-27 13:06:41,906 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 289
2018-08-27 13:06:43,407 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 290
2018-08-27 13:06:44,318 - AlexNetTest - INFO - Time: 13.097467 Step: 270 Avg Accuracy: 0.480541 Avg Top 5 Accuracy: 0.716357
2018-08-27 13:06:44,409 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 291
2018-08-27 13:06:45,917 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 292
2018-08-27 13:06:47,420 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 293
2018-08-27 13:06:48,422 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 294
2018-08-27 13:06:49,926 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 295
2018-08-27 13:06:51,428 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 296
2018-08-27 13:06:52,430 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 297
2018-08-27 13:06:53,931 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 298
2018-08-27 13:06:54,934 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 299
2018-08-27 13:06:56,436 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 300
2018-08-27 13:06:57,460 - AlexNetTest - INFO - Time: 13.141295 Step: 280 Avg Accuracy: 0.480510 Avg Top 5 Accuracy: 0.716303
2018-08-27 13:06:57,938 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 301
2018-08-27 13:06:58,940 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 302
2018-08-27 13:07:00,442 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 303
2018-08-27 13:07:01,444 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 304
2018-08-27 13:07:02,952 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 305
2018-08-27 13:07:04,484 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 306
2018-08-27 13:07:05,485 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 307
2018-08-27 13:07:06,987 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 308
2018-08-27 13:07:07,989 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 309
2018-08-27 13:07:09,491 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 310
2018-08-27 13:07:10,532 - AlexNetTest - INFO - Time: 13.072423 Step: 290 Avg Accuracy: 0.480831 Avg Top 5 Accuracy: 0.716629
2018-08-27 13:07:10,993 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 311
2018-08-27 13:07:11,995 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 312
2018-08-27 13:07:13,497 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 313
2018-08-27 13:07:14,499 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 314
2018-08-27 13:07:16,005 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 315
2018-08-27 13:07:17,537 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 316
2018-08-27 13:07:18,541 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 317
2018-08-27 13:07:20,044 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 318
2018-08-27 13:07:21,045 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 319
2018-08-27 13:07:22,547 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 320
2018-08-27 13:07:23,465 - AlexNetTest - INFO - Time: 12.932523 Step: 300 Avg Accuracy: 0.479937 Avg Top 5 Accuracy: 0.715999
2018-08-27 13:07:23,549 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 321
2018-08-27 13:07:25,053 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 322
2018-08-27 13:07:26,556 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 323
2018-08-27 13:07:27,558 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 324
2018-08-27 13:07:29,060 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 325
2018-08-27 13:07:30,061 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 326
2018-08-27 13:07:31,563 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 327
2018-08-27 13:07:33,083 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 328
2018-08-27 13:07:34,085 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 329
2018-08-27 13:07:35,587 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 330
2018-08-27 13:07:36,490 - AlexNetTest - INFO - Time: 13.024640 Step: 310 Avg Accuracy: 0.479426 Avg Top 5 Accuracy: 0.716238
2018-08-27 13:07:36,589 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 331
2018-08-27 13:07:38,091 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 332
2018-08-27 13:07:39,593 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 333
2018-08-27 13:07:40,596 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 334
2018-08-27 13:07:42,104 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 335
2018-08-27 13:07:43,106 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 336
2018-08-27 13:07:44,609 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 337
2018-08-27 13:07:46,114 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 338
2018-08-27 13:07:47,115 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 339
2018-08-27 13:07:48,618 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 340
2018-08-27 13:07:49,502 - AlexNetTest - INFO - Time: 13.011819 Step: 320 Avg Accuracy: 0.479434 Avg Top 5 Accuracy: 0.716073
2018-08-27 13:07:49,619 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 341
2018-08-27 13:07:51,122 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 342
2018-08-27 13:07:52,662 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 343
2018-08-27 13:07:53,667 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 344
2018-08-27 13:07:55,169 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 345
2018-08-27 13:07:56,171 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 346
2018-08-27 13:07:57,673 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 347
2018-08-27 13:07:58,675 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 348
2018-08-27 13:08:00,177 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 349
2018-08-27 13:08:01,679 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 350
2018-08-27 13:08:02,532 - AlexNetTest - INFO - Time: 13.029433 Step: 330 Avg Accuracy: 0.480103 Avg Top 5 Accuracy: 0.716767
2018-08-27 13:08:02,681 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 351
2018-08-27 13:08:04,184 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 352
2018-08-27 13:08:05,193 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 353
2018-08-27 13:08:06,698 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 354
2018-08-27 13:08:08,201 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 355
2018-08-27 13:08:09,203 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 356
2018-08-27 13:08:10,705 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 357
2018-08-27 13:08:11,707 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 358
2018-08-27 13:08:13,209 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 359
2018-08-27 13:08:14,711 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 360
2018-08-27 13:08:15,559 - AlexNetTest - INFO - Time: 13.026150 Step: 340 Avg Accuracy: 0.480068 Avg Top 5 Accuracy: 0.717536
2018-08-27 13:08:15,712 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 361
2018-08-27 13:08:17,213 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 362
2018-08-27 13:08:18,215 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 363
2018-08-27 13:08:19,718 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 364
2018-08-27 13:08:21,219 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 365
2018-08-27 13:08:22,221 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 366
2018-08-27 13:08:23,723 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 367
2018-08-27 13:08:24,737 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 368
2018-08-27 13:08:26,239 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 369
2018-08-27 13:08:27,742 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 370
2018-08-27 13:08:28,624 - AlexNetTest - INFO - Time: 13.064592 Step: 350 Avg Accuracy: 0.479879 Avg Top 5 Accuracy: 0.717014
2018-08-27 13:08:28,744 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 371
2018-08-27 13:08:30,246 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 372
2018-08-27 13:08:31,258 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 373
2018-08-27 13:08:32,762 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 374
2018-08-27 13:08:34,264 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 375
2018-08-27 13:08:35,266 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 376
2018-08-27 13:08:36,768 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 377
2018-08-27 13:08:37,771 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 378
2018-08-27 13:08:39,274 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 379
2018-08-27 13:08:40,776 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 380
2018-08-27 13:08:41,696 - AlexNetTest - INFO - Time: 13.071948 Step: 360 Avg Accuracy: 0.479874 Avg Top 5 Accuracy: 0.716543
2018-08-27 13:08:41,778 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 381
2018-08-27 13:08:43,280 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 382
2018-08-27 13:08:44,801 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 383
2018-08-27 13:08:45,803 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 384
2018-08-27 13:08:47,315 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 385
2018-08-27 13:08:48,318 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 386
2018-08-27 13:08:49,821 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 387
2018-08-27 13:08:50,823 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 388
2018-08-27 13:08:52,326 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 389
2018-08-27 13:08:53,831 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 390
2018-08-27 13:08:54,629 - AlexNetTest - INFO - Time: 12.932421 Step: 370 Avg Accuracy: 0.480290 Avg Top 5 Accuracy: 0.716981
2018-08-27 13:08:54,833 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 391
2018-08-27 13:08:56,335 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 392
2018-08-27 13:08:57,337 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 393
2018-08-27 13:08:58,839 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 394
2018-08-27 13:09:00,346 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 395
2018-08-27 13:09:01,348 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 396
2018-08-27 13:09:02,851 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 397
2018-08-27 13:09:03,853 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 398
2018-08-27 13:09:05,354 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 399
2018-08-27 13:09:06,356 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 400
2018-08-27 13:09:07,621 - AlexNetTest - INFO - Time: 12.991519 Step: 380 Avg Accuracy: 0.480130 Avg Top 5 Accuracy: 0.716905
2018-08-27 13:09:07,858 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 401
2018-08-27 13:09:09,361 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 402
2018-08-27 13:09:10,362 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 403
2018-08-27 13:09:11,865 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 404
2018-08-27 13:09:12,886 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 405
2018-08-27 13:09:14,397 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 406
2018-08-27 13:09:15,899 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 407
2018-08-27 13:09:16,901 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 408
2018-08-27 13:09:18,403 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 409
2018-08-27 13:09:19,405 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 410
2018-08-27 13:09:20,692 - AlexNetTest - INFO - Time: 13.070202 Step: 390 Avg Accuracy: 0.480119 Avg Top 5 Accuracy: 0.716892
2018-08-27 13:09:20,908 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 411
2018-08-27 13:09:22,410 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 412
2018-08-27 13:09:23,412 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 413
2018-08-27 13:09:24,916 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 414
2018-08-27 13:09:25,918 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 415
2018-08-27 13:09:27,420 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 416
2018-08-27 13:09:28,923 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 417
2018-08-27 13:09:29,925 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 418
2018-08-27 13:09:31,427 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 419
2018-08-27 13:09:32,938 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 420
2018-08-27 13:09:33,733 - AlexNetTest - INFO - Time: 13.040746 Step: 400 Avg Accuracy: 0.479738 Avg Top 5 Accuracy: 0.716743
2018-08-27 13:09:33,939 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 421
2018-08-27 13:09:35,441 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 422
2018-08-27 13:09:36,442 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 423
2018-08-27 13:09:37,945 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 424
2018-08-27 13:09:38,947 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 425
2018-08-27 13:09:40,449 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 426
2018-08-27 13:09:41,951 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 427
2018-08-27 13:09:42,953 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 428
2018-08-27 13:09:44,455 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 429
2018-08-27 13:09:45,457 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 430
2018-08-27 13:09:46,727 - AlexNetTest - INFO - Time: 12.994141 Step: 410 Avg Accuracy: 0.479319 Avg Top 5 Accuracy: 0.716602
2018-08-27 13:09:46,959 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 431
2018-08-27 13:09:48,462 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 432
2018-08-27 13:09:49,463 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 433
2018-08-27 13:09:50,966 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 434
2018-08-27 13:09:51,974 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 435
2018-08-27 13:09:53,477 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 436
2018-08-27 13:09:54,979 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 437
2018-08-27 13:09:55,981 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 438
2018-08-27 13:09:57,483 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 439
2018-08-27 13:09:58,485 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 440
2018-08-27 13:09:59,773 - AlexNetTest - INFO - Time: 13.045878 Step: 420 Avg Accuracy: 0.479476 Avg Top 5 Accuracy: 0.716709
2018-08-27 13:09:59,988 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 441
2018-08-27 13:10:01,490 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 442
2018-08-27 13:10:02,492 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 443
2018-08-27 13:10:03,995 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 444
2018-08-27 13:10:04,996 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 445
2018-08-27 13:10:06,503 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 446
2018-08-27 13:10:08,050 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 447
2018-08-27 13:10:09,052 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 448
2018-08-27 13:10:10,555 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 449
2018-08-27 13:10:11,557 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 450
2018-08-27 13:10:12,793 - AlexNetTest - INFO - Time: 13.019658 Step: 430 Avg Accuracy: 0.479209 Avg Top 5 Accuracy: 0.716466
2018-08-27 13:10:13,059 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 451
2018-08-27 13:10:14,562 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 452
2018-08-27 13:10:15,563 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 453
2018-08-27 13:10:17,066 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 454
2018-08-27 13:10:18,068 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 455
2018-08-27 13:10:19,570 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 456
2018-08-27 13:10:21,073 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 457
2018-08-27 13:10:22,074 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 458
2018-08-27 13:10:23,577 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 459
2018-08-27 13:10:25,092 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 460
2018-08-27 13:10:25,894 - AlexNetTest - INFO - Time: 13.100033 Step: 440 Avg Accuracy: 0.478972 Avg Top 5 Accuracy: 0.716288
2018-08-27 13:10:26,094 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 461
2018-08-27 13:10:27,595 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 462
2018-08-27 13:10:28,597 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 463
2018-08-27 13:10:30,100 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 464
2018-08-27 13:10:31,621 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 465
2018-08-27 13:10:32,623 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 466
2018-08-27 13:10:34,125 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 467
2018-08-27 13:10:35,127 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 468
2018-08-27 13:10:36,630 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 469
2018-08-27 13:10:38,156 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 470
2018-08-27 13:10:38,960 - AlexNetTest - INFO - Time: 13.066127 Step: 450 Avg Accuracy: 0.478572 Avg Top 5 Accuracy: 0.716117
2018-08-27 13:10:39,158 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 471
2018-08-27 13:10:40,660 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 472
2018-08-27 13:10:41,662 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 473
2018-08-27 13:10:43,164 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 474
2018-08-27 13:10:44,668 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 475
2018-08-27 13:10:45,669 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 476
2018-08-27 13:10:47,172 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 477
2018-08-27 13:10:48,174 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 478
2018-08-27 13:10:49,683 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 479
2018-08-27 13:10:51,221 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 480
2018-08-27 13:10:52,003 - AlexNetTest - INFO - Time: 13.042730 Step: 460 Avg Accuracy: 0.478833 Avg Top 5 Accuracy: 0.716462
2018-08-27 13:10:52,223 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 481
2018-08-27 13:10:53,726 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 482
2018-08-27 13:10:54,740 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 483
2018-08-27 13:10:56,243 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 484
2018-08-27 13:10:57,245 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 485
2018-08-27 13:10:58,747 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 486
2018-08-27 13:11:00,254 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 487
2018-08-27 13:11:01,255 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 488
2018-08-27 13:11:02,758 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 489
2018-08-27 13:11:03,792 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 490
2018-08-27 13:11:05,098 - AlexNetTest - INFO - Time: 13.094267 Step: 470 Avg Accuracy: 0.479133 Avg Top 5 Accuracy: 0.716726
2018-08-27 13:11:05,294 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 491
2018-08-27 13:11:06,796 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 492
2018-08-27 13:11:07,798 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 493
2018-08-27 13:11:09,301 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 494
2018-08-27 13:11:10,337 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 495
2018-08-27 13:11:11,849 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 496
2018-08-27 13:11:13,351 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 497
2018-08-27 13:11:14,353 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 498
2018-08-27 13:11:15,855 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 499
2018-08-27 13:11:16,873 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 500
2018-08-27 13:11:18,172 - AlexNetTest - INFO - Time: 13.073300 Step: 480 Avg Accuracy: 0.479210 Avg Top 5 Accuracy: 0.717028
2018-08-27 13:11:18,384 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 501
2018-08-27 13:11:19,886 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 502
2018-08-27 13:11:20,888 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 503
2018-08-27 13:11:22,391 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 504
2018-08-27 13:11:23,923 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 505
2018-08-27 13:11:24,924 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 506
2018-08-27 13:11:26,427 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 507
2018-08-27 13:11:27,428 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 508
2018-08-27 13:11:28,930 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 509
2018-08-27 13:11:29,954 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 510
2018-08-27 13:11:31,243 - AlexNetTest - INFO - Time: 13.071307 Step: 490 Avg Accuracy: 0.479458 Avg Top 5 Accuracy: 0.717398
2018-08-27 13:11:31,457 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 511
2018-08-27 13:11:32,959 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 512
2018-08-27 13:11:33,961 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 513
2018-08-27 13:11:35,464 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 514
2018-08-27 13:11:36,968 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 515
2018-08-27 13:11:37,974 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 516
2018-08-27 13:11:39,476 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 517
2018-08-27 13:11:40,478 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 518
2018-08-27 13:11:41,981 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 519
2018-08-27 13:11:42,982 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 520
2018-08-27 13:11:44,326 - AlexNetTest - INFO - Time: 13.082620 Step: 500 Avg Accuracy: 0.479479 Avg Top 5 Accuracy: 0.717565
2018-08-27 13:11:44,485 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 521
2018-08-27 13:11:45,987 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 522
2018-08-27 13:11:46,989 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 523
2018-08-27 13:11:48,492 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 524
2018-08-27 13:11:49,996 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 525
2018-08-27 13:11:50,998 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 526
2018-08-27 13:11:52,500 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 527
2018-08-27 13:11:53,502 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 528
2018-08-27 13:11:55,005 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 529
2018-08-27 13:11:56,520 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 530
2018-08-27 13:11:57,293 - AlexNetTest - INFO - Time: 12.966326 Step: 510 Avg Accuracy: 0.479406 Avg Top 5 Accuracy: 0.717710
2018-08-27 13:11:57,522 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 531
2018-08-27 13:11:59,025 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 532
2018-08-27 13:12:00,026 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 533
2018-08-27 13:12:01,528 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 534
2018-08-27 13:12:03,029 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 535
2018-08-27 13:12:04,031 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 536
2018-08-27 13:12:05,533 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 537
2018-08-27 13:12:06,535 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 538
2018-08-27 13:12:08,038 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 539
2018-08-27 13:12:09,540 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 540
2018-08-27 13:12:10,415 - AlexNetTest - INFO - Time: 13.122152 Step: 520 Avg Accuracy: 0.479262 Avg Top 5 Accuracy: 0.717430
2018-08-27 13:12:10,548 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 541
2018-08-27 13:12:12,050 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 542
2018-08-27 13:12:13,084 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 543
2018-08-27 13:12:14,596 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 544
2018-08-27 13:12:16,099 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 545
2018-08-27 13:12:17,100 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 546
2018-08-27 13:12:18,602 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 547
2018-08-27 13:12:19,603 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 548
2018-08-27 13:12:21,106 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 549
2018-08-27 13:12:22,608 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 550
2018-08-27 13:12:23,485 - AlexNetTest - INFO - Time: 13.069125 Step: 530 Avg Accuracy: 0.479329 Avg Top 5 Accuracy: 0.717455
2018-08-27 13:12:23,610 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 551
2018-08-27 13:12:25,112 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 552
2018-08-27 13:12:26,614 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 553
2018-08-27 13:12:27,616 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 554
2018-08-27 13:12:29,119 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 555
2018-08-27 13:12:30,120 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 556
2018-08-27 13:12:31,623 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 557
2018-08-27 13:12:33,149 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 558
2018-08-27 13:12:34,151 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 559
2018-08-27 13:12:35,654 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 560
2018-08-27 13:12:36,526 - AlexNetTest - INFO - Time: 13.040630 Step: 540 Avg Accuracy: 0.479508 Avg Top 5 Accuracy: 0.717306
2018-08-27 13:12:36,656 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 561
2018-08-27 13:12:38,158 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 562
2018-08-27 13:12:39,680 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 563
2018-08-27 13:12:40,682 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 564
2018-08-27 13:12:42,184 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 565
2018-08-27 13:12:43,186 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 566
2018-08-27 13:12:44,688 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 567
2018-08-27 13:12:46,190 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 568
2018-08-27 13:12:47,191 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 569
2018-08-27 13:12:48,692 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 570
2018-08-27 13:12:49,719 - AlexNetTest - INFO - Time: 13.192755 Step: 550 Avg Accuracy: 0.479441 Avg Top 5 Accuracy: 0.717134
2018-08-27 13:12:50,198 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 571
2018-08-27 13:12:51,200 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 572
2018-08-27 13:12:52,702 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 573
2018-08-27 13:12:53,704 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 574
2018-08-27 13:12:55,214 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 575
2018-08-27 13:12:56,716 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 576
2018-08-27 13:12:57,718 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 577
2018-08-27 13:12:59,220 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 578
2018-08-27 13:13:00,222 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 579
2018-08-27 13:13:01,724 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 580
2018-08-27 13:13:02,758 - AlexNetTest - INFO - Time: 13.039084 Step: 560 Avg Accuracy: 0.479668 Avg Top 5 Accuracy: 0.717455
2018-08-27 13:13:03,227 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 581
2018-08-27 13:13:04,230 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 582
2018-08-27 13:13:05,732 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 583
2018-08-27 13:13:06,743 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 584
2018-08-27 13:13:08,245 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 585
2018-08-27 13:13:09,747 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 586
2018-08-27 13:13:10,748 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 587
2018-08-27 13:13:12,251 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 588
2018-08-27 13:13:13,765 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 589
2018-08-27 13:13:14,781 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 590
2018-08-27 13:13:15,888 - AlexNetTest - INFO - Time: 13.129155 Step: 570 Avg Accuracy: 0.479778 Avg Top 5 Accuracy: 0.717573
2018-08-27 13:13:16,286 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 591
2018-08-27 13:13:17,792 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 592
2018-08-27 13:13:18,794 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 593
2018-08-27 13:13:20,296 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 594
2018-08-27 13:13:21,298 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 595
2018-08-27 13:13:22,300 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 596
2018-08-27 13:13:23,805 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 597
2018-08-27 13:13:25,306 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 598
2018-08-27 13:13:26,308 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 599
2018-08-27 13:13:27,810 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 600
2018-08-27 13:13:28,835 - AlexNetTest - INFO - Time: 12.946508 Step: 580 Avg Accuracy: 0.480018 Avg Top 5 Accuracy: 0.718051
2018-08-27 13:13:29,327 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 601
2018-08-27 13:13:30,330 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 602
2018-08-27 13:13:31,331 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 603
2018-08-27 13:13:32,332 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 604
2018-08-27 13:13:33,334 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 605
2018-08-27 13:13:34,843 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 606
2018-08-27 13:13:36,345 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 607
2018-08-27 13:13:37,347 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 608
2018-08-27 13:13:38,849 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 609
2018-08-27 13:13:39,851 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 610
2018-08-27 13:13:41,108 - AlexNetTest - INFO - Time: 12.272491 Step: 590 Avg Accuracy: 0.480436 Avg Top 5 Accuracy: 0.718168
2018-08-27 13:13:41,354 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 611
2018-08-27 13:13:42,856 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 612
2018-08-27 13:13:43,858 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 613
2018-08-27 13:13:45,361 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 614
2018-08-27 13:13:46,885 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 615
2018-08-27 13:13:47,886 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 616
2018-08-27 13:13:49,386 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 617
2018-08-27 13:13:50,387 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 618
2018-08-27 13:13:51,889 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 619
2018-08-27 13:13:52,891 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 620
2018-08-27 13:13:54,168 - AlexNetTest - INFO - Time: 13.059287 Step: 600 Avg Accuracy: 0.480384 Avg Top 5 Accuracy: 0.718282
2018-08-27 13:13:54,393 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 621
2018-08-27 13:13:55,895 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 622
2018-08-27 13:13:56,897 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 623
2018-08-27 13:13:58,399 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 624
2018-08-27 13:13:59,920 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 625
2018-08-27 13:14:00,922 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 626
2018-08-27 13:14:02,424 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 627
2018-08-27 13:14:03,426 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 628
2018-08-27 13:14:04,929 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 629
2018-08-27 13:14:06,453 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 630
2018-08-27 13:14:07,301 - AlexNetTest - INFO - Time: 13.132566 Step: 610 Avg Accuracy: 0.480398 Avg Top 5 Accuracy: 0.718507
2018-08-27 13:14:07,454 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 631
2018-08-27 13:14:08,456 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 632
2018-08-27 13:14:09,958 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 633
2018-08-27 13:14:10,960 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 634
2018-08-27 13:14:11,962 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 635
2018-08-27 13:14:13,465 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 636
2018-08-27 13:14:14,471 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 637
2018-08-27 13:14:15,978 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 638
2018-08-27 13:14:17,479 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 639
2018-08-27 13:14:18,481 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 640
2018-08-27 13:14:19,721 - AlexNetTest - INFO - Time: 12.419736 Step: 620 Avg Accuracy: 0.480072 Avg Top 5 Accuracy: 0.718373
2018-08-27 13:14:19,984 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 641
2018-08-27 13:14:20,986 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 642
2018-08-27 13:14:21,988 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 643
2018-08-27 13:14:23,490 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 644
2018-08-27 13:14:24,491 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 645
2018-08-27 13:14:25,994 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 646
2018-08-27 13:14:26,995 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 647
2018-08-27 13:14:28,497 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 648
2018-08-27 13:14:30,007 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 649
2018-08-27 13:14:31,008 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 650
2018-08-27 13:14:32,134 - AlexNetTest - INFO - Time: 12.413139 Step: 630 Avg Accuracy: 0.479782 Avg Top 5 Accuracy: 0.717883
2018-08-27 13:14:32,510 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 651
2018-08-27 13:14:33,512 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 652
2018-08-27 13:14:34,514 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 653
2018-08-27 13:14:35,542 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 654
2018-08-27 13:14:37,051 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 655
2018-08-27 13:14:38,553 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 656
2018-08-27 13:14:39,555 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 657
2018-08-27 13:14:41,057 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 658
2018-08-27 13:14:42,582 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 659
2018-08-27 13:14:43,584 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 660
2018-08-27 13:14:44,723 - AlexNetTest - INFO - Time: 12.588432 Step: 640 Avg Accuracy: 0.479890 Avg Top 5 Accuracy: 0.717909
2018-08-27 13:14:45,086 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 661
2018-08-27 13:14:46,607 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 662
2018-08-27 13:14:47,609 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 663
2018-08-27 13:14:49,111 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 664
2018-08-27 13:14:50,113 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 665
2018-08-27 13:14:51,615 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 666
2018-08-27 13:14:53,118 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 667
2018-08-27 13:14:54,119 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 668
2018-08-27 13:14:55,622 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 669
2018-08-27 13:14:56,624 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 670
2018-08-27 13:14:57,700 - AlexNetTest - INFO - Time: 12.977309 Step: 650 Avg Accuracy: 0.480031 Avg Top 5 Accuracy: 0.717730
2018-08-27 13:14:58,133 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 671
2018-08-27 13:14:59,135 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 672
2018-08-27 13:15:00,137 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 673
2018-08-27 13:15:01,639 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 674
2018-08-27 13:15:02,641 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 675
2018-08-27 13:15:04,144 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 676
2018-08-27 13:15:05,681 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 677
2018-08-27 13:15:06,686 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 678
2018-08-27 13:15:08,188 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 679
2018-08-27 13:15:09,190 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 680
2018-08-27 13:15:10,431 - AlexNetTest - INFO - Time: 12.730501 Step: 660 Avg Accuracy: 0.480049 Avg Top 5 Accuracy: 0.717639
2018-08-27 13:15:10,693 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 681
2018-08-27 13:15:11,695 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 682
2018-08-27 13:15:12,697 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 683
2018-08-27 13:15:14,200 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 684
2018-08-27 13:15:15,202 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 685
2018-08-27 13:15:16,706 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 686
2018-08-27 13:15:17,708 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 687
2018-08-27 13:15:19,210 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 688
2018-08-27 13:15:20,713 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 689
2018-08-27 13:15:21,714 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 690
2018-08-27 13:15:22,840 - AlexNetTest - INFO - Time: 12.408502 Step: 670 Avg Accuracy: 0.479660 Avg Top 5 Accuracy: 0.717306
2018-08-27 13:15:23,217 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 691
2018-08-27 13:15:24,219 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 692
2018-08-27 13:15:25,221 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 693
2018-08-27 13:15:26,723 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 694
2018-08-27 13:15:27,737 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 695
2018-08-27 13:15:29,243 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 696
2018-08-27 13:15:30,745 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 697
2018-08-27 13:15:31,746 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 698
2018-08-27 13:15:33,249 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 699
2018-08-27 13:15:34,250 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 700
2018-08-27 13:15:35,534 - AlexNetTest - INFO - Time: 12.692948 Step: 680 Avg Accuracy: 0.479798 Avg Top 5 Accuracy: 0.717213
2018-08-27 13:15:35,755 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 701
2018-08-27 13:15:36,757 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 702
2018-08-27 13:15:37,759 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 703
2018-08-27 13:15:39,270 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 704
2018-08-27 13:15:40,772 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 705
2018-08-27 13:15:41,774 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 706
2018-08-27 13:15:43,276 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 707
2018-08-27 13:15:44,281 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 708
2018-08-27 13:15:45,784 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 709
2018-08-27 13:15:47,286 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 710
2018-08-27 13:15:48,150 - AlexNetTest - INFO - Time: 12.615839 Step: 690 Avg Accuracy: 0.479807 Avg Top 5 Accuracy: 0.717201
2018-08-27 13:15:48,288 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 711
2018-08-27 13:15:49,299 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 712
2018-08-27 13:15:50,331 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 713
2018-08-27 13:15:51,839 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 714
2018-08-27 13:15:53,342 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 715
2018-08-27 13:15:54,343 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 716
2018-08-27 13:15:55,846 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 717
2018-08-27 13:15:56,870 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 718
2018-08-27 13:15:58,372 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 719
2018-08-27 13:15:59,878 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 720
2018-08-27 13:16:00,589 - AlexNetTest - INFO - Time: 12.438730 Step: 700 Avg Accuracy: 0.479839 Avg Top 5 Accuracy: 0.717401
2018-08-27 13:16:00,880 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 721
2018-08-27 13:16:01,882 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 722
2018-08-27 13:16:02,884 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 723
2018-08-27 13:16:03,886 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 724
2018-08-27 13:16:05,389 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 725
2018-08-27 13:16:06,891 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 726
2018-08-27 13:16:07,891 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 727
2018-08-27 13:16:09,393 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 728
2018-08-27 13:16:10,908 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 729
2018-08-27 13:16:11,922 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 730
2018-08-27 13:16:12,994 - AlexNetTest - INFO - Time: 12.404172 Step: 710 Avg Accuracy: 0.480013 Avg Top 5 Accuracy: 0.717300
2018-08-27 13:16:13,425 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 731
2018-08-27 13:16:14,426 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 732
2018-08-27 13:16:15,928 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 733
2018-08-27 13:16:16,930 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 734
2018-08-27 13:16:18,433 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 735
2018-08-27 13:16:19,936 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 736
2018-08-27 13:16:20,936 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 737
2018-08-27 13:16:22,439 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 738
2018-08-27 13:16:23,958 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 739
2018-08-27 13:16:24,959 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 740
2018-08-27 13:16:26,059 - AlexNetTest - INFO - Time: 13.064807 Step: 720 Avg Accuracy: 0.479987 Avg Top 5 Accuracy: 0.717352
2018-08-27 13:16:26,461 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 741
2018-08-27 13:16:27,463 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 742
2018-08-27 13:16:28,966 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 743
2018-08-27 13:16:30,468 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 744
2018-08-27 13:16:31,470 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 745
2018-08-27 13:16:32,973 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 746
2018-08-27 13:16:33,974 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 747
2018-08-27 13:16:35,477 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 748
2018-08-27 13:16:36,979 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 749
2018-08-27 13:16:38,005 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 750
2018-08-27 13:16:39,105 - AlexNetTest - INFO - Time: 13.045703 Step: 730 Avg Accuracy: 0.480346 Avg Top 5 Accuracy: 0.717671
2018-08-27 13:16:39,507 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 751
2018-08-27 13:16:40,509 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 752
2018-08-27 13:16:42,014 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 753
2018-08-27 13:16:43,536 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 754
2018-08-27 13:16:44,538 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 755
2018-08-27 13:16:46,040 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 756
2018-08-27 13:16:47,042 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 757
2018-08-27 13:16:48,545 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 758
2018-08-27 13:16:49,547 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 759
2018-08-27 13:16:51,049 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 760
2018-08-27 13:16:51,973 - AlexNetTest - INFO - Time: 12.867456 Step: 740 Avg Accuracy: 0.480284 Avg Top 5 Accuracy: 0.717400
2018-08-27 13:16:52,051 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 761
2018-08-27 13:16:53,589 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 762
2018-08-27 13:16:54,590 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 763
2018-08-27 13:16:55,592 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 764
2018-08-27 13:16:56,594 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 765
2018-08-27 13:16:58,096 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 766
2018-08-27 13:16:59,601 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 767
2018-08-27 13:17:00,603 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 768
2018-08-27 13:17:02,105 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 769
2018-08-27 13:17:03,111 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 770
2018-08-27 13:17:04,383 - AlexNetTest - INFO - Time: 12.410025 Step: 750 Avg Accuracy: 0.480183 Avg Top 5 Accuracy: 0.717439
2018-08-27 13:17:04,614 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 771
2018-08-27 13:17:06,116 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 772
2018-08-27 13:17:07,118 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 773
2018-08-27 13:17:08,620 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 774
2018-08-27 13:17:09,628 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 775
2018-08-27 13:17:11,130 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 776
2018-08-27 13:17:12,633 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 777
2018-08-27 13:17:13,634 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 778
2018-08-27 13:17:15,137 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 779
2018-08-27 13:17:16,662 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 780
2018-08-27 13:17:17,360 - AlexNetTest - INFO - Time: 12.976591 Step: 760 Avg Accuracy: 0.479796 Avg Top 5 Accuracy: 0.717282
2018-08-27 13:17:17,666 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 781
2018-08-27 13:17:18,668 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 782
2018-08-27 13:17:19,670 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 783
2018-08-27 13:17:21,172 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 784
2018-08-27 13:17:22,690 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 785
2018-08-27 13:17:23,691 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 786
2018-08-27 13:17:25,193 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 787
2018-08-27 13:17:26,195 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 788
2018-08-27 13:17:27,697 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 789
2018-08-27 13:17:29,200 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 790
2018-08-27 13:17:29,867 - AlexNetTest - INFO - Time: 12.506104 Step: 770 Avg Accuracy: 0.480008 Avg Top 5 Accuracy: 0.717433
2018-08-27 13:17:30,202 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 791
2018-08-27 13:17:31,204 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 792
2018-08-27 13:17:32,206 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 793
2018-08-27 13:17:33,708 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 794
2018-08-27 13:17:35,221 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 795
2018-08-27 13:17:36,227 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 796
2018-08-27 13:17:37,729 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 797
2018-08-27 13:17:38,731 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 798
2018-08-27 13:17:40,234 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 799
2018-08-27 13:17:41,759 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 800
2018-08-27 13:17:42,530 - AlexNetTest - INFO - Time: 12.662959 Step: 780 Avg Accuracy: 0.479974 Avg Top 5 Accuracy: 0.717450
2018-08-27 13:17:42,760 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 801
2018-08-27 13:17:44,263 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 802
2018-08-27 13:17:45,264 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 803
2018-08-27 13:17:46,768 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 804
2018-08-27 13:17:47,781 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 805
2018-08-27 13:17:49,284 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 806
2018-08-27 13:17:50,786 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 807
2018-08-27 13:17:51,788 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 808
2018-08-27 13:17:53,291 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 809
2018-08-27 13:17:54,793 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 810
2018-08-27 13:17:55,512 - AlexNetTest - INFO - Time: 12.981228 Step: 790 Avg Accuracy: 0.479851 Avg Top 5 Accuracy: 0.717535
2018-08-27 13:17:55,795 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 811
2018-08-27 13:17:56,796 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 812
2018-08-27 13:17:57,798 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 813
2018-08-27 13:17:58,815 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 814
2018-08-27 13:18:00,319 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 815
2018-08-27 13:18:01,821 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 816
2018-08-27 13:18:02,823 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 817
2018-08-27 13:18:04,326 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 818
2018-08-27 13:18:05,828 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 819
2018-08-27 13:18:06,831 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 820
2018-08-27 13:18:08,012 - AlexNetTest - INFO - Time: 12.499512 Step: 800 Avg Accuracy: 0.479674 Avg Top 5 Accuracy: 0.717862
2018-08-27 13:18:08,333 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 821
2018-08-27 13:18:09,343 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 822
2018-08-27 13:18:10,845 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 823
2018-08-27 13:18:12,348 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 824
2018-08-27 13:18:13,349 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 825
2018-08-27 13:18:14,852 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 826
2018-08-27 13:18:15,858 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 827
2018-08-27 13:18:17,365 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 828
2018-08-27 13:18:18,870 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 829
2018-08-27 13:18:19,872 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 830
2018-08-27 13:18:21,075 - AlexNetTest - INFO - Time: 13.063495 Step: 810 Avg Accuracy: 0.479356 Avg Top 5 Accuracy: 0.717864
2018-08-27 13:18:21,375 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 831
2018-08-27 13:18:22,878 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 832
2018-08-27 13:18:23,879 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 833
2018-08-27 13:18:25,382 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 834
2018-08-27 13:18:26,383 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 835
2018-08-27 13:18:27,885 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 836
2018-08-27 13:18:28,887 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 837
2018-08-27 13:18:30,390 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 838
2018-08-27 13:18:31,892 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 839
2018-08-27 13:18:32,894 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 840
2018-08-27 13:18:33,829 - AlexNetTest - INFO - Time: 12.752961 Step: 820 Avg Accuracy: 0.479570 Avg Top 5 Accuracy: 0.718008
2018-08-27 13:18:33,896 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 841
2018-08-27 13:18:35,398 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 842
2018-08-27 13:18:36,400 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 843
2018-08-27 13:18:37,404 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 844
2018-08-27 13:18:38,937 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 845
2018-08-27 13:18:39,939 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 846
2018-08-27 13:18:41,441 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 847
2018-08-27 13:18:42,444 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 848
2018-08-27 13:18:43,947 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 849
2018-08-27 13:18:45,456 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 850
2018-08-27 13:18:46,093 - AlexNetTest - INFO - Time: 12.263985 Step: 830 Avg Accuracy: 0.479637 Avg Top 5 Accuracy: 0.717951
2018-08-27 13:18:46,458 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 851
2018-08-27 13:18:47,460 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 852
2018-08-27 13:18:48,462 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 853
2018-08-27 13:18:49,463 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 854
2018-08-27 13:18:50,966 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 855
2018-08-27 13:18:52,469 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 856
2018-08-27 13:18:53,470 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 857
2018-08-27 13:18:54,973 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 858
2018-08-27 13:18:56,516 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 859
2018-08-27 13:18:57,519 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 860
2018-08-27 13:18:58,600 - AlexNetTest - INFO - Time: 12.506217 Step: 840 Avg Accuracy: 0.479684 Avg Top 5 Accuracy: 0.717802
2018-08-27 13:18:59,022 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 861
2018-08-27 13:19:00,024 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 862
2018-08-27 13:19:01,526 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 863
2018-08-27 13:19:03,033 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 864
2018-08-27 13:19:04,035 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 865
2018-08-27 13:19:05,537 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 866
2018-08-27 13:19:06,538 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 867
2018-08-27 13:19:08,040 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 868
2018-08-27 13:19:09,541 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 869
2018-08-27 13:19:10,542 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 870
2018-08-27 13:19:11,708 - AlexNetTest - INFO - Time: 13.107388 Step: 850 Avg Accuracy: 0.479739 Avg Top 5 Accuracy: 0.717924
2018-08-27 13:19:12,043 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 871
2018-08-27 13:19:13,588 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 872
2018-08-27 13:19:14,590 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 873
2018-08-27 13:19:16,093 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 874
2018-08-27 13:19:17,095 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 875
2018-08-27 13:19:18,598 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 876
2018-08-27 13:19:19,599 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 877
2018-08-27 13:19:21,102 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 878
2018-08-27 13:19:22,604 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 879
2018-08-27 13:19:23,605 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 880
2018-08-27 13:19:24,751 - AlexNetTest - INFO - Time: 13.042732 Step: 860 Avg Accuracy: 0.479902 Avg Top 5 Accuracy: 0.718133
2018-08-27 13:19:25,120 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 881
2018-08-27 13:19:26,122 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 882
2018-08-27 13:19:27,123 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 883
2018-08-27 13:19:28,125 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 884
2018-08-27 13:19:29,627 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 885
2018-08-27 13:19:30,629 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 886
2018-08-27 13:19:32,131 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 887
2018-08-27 13:19:33,633 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 888
2018-08-27 13:19:34,636 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 889
2018-08-27 13:19:36,138 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 890
2018-08-27 13:19:37,160 - AlexNetTest - INFO - Time: 12.408755 Step: 870 Avg Accuracy: 0.479836 Avg Top 5 Accuracy: 0.718230
2018-08-27 13:19:37,641 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 891
2018-08-27 13:19:38,642 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 892
2018-08-27 13:19:40,144 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 893
2018-08-27 13:19:41,145 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 894
2018-08-27 13:19:42,647 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 895
2018-08-27 13:19:44,148 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 896
2018-08-27 13:19:45,149 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 897
2018-08-27 13:19:46,658 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 898
2018-08-27 13:19:48,184 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 899
2018-08-27 13:19:49,186 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 900
2018-08-27 13:19:50,333 - AlexNetTest - INFO - Time: 13.171790 Step: 880 Avg Accuracy: 0.479870 Avg Top 5 Accuracy: 0.718475
2018-08-27 13:19:50,688 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 901
2018-08-27 13:19:51,690 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 902
2018-08-27 13:19:53,192 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 903
2018-08-27 13:19:54,695 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 904
2018-08-27 13:19:55,696 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 905
2018-08-27 13:19:57,201 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 906
2018-08-27 13:19:58,202 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 907
2018-08-27 13:19:59,706 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 908
2018-08-27 13:20:01,208 - AlexNetTest.LSVRC2010 - DEBUG - Reading batch for index: 909