-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathdraft_bib.html
More file actions
1149 lines (1147 loc) · 40.8 KB
/
Copy pathdraft_bib.html
File metadata and controls
1149 lines (1147 loc) · 40.8 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
</dt-appendix>
</body>
<script type="text/bibliography">
@article{openai_gym,
title={Openai gym},
author={Brockman, Greg and Cheung, Vicki and Pettersson, Ludwig and Schneider, Jonas and Schulman, John and Tang, Jie and Zaremba, Wojciech},
journal={arXiv preprint arXiv:1606.01540},
year={2016},
url = {https://arxiv.org/abs/1606.01540},
}
@article{bbc_islands,
title={Iguana vs Snakes},
journal={Planet Earth II, Episode 1},
publisher={BBC Natural History},
author={Elizabeth White},
year=2016,
url={https://youtu.be/Rv9hn4IGofM}
}
@article{miles1995morphological,
title={Morphological correlates of locomotor performance in hatchling Amblyrhynchus cristatus},
author={Miles, Donald B and Fitzgerald, Lee A and Snell, Howard L},
journal={Oecologia},
volume={103},
number={2},
pages={261--264},
year={1995},
url={http://tiny.cc/t5iv7y},
publisher={Springer}
}
@article{burger1998antipredator,
title={Antipredator behaviour of hatchling snakes: effects of incubation temperature and simulated predators},
author={Burger, Joanna},
journal={Animal Behaviour},
volume={56},
number={3},
pages={547--553},
year={1998},
publisher={Elsevier}
}
@article{mori2000does,
title={Does prey matter? Geographic variation in antipredator responses of hatchlings of a Japanese natricine snake (Rhabdophis tigrinus).},
author={Mori, Akira and Burghardt, Gordon M},
journal={Journal of Comparative Psychology},
volume={114},
number={4},
pages={408},
year={2000},
url={http://tiny.cc/r8iv7y},
publisher={American Psychological Association}
}
@article{starck1998patterns,
title={Patterns of development: the altricial-precocial spectrum},
author={Starck, J Matthias and Ricklefs, Robert E},
journal={Oxford Ornithology Series},
volume={8},
pages={3--30},
year={1998},
publisher={Oxford University Press}
}
@article{goth2001innate,
title={Innate predator-recognition in Australian brush-turkey (Alectura lathami, Megapodiidae) hatchlings},
author={Goth, A},
journal={Behaviour},
volume={138},
number={1},
pages={117},
year={2001},
publisher={Leiden, Netherlands: EJ Brill, 1947-}
}
@article{lecun1995convolutional,
title={Convolutional networks for images, speech, and time series},
author={LeCun, Yann and Bengio, Yoshua},
journal={The handbook of brain theory and neural networks},
volume={3361},
number={10},
url={http://yann.lecun.com/exdb/publis/pdf/lecun-bengio-95a.pdf},
year={1995}
}
@article{fukushima1982neocognitron,
title={Neocognitron: A new algorithm for pattern recognition tolerant of deformations and shifts in position},
author={Fukushima, Kunihiko and Miyake, Sei},
journal={Pattern recognition},
volume={15},
number={6},
pages={455--469},
year={1982},
url={http://www.cs.cmu.edu/afs/cs/user/bhiksha/WWW/courses/deeplearning/Fall.2016/pdfs/Fukushima_Miyake.pdf},
publisher={Elsevier}
}
@inproceedings{cohen2016inductive,
title={Inductive bias of deep convolutional networks through pooling geometry},
author={Cohen, Nadav and Shashua, Amnon},
booktitle={International Conference on Learning Representations (ICLR)},
year={2017},
url={https://openreview.net/forum?id=BkVsEMYel},
}
@inproceedings{he2016powerful,
title={A powerful generative model using random weights for the deep image representation},
author={He, Kun and Wang, Yan and Hopcroft, John},
booktitle={Advances in Neural Information Processing Systems},
pages={631--639},
url={https://arxiv.org/abs/1606.04801},
year={2016}
}
@inproceedings{ulyanov2018deep,
title={Deep image prior},
author={Ulyanov, Dmitry and Vedaldi, Andrea and Lempitsky, Victor},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={9446--9454},
url={https://dmitryulyanov.github.io/deep_image_prior},
year={2018}
}
@article{evolino,
title={Training recurrent networks by evolino},
author={Schmidhuber, J{\"u}rgen and Wierstra, Daan and Gagliolo, Matteo and Gomez, Faustino},
journal={Neural computation},
volume={19},
number={3},
pages={757--779},
year={2007},
url={http://people.idsia.ch/~juergen/evolino.html},
publisher={MIT Press}
}
@article{jaeger2004harnessing,
title={Harnessing nonlinearity: Predicting chaotic systems and saving energy in wireless communication},
author={Jaeger, Herbert and Haas, Harald},
journal={science},
volume={304},
number={5667},
pages={78--80},
year={2004},
url={http://tiny.cc/t3wd8y},
publisher={American Association for the Advancement of Science}
}
@misc{reservoir,
title={Introduction to Reservoir Computing Methods},
author={Roli, Andrea and Melandri, Luca},
url={https://amslaurea.unibo.it/8268/1/melandri_luca_tesi.pdf},
year={2014}
}
@article{lstm,
title={Long short-term memory},
author={Hochreiter, Sepp and Schmidhuber, J{\"u}rgen},
journal={Neural computation},
volume={9},
number={8},
pages={1735--1780},
year={1997},
url={http://people.idsia.ch/~juergen/rnn.html},
publisher={MIT Press}
}
@inproceedings{vaswani2017attention,
title={Attention is all you need},
author={Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N and Kaiser, {\L}ukasz and Polosukhin, Illia},
booktitle={Advances in neural information processing systems},
pages={5998--6008},
url={https://arxiv.org/abs/1706.03762},
year={2017}
}
@inproceedings{sabour2017dynamic,
title={Dynamic routing between capsules},
author={Sabour, Sara and Frosst, Nicholas and Hinton, Geoffrey E},
booktitle={Advances in neural information processing systems},
pages={3856--3866},
url={https://arxiv.org/abs/1710.09829},
year={2017}
}
@book{turing1948intelligent,
title={Intelligent machinery},
author={Turing, Alan Mathison},
year={1948},
url={https://weightagnostic.github.io/papers/turing1948.pdf},
publisher={NPL. Mathematics Division}
}
@inproceedings{harp1990designing,
title={Designing application-specific neural networks using the genetic algorithm},
author={Harp, Steven A and Samad, Tariq and Guha, Aloke},
booktitle={Advances in neural information processing systems},
pages={447--454},
url={https://papers.nips.cc/paper/263-designing-application-specific-neural-networks-using-the-genetic-algorithm.pdf},
year={1990}
}
@inproceedings{dasgupta1992designing,
title={Designing application-specific neural networks using the structured genetic algorithm},
author={Dasgupta, Dipankar and McGregor, Douglas R},
booktitle={[Proceedings] COGANN-92: International Workshop on Combinations of Genetic Algorithms and Neural Networks},
pages={87--96},
year={1992},
url={http://tiny.cc/2ggv7y},
organization={IEEE}
}
@inproceedings{fullmer1992using,
title={Using marker-based genetic encoding of neural networks to evolve finite-state behaviour},
author={Fullmer, Brad and Miikkulainen, Risto},
booktitle={Toward a Practice of Autonomous Systems: Proceedings of the First European Conference on Artificial Life},
pages={255--262},
year={1992},
url={http://tiny.cc/lggv7y},
organization={MIT Press}
}
@inproceedings{mandischer1993representation,
title={Representation and evolution of neural networks},
author={Mandischer, Martin},
booktitle={Artificial Neural Nets and Genetic Algorithms},
pages={643--649},
year={1993},
url={http://tiny.cc/ofgv7y},
organization={Springer}
}
@article{zhang1993evolving,
title={Evolving optimal neural networks using genetic algorithms with Occam's razor},
author={Zhang, Byoung-Tak and Muhlenbein, Heinz},
journal={Complex systems},
volume={7},
number={3},
pages={199--220},
year={1993},
url={http://muehlenbein.org/gpevolv93.pdf},
publisher={[Champaign, IL, USA: Complex Systems Publications, Inc., c1987-}
}
@article{maniezzo1994genetic,
title={Genetic evolution of the topology and weight distribution of neural networks},
author={Maniezzo, Vittorio},
journal={IEEE Transactions on neural networks},
volume={5},
number={1},
pages={39--53},
year={1994},
url={http://tiny.cc/mhgv7y},
publisher={IEEE}
}
@article{angeline1994evolutionary,
title={An evolutionary algorithm that constructs recurrent neural networks},
author={Angeline, Peter J and Saunders, Gregory M and Pollack, Jordan B},
journal={IEEE transactions on Neural Networks},
volume={5},
number={1},
pages={54--65},
year={1994},
url={http://tiny.cc/3hgv7y},
publisher={IEEE}
}
@article{opitz1997connectionist,
title={Connectionist theory refinement: Genetically searching the space of network topologies},
author={Opitz, David W and Shavlik, Jude W},
journal={Journal of Artificial Intelligence Research},
volume={6},
pages={177--209},
url={http://tiny.cc/oigv7y},
year={1997}
}
@article{pujol1998evolving,
title={Evolving the topology and the weights of neural networks using a dual representation},
author={Pujol, Jo{\~a}o Carlos Figueira and Poli, Riccardo},
journal={Applied Intelligence},
volume={8},
number={1},
pages={73--84},
year={1998},
url={http://tiny.cc/uigv7y},
publisher={Springer}
}
@article{yao1998towards,
title={Towards designing artificial neural networks by evolution},
author={Yao, Xin and Liu, Yong},
journal={Applied Mathematics and Computation},
volume={91},
number={1},
pages={83--90},
year={1998},
url={http://tiny.cc/gjgv7y},
publisher={Elsevier}
}
@inproceedings{lee1996evolutionary,
title={Evolutionary ordered neural network with a linked-list encoding scheme},
author={Lee, Chi-Ho and Kim, Jong-Hwan},
booktitle={Proceedings of IEEE International Conference on Evolutionary Computation},
pages={665--669},
year={1996},
organization={IEEE}
}
@inproceedings{gruau1996comparison,
title={A comparison between cellular encoding and direct encoding for genetic neural networks},
author={Gruau, Fr{\'e}d{\'e}ric and Whitley, Darrell and Pyeatt, Larry},
booktitle={Proceedings of the 1st annual conference on genetic programming},
pages={81--89},
year={1996},
organization={MIT Press}
}
@inproceedings{krishnan1994delta,
title={Delta-gann: A new approach to training neural networks using genetic algorithms},
author={Krishnan, Rajendra and Ciesielski, Victor B},
booktitle={University of Queensland},
year={1994},
organization={Citeseer}
}
@inproceedings{braun1993evolving,
title={Evolving feedforward neural networks},
author={Braun, Heinrich and Weisbrod, Joachim},
booktitle={Proceedings of ANNGA93, International Conference on Artificial Neural Networks and Genetic Algorithms},
pages={25--32},
year={1993},
organization={Springer Berlin}
}
@article{neat,
title={Evolving neural networks through augmenting topologies},
author={Stanley, Kenneth O and Miikkulainen, Risto},
journal={Evolutionary computation},
volume={10},
number={2},
pages={99--127},
year={2002},
url={http://www.cs.ucf.edu/~kstanley/neat.html},
publisher={MIT Press}
}
@inproceedings{zoph2016neural,
title={Neural architecture search with reinforcement learning},
author={Zoph, Barret and Le, Quoc V},
booktitle={International Conference on Learning Representations (ICLR)},
year={2017},
url={https://openreview.net/forum?id=r1Ue8Hcxg},
}
@inproceedings{real2017large,
title={Large-scale evolution of image classifiers},
author={Real, Esteban and Moore, Sherry and Selle, Andrew and Saxena, Saurabh and Suematsu, Yutaka Leon and Tan, Jie and Le, Quoc V and Kurakin, Alexey},
booktitle={Proceedings of the 34th International Conference on Machine Learning-Volume 70},
pages={2902--2911},
year={2017},
url={https://arxiv.org/abs/1703.01041},
organization={JMLR. org}
}
@inproceedings{liu2017hierarchical,
title={Hierarchical Representations for Efficient Architecture Search},
author={Hanxiao Liu and Karen Simonyan and Oriol Vinyals and Chrisantha Fernando and Koray Kavukcuoglu},
booktitle={International Conference on Learning Representations (ICLR)},
year={2018},
url={https://openreview.net/forum?id=BJQRKzbA-},
}
@incollection{miikkulainen2019evolving,
title={Evolving deep neural networks},
author={Miikkulainen, Risto and Liang, Jason and Meyerson, Elliot and Rawal, Aditya and Fink, Daniel and Francon, Olivier and Raju, Bala and Shahrzad, Hormoz and Navruzyan, Arshak and Duffy, Nigel},
booktitle={Artificial Intelligence in the Age of Neural Networks and Brain Computing},
pages={293--312},
year={2019},
url={https://arxiv.org/abs/1703.00548},
publisher={Elsevier}
}
@inproceedings{jozefowicz2015empirical,
title={An empirical exploration of recurrent network architectures},
author={Jozefowicz, Rafal and Zaremba, Wojciech and Sutskever, Ilya},
booktitle={International Conference on Machine Learning},
pages={2342--2350},
url={http://proceedings.mlr.press/v37/jozefowicz15.pdf},
year={2015}
}
@inproceedings{so2019evolved,
title={The Evolved Transformer},
author={So, David R and Liang, Chen and Le, Quoc V},
booktitle={International Conference on Machine Learning},
url={https://arxiv.org/abs/1901.11117},
year={2019}
}
@article{li2019random,
title={Random search and reproducibility for neural architecture search},
author={Li, Liam and Talwalkar, Ameet},
journal={arXiv preprint arXiv:1902.07638},
url={https://arxiv.org/abs/1902.07638},
year={2019}
}
@article{sciuto2019evaluating,
title={Evaluating the Search Phase of Neural Architecture Search},
author={Sciuto, Christian and Yu, Kaicheng and Jaggi, Martin and Musat, Claudiu and Salzmann, Mathieu},
journal={arXiv preprint arXiv:1902.08142},
url={https://arxiv.org/abs/1902.08142},
year={2019}
}
@inproceedings{real2018regularized,
title={Regularized evolution for image classifier architecture search},
author={Real, Esteban and Aggarwal, Alok and Huang, Yanping and Le, Quoc V},
booktitle={Association for the Advancement of Artificial Intelligence (AAAI)},
year={2019},
url={https://arxiv.org/abs/1802.01548},
}
@inproceedings{pham2018efficient,
title={Efficient Neural Architecture Search via Parameter Sharing},
author={Pham, Hieu and Guan, Melody and Zoph, Barret and Le, Quoc and Dean, Jeff},
booktitle={International Conference on Machine Learning},
pages={4092--4101},
url={https://arxiv.org/abs/1802.03268},
year={2018}
}
@inproceedings{brock2017smash,
title={SMASH: One-shot model architecture search through hypernetworks},
author={Brock, Andrew and Lim, Theodore and Ritchie, James M and Weston, Nick},
booktitle={International Conference on Learning Representations (ICLR)},
year={2018},
url={https://openreview.net/forum?id=rydeCEhs-},
}
@inproceedings{
liu2018darts,
title={DARTS: Differentiable Architecture Search},
author={Hanxiao Liu and Karen Simonyan and Yiming Yang},
booktitle={International Conference on Learning Representations (ICLR)},
year={2019},
url={https://openreview.net/forum?id=S1eYHoC5FX},
}
@article{hinton1996learning,
title={How learning can guide evolution},
author={Hinton, Geoffrey E and Nowlan, Steven J},
journal={Adaptive individuals in evolving populations: models and algorithms},
volume={26},
pages={447--454},
year={1996},
url={http://www.cogsci.ucsd.edu/~rik/courses/cogs184_w10/readings/HintonNowlan97.pdf},
publisher={Addison-Wesley Reading, MA}
}
@article{smith1987learning,
title={When learning guides evolution},
author={Smith, John Maynard},
journal={Nature},
volume={329},
number={6142},
pages={761},
year={1987},
url={https://www.nature.com/articles/329761a0.pdf},
publisher={Nature Publishing Group}
}
@article{baldwin1896new,
title={A new factor in evolution},
author={Baldwin, J Mark},
journal={The american naturalist},
volume={30},
number={354},
pages={441--451},
year={1896},
url={https://en.wikipedia.org/wiki/Baldwin_effect},
publisher={Edwards and Docker}
}
@article{mackay1992bayesian,
title={Bayesian interpolation},
author={MacKay, David JC},
journal={Neural computation},
volume={4},
number={3},
pages={415--447},
year={1992},
url={https://authors.library.caltech.edu/13792/1/MACnc92a.pdf},
publisher={MIT Press}
}
@article{barber1998ensemble,
title={Ensemble learning in Bayesian neural networks},
author={Barber, D and Bishop, CM},
journal={NATO ASI series. Series F: computer and system sciences},
pages={215--237},
year={1998},
url={http://tiny.cc/8jgv7y},
publisher={Plenum}
}
@article{bishop2006pattern,
title={Pattern recognition and machine learning},
author={Bishop, Christopher M},
year={2006},
url={https://aka.ms/prml},
publisher={Springer (but now offered as free download, see url.)}
}
@article{neal2012bayesian,
title={Bayesian learning for neural networks},
author={Neal, Radford M},
year={2012},
url={http://tiny.cc/vkgv7y},
publisher={Springer Science and Business Media}
}
@phdthesis{gal2016uncertainty,
title={Uncertainty in deep learning},
author={Gal, Yarin},
year={2016},
url={http://mlg.eng.cam.ac.uk/yarin/thesis/thesis.pdf},
school={PhD thesis, University of Cambridge}
}
@inproceedings{hanson1990meiosis,
title={Meiosis networks},
author={Hanson, Stephen Jos{\'e}},
booktitle={Advances in neural information processing systems},
pages={533--541},
url={http://papers.nips.cc/paper/227-meiosis-networks.pdf},
year={1990}
}
@article{hanson1990stochastic,
title={A stochastic version of the delta rule},
author={Hanson, Stephen Jos{\'e}},
journal={Physica D: Nonlinear Phenomena},
volume={42},
number={1-3},
pages={265--272},
year={1990},
url={https://github.com/theSage21/stochastic_delta_rule},
publisher={Elsevier}
}
@inproceedings{graves2011practical,
title={Practical variational inference for neural networks},
author={Graves, Alex},
booktitle={Advances in neural information processing systems},
pages={2348--2356},
url={https://papers.nips.cc/paper/4329-practical-variational-inference-for-neural-networks},
year={2011}
}
@article{krueger2017bayesian,
title={Bayesian hypernetworks},
author={Krueger, David and Huang, Chin-Wei and Islam, Riashat and Turner, Ryan and Lacoste, Alexandre and Courville, Aaron},
journal={arXiv preprint arXiv:1710.04759},
url={https://arxiv.org/abs/1710.04759},
year={2017}
}
@inproceedings{neklyudov2018variance,
title={Variance Networks: When Expectation Does Not Meet Your Expectations},
author={Kirill Neklyudov and Dmitry Molchanov and Arsenii Ashukha and Dmitry Vetrov},
booktitle={International Conference on Learning Representations (ICLR)},
year={2019},
url={https://openreview.net/forum?id=B1GAUs0cKQ},
}
@article{solomonoff1964formal,
title={A formal theory of inductive inference. Part I},
author={Solomonoff, Ray J},
journal={Information and control},
volume={7},
number={1},
pages={1--22},
year={1964},
url={http://tiny.cc/7cgv7y},
publisher={Elsevier}
}
@article{kolmogorov1965three,
title={Three approaches to the quantitative definition of information},
author={Kolmogorov, Andrei N},
journal={Problems of information transmission},
volume={1},
number={1},
pages={1--7},
url={http://tiny.cc/xmgv7y},
year={1965}
}
@article{rissanen1978modeling,
title={Modeling by shortest data description},
author={Rissanen, Jorma},
journal={Automatica},
volume={14},
number={5},
pages={465--471},
year={1978},
url={http://tiny.cc/dngv7y},
publisher={Elsevier}
}
@book{grunwald2007minimum,
title={The minimum description length principle},
author={Gr{\"u}nwald, Peter D},
year={2007},
publisher={MIT press},
url={https://mitpress.mit.edu/books/minimum-description-length-principle},
}
@book{rissanen2007information,
title={Information and complexity in statistical modeling},
author={Rissanen, Jorma},
year={2007},
publisher={Springer Science and Business Media},
url={https://www.springer.com/gp/book/9780387366104},
}
@article{nowlan1992simplifying,
title={Simplifying neural networks by soft weight-sharing},
author={Nowlan, Steven J and Hinton, Geoffrey E},
journal={Neural computation},
volume={4},
number={4},
pages={473--493},
year={1992},
url={http://www.cs.toronto.edu/~hinton/absps/sunspots.pdf},
publisher={MIT Press}
}
@inproceedings{hinton1993keeping,
title={Keeping neural networks simple by minimizing the description length of the weights},
author={Hinton, Geoffrey and Van Camp, Drew},
booktitle={In Proc. of the 6th Ann. ACM Conf. on Computational Learning Theory},
year={1993},
url={http://www.cs.toronto.edu/~fritz/absps/colt93.pdf},
organization={Citeseer}
}
@article{schmidhuber1997discovering,
title={Discovering neural nets with low Kolmogorov complexity and high generalization capability},
author={Schmidhuber, J{\"u}rgen},
journal={Neural Networks},
volume={10},
number={5},
pages={857--873},
year={1997},
url={ftp://ftp.idsia.ch/pub/juergen/loconet.pdf},
publisher={Elsevier}
}
@inproceedings{blier2018description,
title={The description length of deep learning models},
author={Blier, L{\'e}onard and Ollivier, Yann},
booktitle={Advances in Neural Information Processing Systems},
pages={2216--2226},
url={https://arxiv.org/abs/1802.07044},
year={2018}
}
@inproceedings{li2018measuring,
title={Measuring the Intrinsic Dimension of Objective Landscapes},
author={Chunyuan Li and Heerad Farkhoor and Rosanne Liu and Jason Yosinski},
booktitle={International Conference on Learning Representations (ICLR)},
year={2018},
url={https://openreview.net/forum?id=ryup8-WCW},
}
@inproceedings{trask2018neural,
title={Neural arithmetic logic units},
author={Trask, Andrew and Hill, Felix and Reed, Scott E and Rae, Jack and Dyer, Chris and Blunsom, Phil},
booktitle={Advances in Neural Information Processing Systems},
pages={8035--8044},
url={https://arxiv.org/abs/1808.00508},
year={2018}
}
@inproceedings{lecun1990optimal,
title={Optimal brain damage},
author={LeCun, Yann and Denker, John S and Solla, Sara A},
booktitle={Advances in neural information processing systems},
pages={598--605},
url={http://yann.lecun.com/exdb/publis/pdf/lecun-90b.pdf},
year={1990}
}
@inproceedings{hassibi1993second,
title={Second order derivatives for network pruning: Optimal brain surgeon},
author={Hassibi, Babak and Stork, David G},
booktitle={Advances in neural information processing systems},
pages={164--171},
url={http://papers.nips.cc/paper/647-second-order-derivatives-for-network-pruning-optimal-brain-surgeon.pdf},
year={1993}
}
@inproceedings{han2015learning,
title={Learning both weights and connections for efficient neural network},
author={Han, Song and Pool, Jeff and Tran, John and Dally, William},
booktitle={Advances in neural information processing systems},
pages={1135--1143},
url={https://papers.nips.cc/paper/5784-learning-both-weights-and-connections-for-efficient-neural-network.pdf},
year={2015}
}
@inproceedings{guo2016dynamic,
title={Dynamic network surgery for efficient dnns},
author={Guo, Yiwen and Yao, Anbang and Chen, Yurong},
booktitle={Advances In Neural Information Processing Systems},
pages={1379--1387},
url={http://papers.nips.cc/paper/6165-dynamic-network-surgery-for-efficient-dnns.pdf},
year={2016}
}
@inproceedings{li2016pruning,
title={Pruning filters for efficient convnets},
author={Li, Hao and Kadav, Asim and Durdanovic, Igor and Samet, Hanan and Graf, Hans Peter},
booktitle={International Conference on Learning Representations (ICLR)},
year={2017},
url={https://openreview.net/forum?id=rJqFGTslg},
}
@inproceedings{molchanov2016pruning,
title={Pruning convolutional neural networks for resource efficient inference},
author={Molchanov, Pavlo and Tyree, Stephen and Karras, Tero and Aila, Timo and Kautz, Jan},
booktitle={International Conference on Learning Representations (ICLR)},
year={2017},
url={https://openreview.net/forum?id=SJGCiw5gl},
}
@inproceedings{luo2017thinet,
title={Thinet: A filter level pruning method for deep neural network compression},
author={Luo, Jian-Hao and Wu, Jianxin and Lin, Weiyao},
booktitle={Proceedings of the IEEE international conference on computer vision},
pages={5058--5066},
url={https://arxiv.org/abs/1707.06342},
year={2017}
}
@inproceedings{liu2018rethinking,
title={Rethinking the Value of Network Pruning},
author={Zhuang Liu and Mingjie Sun and Tinghui Zhou and Gao Huang and Trevor Darrell},
booktitle={International Conference on Learning Representations (ICLR)},
year={2019},
url={https://openreview.net/forum?id=rJlnB3C5Ym},
}
@inproceedings{frankle2018lottery,
title={The Lottery Ticket Hypothesis: Finding Sparse, Trainable Neural Networks},
author={Jonathan Frankle and Michael Carbin},
booktitle={International Conference on Learning Representations (ICLR)},
year={2019},
url={https://openreview.net/forum?id=rJl-b3RcF7},
}
@inproceedings{lee2018snip,
title={SNIP: Single-shot Network Pruning based on Connection Sensitivity},
author={Namhoon Lee and Thalaiyasingam Ajanthan and Philip Torr},
booktitle={International Conference on Learning Representations (ICLR)},
year={2019},
url={https://openreview.net/forum?id=B1VZqjAcYX},
}
@article{zhou2019deconstructing,
title={Deconstructing Lottery Tickets: Zeros, Signs, and the Supermask},
author={Zhou, Hattie and Lan, Janice and Liu, Rosanne and Yosinski, Jason},
journal={arXiv preprint arXiv:1905.01067},
url={https://arxiv.org/abs/1905.01067},
year={2019}
}
@inproceedings{mallya2018piggyback,
title={Piggyback: Adapting a single network to multiple tasks by learning to mask weights},
author={Mallya, Arun and Davis, Dillon and Lazebnik, Svetlana},
booktitle={Proceedings of the European Conference on Computer Vision (ECCV)},
pages={67--82},
url={https://arxiv.org/abs/1801.06519},
year={2018}
}
@book{seung2012connectome,
title={Connectome: How the brain's wiring makes us who we are},
author={Seung, Sebastian},
year={2012},
url={https://en.wikipedia.org/wiki/Connectome_(book)},
publisher={HMH}
}
@misc{seung2012ted,
title = {I am my connectome},
year = {2010},
journal = {TED Talk},
author = {Seung, Sebastian},
url = {https://www.ted.com/talks/sebastian_seung},
}
@article{sporns2005human,
title={The human connectome: a structural description of the human brain},
author={Sporns, Olaf and Tononi, Giulio and K{\"o}tter, Rolf},
journal={PLoS computational biology},
volume={1},
number={4},
pages={e42},
year={2005},
url={https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.0010042},
publisher={Public Library of Science}
}
@article{white1986structure,
title={The structure of the nervous system of the nematode Caenorhabditis elegans},
author={White, John G and Southgate, Eileen and Thomson, J Nichol and Brenner, Sydney},
journal={Philos Trans R Soc Lond B Biol Sci},
volume={314},
number={1165},
pages={1--340},
url={http://tiny.cc/kiiv7y},
year={1986}
}
@article{varshney2011structural,
title={Structural properties of the Caenorhabditis elegans neuronal network},
author={Varshney, Lav R and Chen, Beth L and Paniagua, Eric and Hall, David H and Chklovskii, Dmitri B},
journal={PLoS computational biology},
volume={7},
number={2},
pages={e1001066},
year={2011},
url={https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1001066},
publisher={Public Library of Science}
}
@article{eichler2017complete,
title={The complete connectome of a learning and memory centre in an insect brain},
author={Eichler, Katharina and Li, Feng and Litwin-Kumar, Ashok and Park, Youngser and Andrade, Ingrid and Schneider-Mizell, Casey M and Saumweber, Timo and Huser, Annina and Eschbach, Claire and Gerber, Bertram},
journal={Nature},
volume={548},
number={7666},
pages={175},
year={2017},
url={https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5806122/},
publisher={Nature Publishing Group}
}
@article{takemura2017connectome,
title={A connectome of a learning and memory center in the adult Drosophila brain},
author={Takemura, Shin-ya and Aso, Yoshinori and Hige, Toshihide and Wong, Allan and Lu, Zhiyuan and Xu, C Shan and Rivlin, Patricia K and Hess, Harald and Zhao, Ting and Parag, Toufiq},
journal={Elife},
volume={6},
pages={e26975},
year={2017},
url={https://elifesciences.org/articles/26975},
publisher={eLife Sciences Publications Limited}
}
@article{huttenlocher1990morphometric,
title={Morphometric study of human cerebral cortex development},
author={Huttenlocher, Peter R},
journal={Neuropsychologia},
volume={28},
number={6},
pages={517--527},
year={1990},
publisher={Elsevier}
}
@article{tierney2009brain,
title={Brain development and the role of experience in the early years},
author={Tierney, Adrienne L and Nelson III, Charles A},
journal={Zero to three},
volume={30},
number={2},
pages={9},
year={2009},
url={https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3722610/},
publisher={NIH Public Access}
}
@article{black1990learning,
title={Learning causes synaptogenesis, whereas motor activity causes angiogenesis, in cerebellar cortex of adult rats.},
author={Black, James E and Isaacs, Krystyna R and Anderson, Brenda J and Alcantara, Adriana A and Greenough, William T},
journal={Proceedings of the National Academy of Sciences},
volume={87},
number={14},
pages={5568--5572},
year={1990},
url={https://www.pnas.org/content/pnas/87/14/5568.full.pdf},
publisher={National Acad Sciences}
}
@article{bruer1999neural,
title={Neural connections: Some you use, some you lose},
author={Bruer, John T},
journal={The Phi Delta Kappan},
volume={81},
number={4},
pages={264--277},
year={1999},
url={http://www.oecd.org/education/ceri/31709587.pdf},
publisher={JSTOR}
}
@article{kleim2002motor,
title={Motor learning-dependent synaptogenesis is localized to functionally reorganized motor cortex},
author={Kleim, Jeffrey A and Barbay, Scott and Cooper, Natalie R and Hogg, Theresa M and Reidel, Chelsea N and Remple, Michael S and Nudo, Randolph J},
journal={Neurobiology of learning and memory},
volume={77},
number={1},
pages={63--77},
year={2002},
publisher={Elsevier}
}
@article{dayan2011neuroplasticity,
title={Neuroplasticity subserving motor skill learning},
author={Dayan, Eran and Cohen, Leonardo G},
journal={Neuron},
volume={72},
number={3},
pages={443--454},
year={2011},
url={http://tiny.cc/1ziv7y},
publisher={Elsevier}
}
@article{bullmore2009complex,
title={Complex brain networks: graph theoretical analysis of structural and functional systems},
author={Bullmore, Ed and Sporns, Olaf},
journal={Nature reviews neuroscience},
volume={10},
number={3},
pages={186},
year={2009},
url={http://tiny.cc/xyiv7y},
publisher={Nature Publishing Group}
}
@article{he2010graph,
title={Graph theoretical modeling of brain connectivity},
author={He, Yong and Evans, Alan},
journal={Current opinion in neurology},
volume={23},
number={4},
pages={341--350},
year={2010},
url={http://tiny.cc/82iv7y},
publisher={LWW}
}
@article{van2011rich,
title={Rich-club organization of the human connectome},
author={Van Den Heuvel, Martijn P and Sporns, Olaf},
journal={Journal of Neuroscience},
volume={31},
number={44},
pages={15775--15786},
year={2011},
url={http://www.jneurosci.org/content/jneuro/31/44/15775.full.pdf},
publisher={Soc Neuroscience}
}
@article{tournamentSelection,
title={Genetic algorithms, tournament selection, and the effects of noise},
author={Miller, Brad L and Goldberg, David E},
journal={Complex systems},
volume={9},
number={3},
pages={193--212},
year={1995},
url={http://tiny.cc/4ckv7y},
publisher={[Champaign, IL, USA: Complex Systems Publications, Inc., c1987-}
}
@incollection{mouret2011novelty,
title={Novelty-based multiobjectivization},
author={Mouret, Jean-Baptiste},
booktitle={New horizons in evolutionary robotics},
pages={139--154},
year={2011},
url={http://tiny.cc/uelv7y},
publisher={Springer}
}
@article{konak2006multi,
title={Multi-objective optimization using genetic algorithms: A tutorial},
author={Konak, Abdullah and Coit, David W and Smith, Alice E},
journal={Reliability Engineering and System Safety},
volume={91},
number={9},
pages={992--1007},
year={2006},
url={http://tiny.cc/bglv7y},
publisher={Elsevier}
}
@article{clune2013evolutionary,
title={The evolutionary origins of modularity},
author={Clune, Jeff and Mouret, Jean-Baptiste and Lipson, Hod},
journal={Proceedings of the Royal Society b: Biological sciences},
volume={280},
number={1755},
year={2013},
url={https://royalsocietypublishing.org/doi/pdf/10.1098/rspb.2012.2863},
publisher={The Royal Society}
}
@article{nsga2,
title={A fast and elitist multiobjective genetic algorithm: NSGA-II},
author={Deb, Kalyanmoy and Pratap, Amrit and Agarwal, Sameer and Meyarivan, TAMT},
journal={IEEE transactions on evolutionary computation},
volume={6},
number={2},
pages={182--197},
year={2002},
url={http://www.dmi.unict.it/mpavone/nc-cs/materiale/NSGA-II.pdf},
publisher={IEEE}
}
@article{tedrake2009underactuated,
title={Underactuated Robotics: Learning, Planning, and Control for Efficient and Agile Machines: Course Notes for MIT 6.832},
author={Tedrake, Russ},
journal={Working draft edition},
volume={3},
year={2009},
url={http://tiny.cc/v8lv7y},
publisher={Citeseer}
}
@article{raiko2009variational,
title={Variational Bayesian learning of nonlinear hidden state-space models for model predictive control},
author={Raiko, T and Tornio, M},
journal={Neurocomputing},
year={2009},
url={https://users.ics.aalto.fi/praiko/papers/raikotornio2009.pdf},
publisher={Elsevier}
}
@inproceedings{gal2016improving,
title={Improving PILCO with Bayesian neural network dynamics models},
author={Gal, Yarin and McAllister, Rowan and Rasmussen, Carl Edward},
booktitle={Data-Efficient Machine Learning workshop, ICML},
volume={4},
url={http://mlg.eng.cam.ac.uk/yarin/website/PDFs/DeepPILCO.pdf},
year={2016}
}
@article{deepPILCOgithub,
author = {Zuo, Xingdong},
title = {PyTorch implementation of Improving PILCO with Bayesian neural network dynamics models},
year = {2018},
publisher = {GitHub},
journal = {GitHub repository},
url = {https://github.com/zuoxingdong/DeepPILCO},
}
@incollection{ha2018worldmodels,
title = {Recurrent World Models Facilitate Policy Evolution},
author = {Ha, David and Schmidhuber, J{\"u}rgen},
booktitle = {Advances in Neural Information Processing Systems 31},
pages = {2451--2463},
year = {2018},
publisher = {Curran Associates, Inc.},
url = {https://worldmodels.github.io},
}
@inproceedings{kingma2013auto,
title={Auto-encoding variational bayes},
author={Kingma, Diederik P and Welling, Max},
booktitle={International Conference on Learning Representations (ICLR)},
year={2014},
url={https://openreview.net/forum?id=33X9fd2-9FyZd},
}
@inproceedings{vae_dm,
title={Stochastic Backpropagation and Approximate Inference in Deep Generative Models},
author={Rezende, Danilo Jimenez and Mohamed, Shakir and Wierstra, Daan},
booktitle={International Conference on Machine Learning},
pages={1278--1286},
url={https://arxiv.org/abs/1401.4082},
year={2014}
}
@article{ha2018designrl,
author = {David Ha},
title = {Reinforcement Learning for Improving Agent Design},
journal = {arXiv:1810.03779},
url = {https://designrl.github.io},
year = {2018}
}
@article{williams1992simple,
title={Simple statistical gradient-following algorithms for connectionist reinforcement learning},
author={Williams, Ronald J},
journal={Machine learning},
volume={8},
number={3-4},
pages={229--256},
year={1992},
url={http://www-anw.cs.umass.edu/~barto/courses/cs687/williams92simple.pdf},
publisher={Springer}
}