-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathALL_CNN_C.log
More file actions
3717 lines (3717 loc) · 261 KB
/
ALL_CNN_C.log
File metadata and controls
3717 lines (3717 loc) · 261 KB
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
I0130 12:52:39.850857 32230 caffe.cpp:217] Using GPUs 0
I0130 12:52:39.851308 32230 caffe.cpp:222] GPU 0: GeForce GTX TITAN X
I0130 12:52:40.054941 32230 solver.cpp:48] Initializing solver from parameters:
test_iter: 50
test_interval: 200
base_lr: 0.05
display: 200
max_iter: 70000
lr_policy: "multistep"
gamma: 0.1
momentum: 0.9
weight_decay: 0.001
snapshot: 2000
snapshot_prefix: "ALL_CNN_C"
solver_mode: GPU
device_id: 0
debug_info: false
net: "ALL_CNN_C_train_val.prototxt"
train_state {
level: 0
stage: ""
}
stepvalue: 40000
stepvalue: 50000
stepvalue: 60000
type: "SGD"
I0130 12:52:40.055204 32230 solver.cpp:91] Creating training net from net file: ALL_CNN_C_train_val.prototxt
I0130 12:52:40.055415 32230 net.cpp:322] The NetState phase (0) differed from the phase (1) specified by a rule in layer data
I0130 12:52:40.055522 32230 net.cpp:58] Initializing net from parameters:
name: "ALL-CNN-C"
state {
phase: TRAIN
level: 0
stage: ""
}
layer {
name: "data"
type: "Data"
top: "data"
top: "label"
include {
phase: TRAIN
}
data_param {
source: "cifar-10_train_lmdb"
batch_size: 256
backend: LMDB
}
}
layer {
name: "drop1"
type: "Dropout"
bottom: "data"
top: "data"
dropout_param {
dropout_ratio: 0.2
}
}
layer {
name: "conv1"
type: "Convolution"
bottom: "data"
top: "conv1"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu1"
type: "ReLU"
bottom: "conv1"
top: "conv1"
}
layer {
name: "conv2"
type: "Convolution"
bottom: "conv1"
top: "conv2"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu2"
type: "ReLU"
bottom: "conv2"
top: "conv2"
}
layer {
name: "conv3"
type: "Convolution"
bottom: "conv2"
top: "conv3"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu3"
type: "ReLU"
bottom: "conv3"
top: "conv3"
}
layer {
name: "drop2"
type: "Dropout"
bottom: "conv3"
top: "conv3"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "conv4"
type: "Convolution"
bottom: "conv3"
top: "conv4"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu4"
type: "ReLU"
bottom: "conv4"
top: "conv4"
}
layer {
name: "conv5"
type: "Convolution"
bottom: "conv4"
top: "conv5"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu5"
type: "ReLU"
bottom: "conv5"
top: "conv5"
}
layer {
name: "conv6"
type: "Convolution"
bottom: "conv5"
top: "conv6"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu6"
type: "ReLU"
bottom: "conv6"
top: "conv6"
}
layer {
name: "drop3"
type: "Dropout"
bottom: "conv6"
top: "conv6"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "conv7"
type: "Convolution"
bottom: "conv6"
top: "conv7"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu7"
type: "ReLU"
bottom: "conv7"
top: "conv7"
}
layer {
name: "conv8"
type: "Convolution"
bottom: "conv7"
top: "conv8"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
kernel_size: 1
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu8"
type: "ReLU"
bottom: "conv8"
top: "conv8"
}
layer {
name: "conv9"
type: "Convolution"
bottom: "conv8"
top: "conv9"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 10
kernel_size: 1
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu9"
type: "ReLU"
bottom: "conv9"
top: "conv9"
}
layer {
name: "pool"
type: "Pooling"
bottom: "conv9"
top: "pool"
pooling_param {
pool: AVE
global_pooling: true
}
}
layer {
name: "accuracy"
type: "Accuracy"
bottom: "pool"
bottom: "label"
top: "accuracy"
}
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "pool"
bottom: "label"
top: "loss"
}
I0130 12:52:40.055610 32230 layer_factory.hpp:77] Creating layer data
I0130 12:52:40.055814 32230 net.cpp:100] Creating Layer data
I0130 12:52:40.055820 32230 net.cpp:408] data -> data
I0130 12:52:40.055835 32230 net.cpp:408] data -> label
I0130 12:52:40.056236 32246 db_lmdb.cpp:35] Opened lmdb cifar-10_train_lmdb
I0130 12:52:40.063201 32230 data_layer.cpp:41] output data size: 256,3,32,32
I0130 12:52:40.067507 32230 net.cpp:150] Setting up data
I0130 12:52:40.067526 32230 net.cpp:157] Top shape: 256 3 32 32 (786432)
I0130 12:52:40.067529 32230 net.cpp:157] Top shape: 256 (256)
I0130 12:52:40.067531 32230 net.cpp:165] Memory required for data: 3146752
I0130 12:52:40.067545 32230 layer_factory.hpp:77] Creating layer label_data_1_split
I0130 12:52:40.067556 32230 net.cpp:100] Creating Layer label_data_1_split
I0130 12:52:40.067562 32230 net.cpp:434] label_data_1_split <- label
I0130 12:52:40.067575 32230 net.cpp:408] label_data_1_split -> label_data_1_split_0
I0130 12:52:40.067585 32230 net.cpp:408] label_data_1_split -> label_data_1_split_1
I0130 12:52:40.067651 32230 net.cpp:150] Setting up label_data_1_split
I0130 12:52:40.067703 32230 net.cpp:157] Top shape: 256 (256)
I0130 12:52:40.067706 32230 net.cpp:157] Top shape: 256 (256)
I0130 12:52:40.067708 32230 net.cpp:165] Memory required for data: 3148800
I0130 12:52:40.067710 32230 layer_factory.hpp:77] Creating layer drop1
I0130 12:52:40.067714 32230 net.cpp:100] Creating Layer drop1
I0130 12:52:40.067716 32230 net.cpp:434] drop1 <- data
I0130 12:52:40.067719 32230 net.cpp:395] drop1 -> data (in-place)
I0130 12:52:40.067746 32230 net.cpp:150] Setting up drop1
I0130 12:52:40.067750 32230 net.cpp:157] Top shape: 256 3 32 32 (786432)
I0130 12:52:40.067752 32230 net.cpp:165] Memory required for data: 6294528
I0130 12:52:40.067754 32230 layer_factory.hpp:77] Creating layer conv1
I0130 12:52:40.067765 32230 net.cpp:100] Creating Layer conv1
I0130 12:52:40.067767 32230 net.cpp:434] conv1 <- data
I0130 12:52:40.067771 32230 net.cpp:408] conv1 -> conv1
I0130 12:52:40.225661 32230 net.cpp:150] Setting up conv1
I0130 12:52:40.225680 32230 net.cpp:157] Top shape: 256 96 32 32 (25165824)
I0130 12:52:40.225682 32230 net.cpp:165] Memory required for data: 106957824
I0130 12:52:40.225706 32230 layer_factory.hpp:77] Creating layer relu1
I0130 12:52:40.225713 32230 net.cpp:100] Creating Layer relu1
I0130 12:52:40.225716 32230 net.cpp:434] relu1 <- conv1
I0130 12:52:40.225720 32230 net.cpp:395] relu1 -> conv1 (in-place)
I0130 12:52:40.226183 32230 net.cpp:150] Setting up relu1
I0130 12:52:40.226199 32230 net.cpp:157] Top shape: 256 96 32 32 (25165824)
I0130 12:52:40.226202 32230 net.cpp:165] Memory required for data: 207621120
I0130 12:52:40.226204 32230 layer_factory.hpp:77] Creating layer conv2
I0130 12:52:40.226214 32230 net.cpp:100] Creating Layer conv2
I0130 12:52:40.226217 32230 net.cpp:434] conv2 <- conv1
I0130 12:52:40.226222 32230 net.cpp:408] conv2 -> conv2
I0130 12:52:40.228440 32230 net.cpp:150] Setting up conv2
I0130 12:52:40.228448 32230 net.cpp:157] Top shape: 256 96 32 32 (25165824)
I0130 12:52:40.228451 32230 net.cpp:165] Memory required for data: 308284416
I0130 12:52:40.228456 32230 layer_factory.hpp:77] Creating layer relu2
I0130 12:52:40.228459 32230 net.cpp:100] Creating Layer relu2
I0130 12:52:40.228461 32230 net.cpp:434] relu2 <- conv2
I0130 12:52:40.228464 32230 net.cpp:395] relu2 -> conv2 (in-place)
I0130 12:52:40.228579 32230 net.cpp:150] Setting up relu2
I0130 12:52:40.228584 32230 net.cpp:157] Top shape: 256 96 32 32 (25165824)
I0130 12:52:40.228585 32230 net.cpp:165] Memory required for data: 408947712
I0130 12:52:40.228586 32230 layer_factory.hpp:77] Creating layer conv3
I0130 12:52:40.228592 32230 net.cpp:100] Creating Layer conv3
I0130 12:52:40.228595 32230 net.cpp:434] conv3 <- conv2
I0130 12:52:40.228597 32230 net.cpp:408] conv3 -> conv3
I0130 12:52:40.230530 32230 net.cpp:150] Setting up conv3
I0130 12:52:40.230538 32230 net.cpp:157] Top shape: 256 96 16 16 (6291456)
I0130 12:52:40.230540 32230 net.cpp:165] Memory required for data: 434113536
I0130 12:52:40.230545 32230 layer_factory.hpp:77] Creating layer relu3
I0130 12:52:40.230550 32230 net.cpp:100] Creating Layer relu3
I0130 12:52:40.230551 32230 net.cpp:434] relu3 <- conv3
I0130 12:52:40.230554 32230 net.cpp:395] relu3 -> conv3 (in-place)
I0130 12:52:40.231003 32230 net.cpp:150] Setting up relu3
I0130 12:52:40.231009 32230 net.cpp:157] Top shape: 256 96 16 16 (6291456)
I0130 12:52:40.231011 32230 net.cpp:165] Memory required for data: 459279360
I0130 12:52:40.231012 32230 layer_factory.hpp:77] Creating layer drop2
I0130 12:52:40.231016 32230 net.cpp:100] Creating Layer drop2
I0130 12:52:40.231019 32230 net.cpp:434] drop2 <- conv3
I0130 12:52:40.231021 32230 net.cpp:395] drop2 -> conv3 (in-place)
I0130 12:52:40.231034 32230 net.cpp:150] Setting up drop2
I0130 12:52:40.231037 32230 net.cpp:157] Top shape: 256 96 16 16 (6291456)
I0130 12:52:40.231039 32230 net.cpp:165] Memory required for data: 484445184
I0130 12:52:40.231040 32230 layer_factory.hpp:77] Creating layer conv4
I0130 12:52:40.231045 32230 net.cpp:100] Creating Layer conv4
I0130 12:52:40.231046 32230 net.cpp:434] conv4 <- conv3
I0130 12:52:40.231050 32230 net.cpp:408] conv4 -> conv4
I0130 12:52:40.233346 32230 net.cpp:150] Setting up conv4
I0130 12:52:40.233355 32230 net.cpp:157] Top shape: 256 192 16 16 (12582912)
I0130 12:52:40.233357 32230 net.cpp:165] Memory required for data: 534776832
I0130 12:52:40.233361 32230 layer_factory.hpp:77] Creating layer relu4
I0130 12:52:40.233364 32230 net.cpp:100] Creating Layer relu4
I0130 12:52:40.233366 32230 net.cpp:434] relu4 <- conv4
I0130 12:52:40.233368 32230 net.cpp:395] relu4 -> conv4 (in-place)
I0130 12:52:40.233830 32230 net.cpp:150] Setting up relu4
I0130 12:52:40.233836 32230 net.cpp:157] Top shape: 256 192 16 16 (12582912)
I0130 12:52:40.233839 32230 net.cpp:165] Memory required for data: 585108480
I0130 12:52:40.233840 32230 layer_factory.hpp:77] Creating layer conv5
I0130 12:52:40.233847 32230 net.cpp:100] Creating Layer conv5
I0130 12:52:40.233850 32230 net.cpp:434] conv5 <- conv4
I0130 12:52:40.233852 32230 net.cpp:408] conv5 -> conv5
I0130 12:52:40.237483 32230 net.cpp:150] Setting up conv5
I0130 12:52:40.237493 32230 net.cpp:157] Top shape: 256 192 16 16 (12582912)
I0130 12:52:40.237496 32230 net.cpp:165] Memory required for data: 635440128
I0130 12:52:40.237504 32230 layer_factory.hpp:77] Creating layer relu5
I0130 12:52:40.237507 32230 net.cpp:100] Creating Layer relu5
I0130 12:52:40.237510 32230 net.cpp:434] relu5 <- conv5
I0130 12:52:40.237516 32230 net.cpp:395] relu5 -> conv5 (in-place)
I0130 12:52:40.237681 32230 net.cpp:150] Setting up relu5
I0130 12:52:40.237687 32230 net.cpp:157] Top shape: 256 192 16 16 (12582912)
I0130 12:52:40.237689 32230 net.cpp:165] Memory required for data: 685771776
I0130 12:52:40.237691 32230 layer_factory.hpp:77] Creating layer conv6
I0130 12:52:40.237697 32230 net.cpp:100] Creating Layer conv6
I0130 12:52:40.237699 32230 net.cpp:434] conv6 <- conv5
I0130 12:52:40.237704 32230 net.cpp:408] conv6 -> conv6
I0130 12:52:40.241044 32230 net.cpp:150] Setting up conv6
I0130 12:52:40.241053 32230 net.cpp:157] Top shape: 256 192 8 8 (3145728)
I0130 12:52:40.241055 32230 net.cpp:165] Memory required for data: 698354688
I0130 12:52:40.241060 32230 layer_factory.hpp:77] Creating layer relu6
I0130 12:52:40.241065 32230 net.cpp:100] Creating Layer relu6
I0130 12:52:40.241066 32230 net.cpp:434] relu6 <- conv6
I0130 12:52:40.241068 32230 net.cpp:395] relu6 -> conv6 (in-place)
I0130 12:52:40.241533 32230 net.cpp:150] Setting up relu6
I0130 12:52:40.241539 32230 net.cpp:157] Top shape: 256 192 8 8 (3145728)
I0130 12:52:40.241541 32230 net.cpp:165] Memory required for data: 710937600
I0130 12:52:40.241542 32230 layer_factory.hpp:77] Creating layer drop3
I0130 12:52:40.241549 32230 net.cpp:100] Creating Layer drop3
I0130 12:52:40.241551 32230 net.cpp:434] drop3 <- conv6
I0130 12:52:40.241554 32230 net.cpp:395] drop3 -> conv6 (in-place)
I0130 12:52:40.241571 32230 net.cpp:150] Setting up drop3
I0130 12:52:40.241575 32230 net.cpp:157] Top shape: 256 192 8 8 (3145728)
I0130 12:52:40.241576 32230 net.cpp:165] Memory required for data: 723520512
I0130 12:52:40.241577 32230 layer_factory.hpp:77] Creating layer conv7
I0130 12:52:40.241585 32230 net.cpp:100] Creating Layer conv7
I0130 12:52:40.241586 32230 net.cpp:434] conv7 <- conv6
I0130 12:52:40.241590 32230 net.cpp:408] conv7 -> conv7
I0130 12:52:40.244515 32230 net.cpp:150] Setting up conv7
I0130 12:52:40.244523 32230 net.cpp:157] Top shape: 256 192 6 6 (1769472)
I0130 12:52:40.244524 32230 net.cpp:165] Memory required for data: 730598400
I0130 12:52:40.244529 32230 layer_factory.hpp:77] Creating layer relu7
I0130 12:52:40.244532 32230 net.cpp:100] Creating Layer relu7
I0130 12:52:40.244534 32230 net.cpp:434] relu7 <- conv7
I0130 12:52:40.244537 32230 net.cpp:395] relu7 -> conv7 (in-place)
I0130 12:52:40.245004 32230 net.cpp:150] Setting up relu7
I0130 12:52:40.245010 32230 net.cpp:157] Top shape: 256 192 6 6 (1769472)
I0130 12:52:40.245012 32230 net.cpp:165] Memory required for data: 737676288
I0130 12:52:40.245013 32230 layer_factory.hpp:77] Creating layer conv8
I0130 12:52:40.245020 32230 net.cpp:100] Creating Layer conv8
I0130 12:52:40.245023 32230 net.cpp:434] conv8 <- conv7
I0130 12:52:40.245026 32230 net.cpp:408] conv8 -> conv8
I0130 12:52:40.247067 32230 net.cpp:150] Setting up conv8
I0130 12:52:40.247076 32230 net.cpp:157] Top shape: 256 192 6 6 (1769472)
I0130 12:52:40.247077 32230 net.cpp:165] Memory required for data: 744754176
I0130 12:52:40.247081 32230 layer_factory.hpp:77] Creating layer relu8
I0130 12:52:40.247084 32230 net.cpp:100] Creating Layer relu8
I0130 12:52:40.247087 32230 net.cpp:434] relu8 <- conv8
I0130 12:52:40.247089 32230 net.cpp:395] relu8 -> conv8 (in-place)
I0130 12:52:40.247206 32230 net.cpp:150] Setting up relu8
I0130 12:52:40.247210 32230 net.cpp:157] Top shape: 256 192 6 6 (1769472)
I0130 12:52:40.247212 32230 net.cpp:165] Memory required for data: 751832064
I0130 12:52:40.247215 32230 layer_factory.hpp:77] Creating layer conv9
I0130 12:52:40.247220 32230 net.cpp:100] Creating Layer conv9
I0130 12:52:40.247223 32230 net.cpp:434] conv9 <- conv8
I0130 12:52:40.247228 32230 net.cpp:408] conv9 -> conv9
I0130 12:52:40.248474 32230 net.cpp:150] Setting up conv9
I0130 12:52:40.248481 32230 net.cpp:157] Top shape: 256 10 6 6 (92160)
I0130 12:52:40.248482 32230 net.cpp:165] Memory required for data: 752200704
I0130 12:52:40.248489 32230 layer_factory.hpp:77] Creating layer relu9
I0130 12:52:40.248492 32230 net.cpp:100] Creating Layer relu9
I0130 12:52:40.248494 32230 net.cpp:434] relu9 <- conv9
I0130 12:52:40.248503 32230 net.cpp:395] relu9 -> conv9 (in-place)
I0130 12:52:40.248965 32230 net.cpp:150] Setting up relu9
I0130 12:52:40.248971 32230 net.cpp:157] Top shape: 256 10 6 6 (92160)
I0130 12:52:40.248973 32230 net.cpp:165] Memory required for data: 752569344
I0130 12:52:40.248975 32230 layer_factory.hpp:77] Creating layer pool
I0130 12:52:40.248980 32230 net.cpp:100] Creating Layer pool
I0130 12:52:40.248981 32230 net.cpp:434] pool <- conv9
I0130 12:52:40.248986 32230 net.cpp:408] pool -> pool
I0130 12:52:40.249127 32230 net.cpp:150] Setting up pool
I0130 12:52:40.249133 32230 net.cpp:157] Top shape: 256 10 1 1 (2560)
I0130 12:52:40.249135 32230 net.cpp:165] Memory required for data: 752579584
I0130 12:52:40.249136 32230 layer_factory.hpp:77] Creating layer pool_pool_0_split
I0130 12:52:40.249140 32230 net.cpp:100] Creating Layer pool_pool_0_split
I0130 12:52:40.249142 32230 net.cpp:434] pool_pool_0_split <- pool
I0130 12:52:40.249145 32230 net.cpp:408] pool_pool_0_split -> pool_pool_0_split_0
I0130 12:52:40.249148 32230 net.cpp:408] pool_pool_0_split -> pool_pool_0_split_1
I0130 12:52:40.249174 32230 net.cpp:150] Setting up pool_pool_0_split
I0130 12:52:40.249178 32230 net.cpp:157] Top shape: 256 10 1 1 (2560)
I0130 12:52:40.249181 32230 net.cpp:157] Top shape: 256 10 1 1 (2560)
I0130 12:52:40.249181 32230 net.cpp:165] Memory required for data: 752600064
I0130 12:52:40.249183 32230 layer_factory.hpp:77] Creating layer accuracy
I0130 12:52:40.249188 32230 net.cpp:100] Creating Layer accuracy
I0130 12:52:40.249189 32230 net.cpp:434] accuracy <- pool_pool_0_split_0
I0130 12:52:40.249192 32230 net.cpp:434] accuracy <- label_data_1_split_0
I0130 12:52:40.249194 32230 net.cpp:408] accuracy -> accuracy
I0130 12:52:40.249202 32230 net.cpp:150] Setting up accuracy
I0130 12:52:40.249203 32230 net.cpp:157] Top shape: (1)
I0130 12:52:40.249205 32230 net.cpp:165] Memory required for data: 752600068
I0130 12:52:40.249207 32230 layer_factory.hpp:77] Creating layer loss
I0130 12:52:40.249209 32230 net.cpp:100] Creating Layer loss
I0130 12:52:40.249212 32230 net.cpp:434] loss <- pool_pool_0_split_1
I0130 12:52:40.249213 32230 net.cpp:434] loss <- label_data_1_split_1
I0130 12:52:40.249215 32230 net.cpp:408] loss -> loss
I0130 12:52:40.249222 32230 layer_factory.hpp:77] Creating layer loss
I0130 12:52:40.249748 32230 net.cpp:150] Setting up loss
I0130 12:52:40.249754 32230 net.cpp:157] Top shape: (1)
I0130 12:52:40.249755 32230 net.cpp:160] with loss weight 1
I0130 12:52:40.249773 32230 net.cpp:165] Memory required for data: 752600072
I0130 12:52:40.249774 32230 net.cpp:226] loss needs backward computation.
I0130 12:52:40.249781 32230 net.cpp:228] accuracy does not need backward computation.
I0130 12:52:40.249784 32230 net.cpp:226] pool_pool_0_split needs backward computation.
I0130 12:52:40.249786 32230 net.cpp:226] pool needs backward computation.
I0130 12:52:40.249788 32230 net.cpp:226] relu9 needs backward computation.
I0130 12:52:40.249789 32230 net.cpp:226] conv9 needs backward computation.
I0130 12:52:40.249791 32230 net.cpp:226] relu8 needs backward computation.
I0130 12:52:40.249794 32230 net.cpp:226] conv8 needs backward computation.
I0130 12:52:40.249795 32230 net.cpp:226] relu7 needs backward computation.
I0130 12:52:40.249797 32230 net.cpp:226] conv7 needs backward computation.
I0130 12:52:40.249799 32230 net.cpp:226] drop3 needs backward computation.
I0130 12:52:40.249800 32230 net.cpp:226] relu6 needs backward computation.
I0130 12:52:40.249802 32230 net.cpp:226] conv6 needs backward computation.
I0130 12:52:40.249804 32230 net.cpp:226] relu5 needs backward computation.
I0130 12:52:40.249805 32230 net.cpp:226] conv5 needs backward computation.
I0130 12:52:40.249809 32230 net.cpp:226] relu4 needs backward computation.
I0130 12:52:40.249809 32230 net.cpp:226] conv4 needs backward computation.
I0130 12:52:40.249811 32230 net.cpp:226] drop2 needs backward computation.
I0130 12:52:40.249814 32230 net.cpp:226] relu3 needs backward computation.
I0130 12:52:40.249815 32230 net.cpp:226] conv3 needs backward computation.
I0130 12:52:40.249821 32230 net.cpp:226] relu2 needs backward computation.
I0130 12:52:40.249824 32230 net.cpp:226] conv2 needs backward computation.
I0130 12:52:40.249825 32230 net.cpp:226] relu1 needs backward computation.
I0130 12:52:40.249827 32230 net.cpp:226] conv1 needs backward computation.
I0130 12:52:40.249830 32230 net.cpp:228] drop1 does not need backward computation.
I0130 12:52:40.249831 32230 net.cpp:228] label_data_1_split does not need backward computation.
I0130 12:52:40.249833 32230 net.cpp:228] data does not need backward computation.
I0130 12:52:40.249835 32230 net.cpp:270] This network produces output accuracy
I0130 12:52:40.249837 32230 net.cpp:270] This network produces output loss
I0130 12:52:40.249848 32230 net.cpp:283] Network initialization done.
I0130 12:52:40.250032 32230 solver.cpp:181] Creating test net (#0) specified by net file: ALL_CNN_C_train_val.prototxt
I0130 12:52:40.250053 32230 net.cpp:322] The NetState phase (1) differed from the phase (0) specified by a rule in layer data
I0130 12:52:40.250143 32230 net.cpp:58] Initializing net from parameters:
name: "ALL-CNN-C"
state {
phase: TEST
}
layer {
name: "data"
type: "Data"
top: "data"
top: "label"
include {
phase: TEST
}
data_param {
source: "cifar-10_test_lmdb"
batch_size: 200
backend: LMDB
}
}
layer {
name: "drop1"
type: "Dropout"
bottom: "data"
top: "data"
dropout_param {
dropout_ratio: 0.2
}
}
layer {
name: "conv1"
type: "Convolution"
bottom: "data"
top: "conv1"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu1"
type: "ReLU"
bottom: "conv1"
top: "conv1"
}
layer {
name: "conv2"
type: "Convolution"
bottom: "conv1"
top: "conv2"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu2"
type: "ReLU"
bottom: "conv2"
top: "conv2"
}
layer {
name: "conv3"
type: "Convolution"
bottom: "conv2"
top: "conv3"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu3"
type: "ReLU"
bottom: "conv3"
top: "conv3"
}
layer {
name: "drop2"
type: "Dropout"
bottom: "conv3"
top: "conv3"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "conv4"
type: "Convolution"
bottom: "conv3"
top: "conv4"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu4"
type: "ReLU"
bottom: "conv4"
top: "conv4"
}
layer {
name: "conv5"
type: "Convolution"
bottom: "conv4"
top: "conv5"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu5"
type: "ReLU"
bottom: "conv5"
top: "conv5"
}
layer {
name: "conv6"
type: "Convolution"
bottom: "conv5"
top: "conv6"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
pad: 1
kernel_size: 3
stride: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu6"
type: "ReLU"
bottom: "conv6"
top: "conv6"
}
layer {
name: "drop3"
type: "Dropout"
bottom: "conv6"
top: "conv6"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "conv7"
type: "Convolution"
bottom: "conv6"
top: "conv7"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
kernel_size: 3
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu7"
type: "ReLU"
bottom: "conv7"
top: "conv7"
}
layer {
name: "conv8"
type: "Convolution"
bottom: "conv7"
top: "conv8"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 192
kernel_size: 1
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu8"
type: "ReLU"
bottom: "conv8"
top: "conv8"
}
layer {
name: "conv9"
type: "Convolution"
bottom: "conv8"
top: "conv9"
param {
lr_mult: 1
}
param {
lr_mult: 1
}
convolution_param {
num_output: 10
kernel_size: 1
stride: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu9"
type: "ReLU"
bottom: "conv9"
top: "conv9"
}
layer {
name: "pool"
type: "Pooling"
bottom: "conv9"
top: "pool"
pooling_param {
pool: AVE
global_pooling: true
}
}
layer {
name: "accuracy"
type: "Accuracy"
bottom: "pool"
bottom: "label"
top: "accuracy"
}
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "pool"
bottom: "label"
top: "loss"
}
I0130 12:52:40.250202 32230 layer_factory.hpp:77] Creating layer data
I0130 12:52:40.250322 32230 net.cpp:100] Creating Layer data
I0130 12:52:40.250329 32230 net.cpp:408] data -> data
I0130 12:52:40.250332 32230 net.cpp:408] data -> label
I0130 12:52:40.250844 32248 db_lmdb.cpp:35] Opened lmdb cifar-10_test_lmdb
I0130 12:52:40.250937 32230 data_layer.cpp:41] output data size: 200,3,32,32
I0130 12:52:40.254842 32230 net.cpp:150] Setting up data
I0130 12:52:40.254861 32230 net.cpp:157] Top shape: 200 3 32 32 (614400)
I0130 12:52:40.254864 32230 net.cpp:157] Top shape: 200 (200)
I0130 12:52:40.254865 32230 net.cpp:165] Memory required for data: 2458400
I0130 12:52:40.254869 32230 layer_factory.hpp:77] Creating layer label_data_1_split
I0130 12:52:40.254879 32230 net.cpp:100] Creating Layer label_data_1_split
I0130 12:52:40.254884 32230 net.cpp:434] label_data_1_split <- label
I0130 12:52:40.254889 32230 net.cpp:408] label_data_1_split -> label_data_1_split_0
I0130 12:52:40.254895 32230 net.cpp:408] label_data_1_split -> label_data_1_split_1
I0130 12:52:40.254956 32230 net.cpp:150] Setting up label_data_1_split
I0130 12:52:40.254961 32230 net.cpp:157] Top shape: 200 (200)
I0130 12:52:40.254962 32230 net.cpp:157] Top shape: 200 (200)
I0130 12:52:40.254964 32230 net.cpp:165] Memory required for data: 2460000
I0130 12:52:40.254966 32230 layer_factory.hpp:77] Creating layer drop1
I0130 12:52:40.254971 32230 net.cpp:100] Creating Layer drop1
I0130 12:52:40.254972 32230 net.cpp:434] drop1 <- data
I0130 12:52:40.254976 32230 net.cpp:395] drop1 -> data (in-place)
I0130 12:52:40.255007 32230 net.cpp:150] Setting up drop1
I0130 12:52:40.255010 32230 net.cpp:157] Top shape: 200 3 32 32 (614400)
I0130 12:52:40.255012 32230 net.cpp:165] Memory required for data: 4917600
I0130 12:52:40.255014 32230 layer_factory.hpp:77] Creating layer conv1
I0130 12:52:40.255023 32230 net.cpp:100] Creating Layer conv1
I0130 12:52:40.255026 32230 net.cpp:434] conv1 <- data
I0130 12:52:40.255030 32230 net.cpp:408] conv1 -> conv1
I0130 12:52:40.256852 32230 net.cpp:150] Setting up conv1
I0130 12:52:40.256865 32230 net.cpp:157] Top shape: 200 96 32 32 (19660800)
I0130 12:52:40.256867 32230 net.cpp:165] Memory required for data: 83560800
I0130 12:52:40.256875 32230 layer_factory.hpp:77] Creating layer relu1
I0130 12:52:40.256886 32230 net.cpp:100] Creating Layer relu1
I0130 12:52:40.256901 32230 net.cpp:434] relu1 <- conv1
I0130 12:52:40.256904 32230 net.cpp:395] relu1 -> conv1 (in-place)
I0130 12:52:40.257618 32230 net.cpp:150] Setting up relu1
I0130 12:52:40.257627 32230 net.cpp:157] Top shape: 200 96 32 32 (19660800)
I0130 12:52:40.257630 32230 net.cpp:165] Memory required for data: 162204000
I0130 12:52:40.257633 32230 layer_factory.hpp:77] Creating layer conv2
I0130 12:52:40.257643 32230 net.cpp:100] Creating Layer conv2
I0130 12:52:40.257647 32230 net.cpp:434] conv2 <- conv1
I0130 12:52:40.257652 32230 net.cpp:408] conv2 -> conv2
I0130 12:52:40.259987 32230 net.cpp:150] Setting up conv2
I0130 12:52:40.259999 32230 net.cpp:157] Top shape: 200 96 32 32 (19660800)