-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_output.json
More file actions
2312 lines (2312 loc) · 192 KB
/
Copy pathexample_output.json
File metadata and controls
2312 lines (2312 loc) · 192 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
[
{
"venue": "NIPS.cc",
"year": 2018,
"submissions": [
{
"id": "HkghWScuoQ",
"original": "B1giWS5Oim",
"cdate": 1540035843524,
"tcdate": 1540035843524,
"tmdate": 1543593753140,
"ddate": null,
"number": 36,
"content": {
"title": "Targeted Dropout",
"abstract": "Neural networks are extremely flexible models due to their large number of parameters, which is beneficial for learning, but also highly redundant. This makes it possible to compress neural networks without having a drastic effect on performance. We introduce targeted dropout, a strategy for post hoc pruning of neural network weights and units that builds the pruning mechanism directly into learning. At each weight update, targeted dropout selects a candidate set for pruning using a simple selection criterion, and then stochastically prunes the network via dropout applied to this set. The resulting network learns to be explicitly robust to pruning, comparing favourably to more complicated regularization schemes while at the same time being extremely simple to implement, and easy to tune.",
"paperhash": "gomez|targeted_dropout",
"authorids": [
"aidan@for.ai",
"ivan@for.ai",
"kswersky@google.com",
"yarin@cs.ox.ac.uk",
"geoffhinton@google.com"
],
"authors": [
"Aidan N. Gomez",
"Ivan Zhang",
"Kevin Swersky",
"Yarin Gal",
"Geoffrey E. Hinton"
],
"keywords": [],
"pdf": "/pdf/1e9b22c08d7651c60362b60af660c1f92d304b7c.pdf"
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": {
"replyCount": 6
},
"revisions": [
{
"id": "SkZXJJk1N",
"original": "B1giWS5Oim",
"cdate": 1540035843524,
"tcdate": 1543593753140,
"tmdate": 1543593753140,
"ddate": null,
"number": 36,
"content": {
"title": "Targeted Dropout",
"abstract": "Neural networks are extremely flexible models due to their large number of parameters, which is beneficial for learning, but also highly redundant. This makes it possible to compress neural networks without having a drastic effect on performance. We introduce targeted dropout, a strategy for post hoc pruning of neural network weights and units that builds the pruning mechanism directly into learning. At each weight update, targeted dropout selects a candidate set for pruning using a simple selection criterion, and then stochastically prunes the network via dropout applied to this set. The resulting network learns to be explicitly robust to pruning, comparing favourably to more complicated regularization schemes while at the same time being extremely simple to implement, and easy to tune.",
"authorids": [
"aidan@for.ai",
"ivan@for.ai",
"kswersky@google.com",
"yarin@cs.ox.ac.uk",
"geoffhinton@google.com"
],
"authors": [
"Aidan N. Gomez",
"Ivan Zhang",
"Kevin Swersky",
"Yarin Gal",
"Geoffrey E. Hinton"
],
"keywords": [],
"pdf": "/pdf/1e9b22c08d7651c60362b60af660c1f92d304b7c.pdf",
"paperhash": "gomez|targeted_dropout"
},
"forum": "HkghWScuoQ",
"referent": "HkghWScuoQ",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": null
},
{
"id": "HkqzZlv6Q",
"original": "B1giWS5Oim",
"cdate": 1540035843524,
"tcdate": 1542025489671,
"tmdate": 1542025489671,
"ddate": null,
"number": 36,
"content": {
"title": "Targeted Dropout",
"abstract": "Neural networks are extremely flexible models due to their large number of parameters, which is beneficial for learning, but also highly redundant. This makes it possible to compress neural networks without having a drastic effect on performance. We introduce targeted dropout, a strategy for post hoc pruning of neural network weights and units that builds the pruning mechanism directly into learning. At each weight update, targeted dropout selects a candidate set for pruning using a simple selection criterion, and then stochastically prunes the network via dropout applied to this set. The resulting network learns to be explicitly robust to pruning, comparing favourably to more complicated regularization schemes while at the same time being extremely simple to implement, and easy to tune.",
"authorids": [
"aidan@for.ai",
"ivan@for.ai",
"kswersky@google.com",
"yarin@cs.ox.ac.uk",
"geoffhinton@google.com"
],
"authors": [
"Aidan N. Gomez",
"Ivan Zhang",
"Kevin Swersky",
"Yarin Gal",
"Geoffrey E. Hinton"
],
"keywords": [],
"pdf": "/pdf/91fbf2e278d30d18142086094fa69005c9f12286.pdf",
"paperhash": "gomez|targeted_dropout"
},
"forum": "HkghWScuoQ",
"referent": "HkghWScuoQ",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": null
},
{
"id": "rJs-HcujQ",
"original": "B1giWS5Oim",
"cdate": 1540035843524,
"tcdate": 1540035842941,
"tmdate": 1540999919206,
"ddate": null,
"number": 36,
"content": {
"title": "Targeted Dropout",
"abstract": "Neural networks are extremely flexible models due to their large number of parameters, which is beneficial for learning, but also highly redundant. This makes it possible to compress neural networks without having a drastic effect on performance. We introduce targeted dropout, a strategy for post hoc pruning of neural network weights and units that builds the pruning mechanism directly into learning. At each weight update, targeted dropout selects a candidate set for pruning using a simple selection criterion, and then stochastically prunes the network via dropout applied to this set. The resulting network learns to be explicitly robust to pruning, comparing favourably to more complicated regularization schemes while at the same time being extremely simple to implement, and easy to tune.",
"paperhash": "gomez|targeted_dropout",
"authorids": [
"aidan@for.ai",
"ivan@for.ai",
"kswersky@google.com",
"yarin@cs.ox.ac.uk",
"geoffhinton@google.com"
],
"authors": [
"Aidan N. Gomez",
"Ivan Zhang",
"Kevin Swersky",
"Yarin Gal",
"Geoffrey E. Hinton"
],
"keywords": [],
"pdf": "/pdf/6bf98c8e2392df0626fe6b8ccff098f7d917f81c.pdf"
},
"forum": "HkghWScuoQ",
"referent": "HkghWScuoQ",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": null
},
{
"id": "r1DVUfG3m",
"original": "B1giWS5Oim",
"cdate": 1540035843524,
"tcdate": 1540658735199,
"tmdate": 1540658735199,
"ddate": null,
"number": 36,
"content": {
"title": "Targeted Dropout",
"abstract": "Neural networks are extremely flexible models due to their large number of parameters, which is beneficial for learning, but also highly redundant. This makes it possible to compress neural networks without having a drastic effect on performance. We introduce targeted dropout, a strategy for post hoc pruning of neural network weights and units that builds the pruning mechanism directly into learning. At each weight update, targeted dropout selects a candidate set for pruning using a simple selection criterion, and then stochastically prunes the network via dropout applied to this set. The resulting network learns to be explicitly robust to pruning, comparing favourably to more complicated regularization schemes while at the same time being extremely simple to implement, and easy to tune.",
"authorids": [
"aidan@for.ai",
"ivan@for.ai",
"kswersky@google.com",
"yarin@cs.ox.ac.uk",
"geoffhinton@google.com"
],
"authors": [
"Aidan N. Gomez",
"Ivan Zhang",
"Kevin Swersky",
"Yarin Gal",
"Geoffrey E. Hinton"
],
"keywords": [],
"pdf": "/pdf/6bf98c8e2392df0626fe6b8ccff098f7d917f81c.pdf",
"paperhash": "gomez|targeted_dropout"
},
"forum": "HkghWScuoQ",
"referent": "HkghWScuoQ",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": null
}
],
"notes": [
{
"id": "HJGsH53x6Q",
"original": null,
"cdate": 1541618243229,
"tcdate": 1541618243229,
"tmdate": 1541618243229,
"ddate": null,
"number": 1,
"content": {
"title": "Acceptance Decision",
"decision": "accept"
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Decision",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "r1ZiSchepX",
"original": null,
"cdate": 1541618243229,
"tcdate": 1541618243229,
"tmdate": 1541618243229,
"ddate": null,
"number": 1,
"content": {
"title": "Acceptance Decision",
"decision": "accept"
},
"forum": "HkghWScuoQ",
"referent": "HJGsH53x6Q",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Decision",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"details": {
"replyCount": 0
}
}
]
},
{
"id": "B1lXNPfx3m",
"original": null,
"cdate": 1540527914527,
"tcdate": 1540527914527,
"tmdate": 1540527914527,
"ddate": null,
"number": 1,
"content": {
"title": "An important direction to explore.",
"review": "\nThis paper proposed to explore an important direction i.e. to incorporate stochastic dropout into the sparsity regularisation during learning, and justified its argument with preliminary yet convincing experimental results.\n\nMy main concern is the lacking of the proof of convergence, both empirical and theoretical, for such a stochastic pruning and dropout approach. Even though there is a page limit, adding some detailed analysis or empirical studies in appendix would greatly improve the paper.\n\nOverall, this is a well motivated work with promising results that should be of interest to large audience at the conference. ",
"rating": "4: Top 50% of accepted papers, clear accept",
"confidence": "2: The reviewer is fairly confident that the evaluation is correct"
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Review",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/AnonReviewer5"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/AnonReviewer5"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "BkXNPGlnm",
"original": null,
"cdate": 1540527914527,
"tcdate": 1540527914527,
"tmdate": 1540527914527,
"ddate": null,
"number": 1,
"content": {
"title": "An important direction to explore.",
"review": "\nThis paper proposed to explore an important direction i.e. to incorporate stochastic dropout into the sparsity regularisation during learning, and justified its argument with preliminary yet convincing experimental results.\n\nMy main concern is the lacking of the proof of convergence, both empirical and theoretical, for such a stochastic pruning and dropout approach. Even though there is a page limit, adding some detailed analysis or empirical studies in appendix would greatly improve the paper.\n\nOverall, this is a well motivated work with promising results that should be of interest to large audience at the conference. ",
"rating": "4: Top 50% of accepted papers, clear accept",
"confidence": "2: The reviewer is fairly confident that the evaluation is correct"
},
"forum": "HkghWScuoQ",
"referent": "B1lXNPfx3m",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Review",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/AnonReviewer5"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/AnonReviewer5"
],
"details": {
"replyCount": 0
}
}
]
},
{
"id": "SkgePO3js7",
"original": null,
"cdate": 1540241496271,
"tcdate": 1540241496271,
"tmdate": 1540724314080,
"ddate": null,
"number": 1,
"content": {
"comment": "The authors presented a novel regularization method for fusing post hoc pruning methods with the training process, the method is based on using the pruning strategy information and bias the dropout criteria based on the information.\n\nI believe the intuition behind the idea is solid, it introduced a bridge between known pruning techniques such as [6] and [12], and dropout. However, there are some parts that confused me; line 56 and 57 contain multiple points:\n\n- Citing [6] and [12] as weight pruning techniques, while it holds true for the first method, the second method prunes feature maps, not weights.\n\n- In the explanation of weight pruning, it is mentioned that it considers whole filters, which is not the case for weight pruning nor [6]\n\n- [12] is cited in unit and weight pruning, does it belong to both?\n\nPros:\n\n- Novelty\n- Methods used\n\nCons:\n\n- Parts which caused confusion (mentioned above)\n- Not considering comparing the results to the original methods (e.g, produce tests on LeNet and compare with results of [6] on LeNet)\n\nRating: 3/5\nConfidence: 3/3\n\n\n[6] Song Han, Jeff Pool, John Tran, and William Dally. Learning both weights and connections\nfor efficient neural network. In Advances in neural information processing systems\n\n[12] Pavlo Molchanov, Stephen Tyree, Tero Karras, Timo Aila, and Jan Kautz. Pruning convolutional\nneural networks for resource efficient inference. 2016."
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Reviewers"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Reviewers"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "S1eDO2jo7",
"original": null,
"cdate": 1540241496271,
"tcdate": 1540241496271,
"tmdate": 1540724314080,
"ddate": null,
"number": 1,
"content": {
"comment": "The authors presented a novel regularization method for fusing post hoc pruning methods with the training process, the method is based on using the pruning strategy information and bias the dropout criteria based on the information.\n\nI believe the intuition behind the idea is solid, it introduced a bridge between known pruning techniques such as [6] and [12], and dropout. However, there are some parts that confused me; line 56 and 57 contain multiple points:\n\n- Citing [6] and [12] as weight pruning techniques, while it holds true for the first method, the second method prunes feature maps, not weights.\n\n- In the explanation of weight pruning, it is mentioned that it considers whole filters, which is not the case for weight pruning nor [6]\n\n- [12] is cited in unit and weight pruning, does it belong to both?\n\nPros:\n\n- Novelty\n- Methods used\n\nCons:\n\n- Parts which caused confusion (mentioned above)\n- Not considering comparing the results to the original methods (e.g, produce tests on LeNet and compare with results of [6] on LeNet)\n\nRating: 3/5\nConfidence: 3/3\n\n\n[6] Song Han, Jeff Pool, John Tran, and William Dally. Learning both weights and connections\nfor efficient neural network. In Advances in neural information processing systems\n\n[12] Pavlo Molchanov, Stephen Tyree, Tero Karras, Timo Aila, and Jan Kautz. Pruning convolutional\nneural networks for resource efficient inference. 2016."
},
"forum": "HkghWScuoQ",
"referent": "SkgePO3js7",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Reviewers"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Reviewers"
],
"details": {
"replyCount": 0
}
}
]
},
{
"id": "HkxCWIMz3X",
"original": null,
"cdate": 1540658694066,
"tcdate": 1540658694066,
"tmdate": 1540658694066,
"ddate": null,
"number": 3,
"content": {
"comment": "We would like to thank the reviewer for their comments. Thank you for bringing up the confusion regarding citation [12], we have removed [12] from the descriptions of \"weight\" and \"unit\" pruning, replacing them with earlier work presenting the techniques. Regarding the explanation of weight pruning, we thank the reviewer for pointing out the description error, we have corrected this in the revision.\n\nThank you for your time and comments,\nAuthors "
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "SkgePO3js7",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "SJR-Uzfnm",
"original": null,
"cdate": 1540658694066,
"tcdate": 1540658694066,
"tmdate": 1540658694066,
"ddate": null,
"number": 3,
"content": {
"comment": "We would like to thank the reviewer for their comments. Thank you for bringing up the confusion regarding citation [12], we have removed [12] from the descriptions of \"weight\" and \"unit\" pruning, replacing them with earlier work presenting the techniques. Regarding the explanation of weight pruning, we thank the reviewer for pointing out the description error, we have corrected this in the revision.\n\nThank you for your time and comments,\nAuthors "
},
"forum": "HkghWScuoQ",
"referent": "HkxCWIMz3X",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "SkgePO3js7",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": {
"replyCount": 0
}
}
]
},
{
"id": "HJldo0ZM3Q",
"original": null,
"cdate": 1540656800496,
"tcdate": 1540656800496,
"tmdate": 1540656800496,
"ddate": null,
"number": 2,
"content": {
"comment": "We thank the reviewer for the comments, we do have considerably more empirical results, as well as discussion on some possible explanations for the methods effectiveness that we can add to the final version of the paper.\n\nIn particular, we benchmark on MLPs, LeNet, and VGG16. All of which show results confirming the method's success. There are also visualizations of the change in function sensitivity as a consequence of our technique that we will add the appendix.\n\nAgain, we would like to thank the reviewer for their time and constructive comments,\nAuthors"
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "B1lXNPfx3m",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "Sk_jA-Mn7",
"original": null,
"cdate": 1540656800496,
"tcdate": 1540656800496,
"tmdate": 1540656800496,
"ddate": null,
"number": 2,
"content": {
"comment": "We thank the reviewer for the comments, we do have considerably more empirical results, as well as discussion on some possible explanations for the methods effectiveness that we can add to the final version of the paper.\n\nIn particular, we benchmark on MLPs, LeNet, and VGG16. All of which show results confirming the method's success. There are also visualizations of the change in function sensitivity as a consequence of our technique that we will add the appendix.\n\nAgain, we would like to thank the reviewer for their time and constructive comments,\nAuthors"
},
"forum": "HkghWScuoQ",
"referent": "HJldo0ZM3Q",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper36/Official_Comment",
"replyto": "B1lXNPfx3m",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper36/Authors"
],
"details": {
"replyCount": 0
}
}
]
},
{
"id": "rklW3dlAAm",
"original": null,
"cdate": 1543534761266,
"tcdate": 1543534761266,
"tmdate": 1543534761266,
"ddate": null,
"number": 42,
"content": {
"comment": "Smallify is referred to in the comparison tables. I assume this is Leclerc et. al. 2018, but you may want to be specific.",
"title": "Ref of Smallify suggested"
},
"forum": "HkghWScuoQ",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Comment",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"~Harris_Teague1"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "r1WnuxRRm",
"original": null,
"cdate": 1543534761266,
"tcdate": 1543534761266,
"tmdate": 1543534761266,
"ddate": null,
"number": 42,
"content": {
"comment": "Smallify is referred to in the comparison tables. I assume this is Leclerc et. al. 2018, but you may want to be specific.",
"title": "Ref of Smallify suggested"
},
"forum": "HkghWScuoQ",
"referent": "rklW3dlAAm",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Comment",
"replyto": "HkghWScuoQ",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"~Harris_Teague1"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"details": {
"replyCount": 0
}
}
]
}
]
},
{
"id": "r1eLk2mKiX",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1540074461855,
"tmdate": 1542159665434,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm is a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"paperhash": "liu|rethinking_the_value_of_network_pruning",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"sunmj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/dad7038fa745bf15afe2a9f5692a5c51a5433084.pdf"
},
"forum": "r1eLk2mKiX",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": {
"replyCount": 22
},
"revisions": [
{
"id": "SJKNaeKam",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1542159665434,
"tmdate": 1542159665434,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm is a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"sunmj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/dad7038fa745bf15afe2a9f5692a5c51a5433084.pdf",
"paperhash": "liu|rethinking_the_value_of_network_pruning"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
},
{
"id": "Bk6j5lKTQ",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1542159013190,
"tmdate": 1542159013190,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm is a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"sunmj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/0d61fbdafc911a1f8de814b2677abb33e9ac0814.pdf",
"paperhash": "liu|rethinking_the_value_of_network_pruning"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
},
{
"id": "SyS13QYsm",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1540074461234,
"tmdate": 1540999920343,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm is a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"paperhash": "liu|rethinking_the_value_of_network_pruning",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"sunmj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/23b9fcbd4ce5ba893795c99de5c1f6a15c962de2.pdf"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
},
{
"id": "SJT5ZH4nX",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1540800917394,
"tmdate": 1540800917394,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm is a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"sunmj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/23b9fcbd4ce5ba893795c99de5c1f6a15c962de2.pdf",
"paperhash": "liu|rethinking_the_value_of_network_pruning"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
},
{
"id": "BkNjEVtoQ",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1540076700229,
"tmdate": 1540076700229,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm consists of a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"smj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/af9aefd8dbdb9fb0948bd853d9a22e9ce81fd715.pdf",
"paperhash": "liu|rethinking_the_value_of_network_pruning"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
},
{
"id": "S1I027ts7",
"original": "H1xH1hQtjQ",
"cdate": 1540074461855,
"tcdate": 1540074701603,
"tmdate": 1540074701603,
"ddate": null,
"number": 49,
"content": {
"title": "Rethinking the Value of Network Pruning",
"abstract": "Network pruning is widely used for reducing the heavy computational cost of deep models. A typical pruning algorithm consists of a three-stage pipeline, i.e., training (a large model), pruning and fine-tuning. In this work, we make a rather surprising observation: fine-tuning a pruned model only gives comparable or even worse performance than training that model with randomly initialized weights. Our results have several implications: 1) training a large, over-parameterized model is not necessary to obtain an efficient final model, 2) learned \"important\" weights of the large model are not necessarily useful for the small pruned model, 3) the pruned architecture itself, rather than a set of inherited weights, is what leads to the efficiency benefit in the final model, which suggests that some pruning algorithms could be seen as performing network architecture search.",
"TL;DR": "In network pruning, fine-tuning a pruned model only gives comparable or worse performance than training it from scratch. This advocate a rethinking of existing pruning algorithms.",
"authorids": [
"zhuangl@berkeley.edu",
"smj15@gmail.com",
"tinghuiz@eecs.berkeley.edu",
"gaohuang.thu@gmail.com",
"trevordarrell@gmail.com"
],
"authors": [
"Zhuang Liu",
"Mingjie Sun",
"Tinghui Zhou",
"Gao Huang",
"Trevor Darrell"
],
"keywords": [
"Network Pruning",
"Network Compression",
"Architecture Search",
"Training from Scratch"
],
"pdf": "/pdf/15d2c1d7c68f28cdbc31e49950f8baeadbe84ddd.pdf",
"paperhash": "liu|rethinking_the_value_of_network_pruning"
},
"forum": "r1eLk2mKiX",
"referent": "r1eLk2mKiX",
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Blind_Submission",
"replyto": null,
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA/Paper49/Authors"
],
"details": null
}
],
"notes": [
{
"id": "SkgTS5nxpX",
"original": null,
"cdate": 1541618244633,
"tcdate": 1541618244633,
"tmdate": 1541618244633,
"ddate": null,
"number": 1,
"content": {
"title": "Acceptance Decision",
"decision": "accept"
},
"forum": "r1eLk2mKiX",
"referent": null,
"invitation": "NIPS.cc/2018/Workshop/CDNNRIA/-/Paper49/Decision",
"replyto": "r1eLk2mKiX",
"readers": [
"everyone"
],
"nonreaders": [],
"signatures": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"writers": [
"NIPS.cc/2018/Workshop/CDNNRIA"
],
"details": {
"replyCount": 0
},
"revisions": [
{
"id": "SJ6Bchgpm",
"original": null,