-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreferences.bib
More file actions
10311 lines (9383 loc) · 464 KB
/
Copy pathreferences.bib
File metadata and controls
10311 lines (9383 loc) · 464 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
@article{10.1609/aimag.v28i4.2065,
address = {USA},
author = {Anderson, Michael and Anderson, Susan Leigh},
doi = {10.1609/aimag.v28i4.2065},
issn = {0738-4602},
issue_date = {Winter 2007},
journal = {AI Mag.},
month = {12},
number = {4},
numpages = {12},
pages = {15-26},
publisher = {John Wiley \& Sons, Inc.},
title = {Machine Ethics: Creating an Ethical Intelligent Agent},
url = {https://doi.org/10.1609/aimag.v28i4.2065},
volume = {28},
year = {2007}
}
@conference{2009BigdelyShamlo,
author = {Shamlo, N.B. and Makeig, S.},
booktitle = {Proceedings of the 13th inter. Conf. on Human-Computer interaction},
date-added = {2011-06-22 12:47:26 -0400},
date-modified = {2011-06-22 12:48:58 -0400},
publisher = {Springer},
title = {Mind-Mirror: EEG-Guided Image Evolution},
volume = {5611},
year = {2009}
}
@inproceedings{abbeel2004apprenticeship,
author = {Abbeel, Pieter and Ng, Andrew Y},
booktitle = {Proceedings of the twenty-first international conference on Machine learning},
date-added = {2019-05-16 17:05:09 -0600},
date-modified = {2019-05-16 17:05:09 -0600},
doi = {10.1145/1015330.1015430},
organization = {ACM},
pages = {1},
title = {Apprenticeship learning via inverse reinforcement learning},
year = {2004}
}
@article{Abramson2024,
author = {Abramson, Josh and Adler, Jonas and Dunger, Jack and Evans, Richard and Green, Tim and Pritzel, Alexander and Ronneberger, Olaf and Willmore, Lindsay and Ballard, Andrew J. and Bambrick, Joshua and Bodenstein, Sebastian W. and Evans, David A. and Hung, Chia-Chun and O'Neill, Michael and Reiman, David and Tunyasuvunakool, Kathryn and Wu, Zachary and {\v{Z}}emgulyt{\textperiodcentered}, Akvil{\textperiodcentered} and Arvaniti, Eirini and Beattie, Charles and Bertolli, Ottavia and Bridgland, Alex and Cherepanov, Alexey and Congreve, Miles and Cowen-Rivers, Alexander I. and Cowie, Andrew and Figurnov, Michael and Fuchs, Fabian B. and Gladman, Hannah and Jain, Rishub and Khan, Yousuf A. and Low, Caroline M. R. and Perlin, Kuba and Potapenko, Anna and Savy, Pascal and Singh, Sukhdeep and Stecula, Adrian and Thillaisundaram, Ashok and Tong, Catherine and Yakneen, Sergei and Zhong, Ellen D. and Zielinski, Michal and {\v{Z}}{\'{\i}}dek, Augustin and Bapst, Victor and Kohli, Pushmeet and Jaderberg, Max and Hassabis, Demis and Jumper, John M.},
doi = {10.1038/s41586-024-07487-w},
journal = {Nature},
number = {8016},
pages = {493--500},
title = {Accurate structure prediction of biomolecular interactions with AlphaFold 3},
volume = {630},
year = {2024}
}
@misc{achim2025aristotleimolevelautomatedtheorem,
archiveprefix = {arXiv},
author = {Tudor Achim and Alex Best and Alberto Bietti and Kevin Der and Math{\"i}s F{\'e}d{\'e}rico and Sergei Gukov and Daniel Halpern-Leistner and Kirsten Henningsgard and Yury Kudryashov and Alexander Meiburg and Martin Michelsen and Riley Patterson and Eric Rodriguez and Laura Scharff and Vikram Shanker and Vladmir Sicca and Hari Sowrirajan and Aidan Swope and Matyas Tamas and Vlad Tenev and Jonathan Thomm and Harold Williams and Lawrence Wu},
doi = {10.48550/arxiv.arXiv:2510.01346},
eprint = {2510.01346},
primaryclass = {cs.AI},
title = {Aristotle: {IMO}-level Automated Theorem Proving},
url = {https://arxiv.org/abs/2510.01346},
year = {2025}
}
@article{adami2000evolution,
author = {Adami, C. and Ofria, C. and Collier, T.C.},
date-added = {2010-07-24 01:09:38 -0400},
date-modified = {2010-09-29 00:23:03 -0400},
doi = {10.1073/pnas.97.9.4463},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
number = {9},
pages = {4463},
publisher = {National Acad Sciences},
title = {{Evolution of biological complexity}},
volume = {97},
year = {2000}
}
@article{Ahn2006,
author = {Ahn, Y.-Y. and Jeong, H. and Kim, B. J.},
bdsk-url-1 = {http://dx.doi.org/10.1016/j.physa.2005.12.013},
date-added = {2013-09-14 03:27:54 +0000},
date-modified = {2014-07-20 17:50:25 +0000},
doi = {10.1016/j.physa.2005.12.013},
issn = {03784371},
journal = {Physica A: Statistical Mechanics and its Applications},
keywords = {1,although the,attracted by their own,biological network,brains,human beings have been,impossible to obtain the,interest in the brain,is of the fundamental,it is still,more than,neuronal network,neurons,neurons in a brain,research,the tremendous number of,topology of connections among,vast ability and complexity,whole information because of,wiring cost},
month = {7},
pages = {531--537},
title = {{Wiring cost in the organization of a biological neuronal network}},
volume = {367},
year = {2006}
}
@article{akam2015simple,
author = {Akam, Thomas and Costa, Rui and Dayan, Peter},
date-added = {2019-05-03 20:06:56 -0700},
date-modified = {2019-05-03 20:06:56 -0700},
doi = {10.1371/journal.pcbi.1004648},
journal = {PLoS computational biology},
number = {12},
pages = {e1004648},
publisher = {Public Library of Science},
title = {Simple plans or sophisticated habits? State, transition and learning interactions in the two-step task},
volume = {11},
year = {2015}
}
@misc{alexeev2026primitivesetsvonmangoldt,
archiveprefix = {arXiv},
author = {Boris Alexeev and Kevin Barreto and Yanyang Li and Jared Duker Lichtman and Liam Price and Jibran Iqbal Shah and Quanyu Tang and Terence Tao},
doi = {10.48550/arxiv.arXiv:2605.00301},
eprint = {2605.00301},
primaryclass = {math.NT},
title = {Primitive sets and von Mangoldt chains: Erdos Problem 1196 and beyond},
url = {https://arxiv.org/abs/2605.00301},
year = {2026}
}
@article{alon2003biological,
author = {Alon, U.},
date-added = {2013-09-14 03:30:36 +0000},
date-modified = {2013-09-14 03:30:36 +0000},
doi = {10.1126/science.1089072},
journal = {Science},
number = {5641},
pages = {1866},
publisher = {American Association for the Advancement of Science},
title = {Biological networks: the tinkerer as an engineer},
volume = {301},
year = {2003}
}
@book{alon2006introduction,
author = {Alon, U.},
date-added = {2012-11-23 02:23:50 +0000},
date-modified = {2012-11-23 02:24:04 +0000},
doi = {10.1201/9780429283321},
publisher = {CRC press},
title = {An Introduction to Systems Biology: Design Principles of Biological Circuits},
year = {2006}
}
@misc{alphaproof2024ai,
author = {{Google DeepMind}},
month = {7},
note = {Published 25 July 2024},
title = {{AI} achieves silver-medal standard solving International Mathematical Olympiad problems},
url = {https://deepmind.google/discover/blog/ai-solves-imo-problems-at-silver-medal-level/},
year = {2024}
}
@misc{amato2025initialintroductioncooperativemultiagent,
archiveprefix = {arXiv},
author = {Christopher Amato},
doi = {10.48550/arxiv.arXiv:2405.06161},
eprint = {2405.06161},
primaryclass = {cs.LG},
title = {An Initial Introduction to Cooperative Multi-Agent Reinforcement Learning},
url = {https://arxiv.org/abs/2405.06161},
year = {2025}
}
@article{amodei2016concrete,
author = {Amodei, Dario and Olah, Chris and Steinhardt, Jacob and Christiano, Paul and Schulman, John and Man{\'e}, Dan},
date-added = {2019-05-17 11:09:35 -0600},
date-modified = {2019-05-17 11:09:35 -0600},
doi = {10.48550/arXiv.1606.06565},
journal = {arXiv preprint arXiv:1606.06565},
title = {Concrete problems in AI safety},
year = {2016}
}
@book{anderson2010security,
author = {Anderson, Ross},
doi = {10.1002/9781119644682},
publisher = {John Wiley \& Sons},
title = {Security engineering: a guide to building dependable distributed systems},
year = {2010}
}
@inproceedings{andrychowicz2016learning,
author = {Andrychowicz, Marcin and Denil, Misha and Gomez, Sergio and Hoffman, Matthew W and Pfau, David and Schaul, Tom and Shillingford, Brendan and De Freitas, Nando},
booktitle = {Advances in Neural Information Processing Systems},
date-added = {2019-05-24 16:49:37 -0700},
date-modified = {2019-05-24 16:49:37 -0700},
pages = {3981--3989},
title = {Learning to learn by gradient descent by gradient descent},
year = {2016}
}
@misc{anthropic_2024_claude3,
author = {Anthropic},
howpublished = {\url{https://www.anthropic.com/news/claude-3-family}},
month = {March},
note = {Blog post},
title = {Introducing the Next Generation of Claude},
year = {2024}
}
@misc{anthropic_claude3.5,
author = {Anthropic},
howpublished = {\url{https://www.anthropic.com/news/claude-3-5-sonnet}},
month = {June},
note = {Blog post},
title = {Introducing Claude 3.5 Sonnet},
year = {2024}
}
@misc{arcUpdateGPT4,
author = {METR},
howpublished = {\url{https://metr.org/blog/2023-03-18-update-on-recent-evals/}},
month = {03},
title = {Update on ARC's recent eval efforts},
year = {2023}
}
@article{arjona2019rudder,
author = {Arjona-Medina, Jose A and Gillhofer, Michael and Widrich, Michael and Unterthiner, Thomas and Brandstetter, Johannes and Hochreiter, Sepp},
journal = {Advances in Neural Information Processing Systems},
title = {Rudder: Return decomposition for delayed rewards},
volume = {32},
year = {2019}
}
@article{arthur2002emerging,
author = {Arthur, W.},
date-added = {2010-07-24 01:16:41 -0400},
date-modified = {2010-07-24 01:16:41 -0400},
doi = {10.1038/415757a},
journal = {Nature},
number = {6873},
pages = {757--764},
publisher = {Nature Publishing Group},
title = {{The emerging conceptual framework of evolutionary developmental biology}},
volume = {415},
year = {2002}
}
@inproceedings{auerbach:bodybrain,
author = {Auerbach, Joshua E and Bongard, Joshua C},
booktitle = {Proceedings of the 14th annual conference on Genetic and evolutionary computation},
date-added = {2019-05-05 14:23:21 -0600},
date-modified = {2019-05-05 14:23:21 -0600},
doi = {10.1145/2330163.2330238},
organization = {ACM},
pages = {521-528},
title = {On the relationship between environmental and morphological complexity in evolved robots},
year = {2012}
}
@inproceedings{auerbach2009robot,
author = {Auerbach, Joshua and Bongard, Josh C},
booktitle = {Evolutionary Computation, 2009. CEC'09. IEEE Congress on},
date-added = {2014-04-08 07:34:36 +0000},
date-modified = {2014-04-08 07:34:36 +0000},
doi = {10.1109/cec.2009.4982928},
organization = {IEEE},
pages = {39--46},
title = {How robot morphology and training order affect the learning of multiple behaviors},
year = {2009}
}
@conference{auerbach2010dynamic,
author = {Auerbach, J.E. and Bongard, J.C.},
booktitle = {Proceedings of Artificial Life XII},
date-added = {2011-01-29 23:24:53 -0500},
date-modified = {2011-01-29 23:30:22 -0500},
title = {Dynamic Resolution in the Co-Evolution of Morphology and Control},
year = {2010}
}
@conference{auerbach2010evolving,
author = {Auerbach, J.E. and Bongard, J.C.},
booktitle = {Proceedings of the 12th annual conference on Genetic and evolutionary computation},
date-added = {2011-01-29 23:19:08 -0500},
date-modified = {2011-01-29 23:19:08 -0500},
organization = {ACM},
pages = {627--634},
title = {{Evolving CPPNs to grow three-dimensional physical structures}},
year = {2010}
}
@article{auerbach2014environmental,
author = {Auerbach, Joshua E and Bongard, Josh C},
date-added = {2014-04-08 07:33:40 +0000},
date-modified = {2014-04-08 07:33:40 +0000},
doi = {10.1371/journal.pcbi.1003399},
journal = {PLoS computational biology},
number = {1},
pages = {e1003399},
publisher = {Public Library of Science},
title = {Environmental Influence on the Evolution of Morphological Complexity in Machines},
volume = {10},
year = {2014}
}
@incollection{aumannrepeated59,
author = {Aumann, Robert J.},
title = {Acceptable Points in General Cooperative {$n$}-Person Games},
booktitle = {Contributions to the Theory of Games IV},
series = {Annals of Mathematics Studies},
number = {40},
pages = {287--324},
editor = {Tucker, Albert W. and Luce, R. Duncan},
publisher = {Princeton University Press},
year = {1959}
}
@misc{autogpt,
author = {Richards, Toran Bruce},
howpublished = {\url{https://github.com/Significant-Gravitas/AutoGPT}},
note = {GitHub repository},
title = {AutoGPT},
year = {2023}
}
@article{autoQuantumKrenn2016,
author = {Krenn, Mario and Malik, Mehul and Fickler, Robert and Lapkiewicz, Radek and Zeilinger, Anton},
doi = {10.1103/PhysRevLett.116.090405},
issue = {9},
journal = {Phys. Rev. Lett.},
month = {Mar},
numpages = {5},
pages = {090405},
publisher = {American Physical Society},
title = {Automated Search for new Quantum Experiments},
url = {https://link.aps.org/doi/10.1103/PhysRevLett.116.090405},
volume = {116},
year = {2016}
}
@article{Axelrod1981gametheory,
author = {Robert Axelrod and William D. Hamilton },
title = {The Evolution of Cooperation},
journal = {Science},
volume = {211},
number = {4489},
pages = {1390-1396},
year = {1981},
doi = {10.1126/science.7466396},
URL = {https://www.science.org/doi/abs/10.1126/science.7466396},
eprint = {https://www.science.org/doi/pdf/10.1126/science.7466396},
}
@inproceedings{aytar2018playing,
author = {Aytar, Yusuf and Pfaff, Tobias and Budden, David and Paine, Thomas and Wang, Ziyu and de Freitas, Nando},
booktitle = {Advances in Neural Information Processing Systems},
date-added = {2019-05-16 10:44:02 -0700},
date-modified = {2019-05-16 10:44:02 -0700},
pages = {2930--2941},
title = {Playing hard exploration games by watching youtube},
year = {2018}
}
@article{bahdanau2014neural,
author = {Bahdanau, Dzmitry and Cho, Kyunghyun and Bengio, Yoshua},
date-added = {2019-04-11 08:37:39 -0700},
date-modified = {2019-04-11 08:37:39 -0700},
doi = {10.48550/arxiv.arXiv:1409.0473},
journal = {arXiv preprint arXiv:1409.0473},
title = {Neural machine translation by jointly learning to align and translate},
year = {2014}
}
@article{bai2022constitutional,
author = {Bai, Yuntao and Kadavath, Saurav and Kundu, Sandipan and Askell, Amanda and Kernion, Jackson and Jones, Andy and Chen, Anna and Goldie, Anna and Mirhoseini, Azalia and McKinnon, Cameron and others},
doi = {10.48550/arxiv.arXiv:2212.08073},
journal = {arXiv preprint arXiv:2212.08073},
title = {Constitutional ai: Harmlessness from ai feedback},
year = {2022}
}
@misc{bai2022traininghelpfulharmlessassistant,
archiveprefix = {arXiv},
author = {Yuntao Bai and Andy Jones and Kamal Ndousse and Amanda Askell and Anna Chen and Nova DasSarma and Dawn Drain and Stanislav Fort and Deep Ganguli and Tom Henighan and Nicholas Joseph and Saurav Kadavath and Jackson Kernion and Tom Conerly and Sheer El-Showk and Nelson Elhage and Zac Hatfield-Dodds and Danny Hernandez and Tristan Hume and Scott Johnston and Shauna Kravec and Liane Lovitt and Neel Nanda and Catherine Olsson and Dario Amodei and Tom Brown and Jack Clark and Sam McCandlish and Chris Olah and Ben Mann and Jared Kaplan},
doi = {10.48550/arxiv.arXiv:2204.05862},
eprint = {2204.05862},
primaryclass = {cs.CL},
title = {Training a Helpful and Harmless Assistant with Reinforcement Learning from Human Feedback},
url = {https://arxiv.org/abs/2204.05862},
year = {2022}
}
@article{baker2017accelerating,
author = {Baker, Bowen and Gupta, Otkrist and Raskar, Ramesh and Naik, Nikhil},
date-added = {2019-04-16 13:25:48 -0700},
date-modified = {2019-04-16 13:25:48 -0700},
doi = {10.48550/arxiv.arXiv:1705.10823},
journal = {arXiv preprint arXiv:1705.10823},
title = {Accelerating neural architecture search using performance prediction},
year = {2017}
}
@inproceedings{baker2019emergent,
title={Emergent Tool Use From Multi-Agent Autocurricula},
author={Bowen Baker and Ingmar Kanitscheider and Todor Markov and Yi Wu and Glenn Powell and Bob McGrew and Igor Mordatch},
booktitle={International Conference on Learning Representations},
year={2020},
url={https://openreview.net/forum?id=SkxpxJBKwS}
}
@article{baker2022video,
author = {Baker, Bowen and Akkaya, Ilge and Zhokov, Peter and Huizinga, Joost and Tang, Jie and Ecoffet, Adrien and Houghton, Brandon and Sampedro, Raul and Clune, Jeff},
date-added = {2023-07-07 11:56:11 -0700},
date-modified = {2023-07-07 11:56:11 -0700},
doi = {10.52202/068431-1789},
journal = {Advances in Neural Information Processing Systems},
pages = {24639--24654},
title = {Video pretraining (vpt): Learning to act by watching unlabeled online videos},
volume = {35},
year = {2022}
}
@misc{baker2025monitoringreasoningmodelsmisbehavior,
archiveprefix = {arXiv},
author = {Bowen Baker and Joost Huizinga and Leo Gao and Zehao Dou and Melody Y. Guan and Aleksander Madry and Wojciech Zaremba and Jakub Pachocki and David Farhi},
doi = {10.48550/arxiv.arXiv:2503.11926},
eprint = {2503.11926},
primaryclass = {cs.AI},
title = {Monitoring Reasoning Models for Misbehavior and the Risks of Promoting Obfuscation},
url = {https://arxiv.org/abs/2503.11926},
year = {2025}
}
@misc{bakhtin2022masteringgamenopressdiplomacy,
archiveprefix = {arXiv},
author = {Anton Bakhtin and David J Wu and Adam Lerer and Jonathan Gray and Athul Paul Jacob and Gabriele Farina and Alexander H Miller and Noam Brown},
doi = {10.48550/arxiv.arXiv:2210.05492},
eprint = {2210.05492},
primaryclass = {cs.GT},
title = {Mastering the Game of No-Press Diplomacy via Human-Regularized Reinforcement Learning and Planning},
url = {https://arxiv.org/abs/2210.05492},
year = {2022}
}
@misc{balestriero2021learninghighdimensionamounts,
archiveprefix = {arXiv},
author = {Randall Balestriero and Jerome Pesenti and Yann LeCun},
doi = {10.48550/arxiv.arXiv:2110.09485},
eprint = {2110.09485},
primaryclass = {cs.LG},
title = {Learning in High Dimension Always Amounts to Extrapolation},
url = {https://arxiv.org/abs/2110.09485},
year = {2021}
}
@article{bansagi2011tomography,
author = {B{\'a}ns{\'a}gi Jr, T. and Vanag, V.K. and Epstein, I.R.},
date-added = {2011-04-05 14:17:12 -0400},
date-modified = {2011-04-05 14:21:45 -0400},
doi = {10.1126/science.1200815},
issn = {1095-9203},
journal = {Science},
pages = {1309},
title = {{Tomography of Reaction-Diffusion Microemulsions Reveals Three-Dimensional Turing Patterns.}},
volume = {331},
year = {2011}
}
@article{bansal2017emergent,
author = {Bansal, Trapit and Pachocki, Jakub and Sidor, Szymon and Sutskever, Ilya and Mordatch, Igor},
date-added = {2019-05-05 13:15:58 -0600},
date-modified = {2019-05-05 13:15:58 -0600},
doi = {10.48550/arxiv.arXiv:1710.03748},
journal = {arXiv preprint arXiv:1710.03748},
title = {Emergent complexity via multi-agent competition},
year = {2017}
}
@article{Bao2023,
author = {Bao, Jueming and Fu, Zhaorong and Pramanik, Tanumoy and Mao, Jun and Chi, Yulin and Cao, Yingkang and Zhai, Chonghao and Mao, Yifei and Dai, Tianxiang and Chen, Xiaojiong and Jia, Xinyu and Zhao, Leshi and Zheng, Yun and Tang, Bo and Li, Zhihua and Luo, Jun and Wang, Wenwu and Yang, Yan and Peng, Yingying and Liu, Dajian and Dai, Daoxin and He, Qiongyi and Muthali, Alif Laila and Oxenlowe, Leif K. and Vigliar, Caterina and Paesani, Stefano and Hou, Huili and Santagati, Raffaele and Silverstone, Joshua W. and Laing, Anthony and Thompson, Mark G. and {O'Brien}, Jeremy L. and Ding, Yunhong and Gong, Qihuang and Wang, Jianwei},
doi = {10.1038/s41566-023-01187-z},
issn = {1749-4893},
journal = {Nature Photonics},
month = {4},
number = {7},
pages = {573-581},
publisher = {Springer Science and Business Media LLC},
title = {Very-large-scale integrated quantum graph photonics},
url = {http://dx.doi.org/10.1038/s41566-023-01187-z},
volume = {17},
year = {2023}
}
@article{barabasi2004network,
author = {Barab{\'a}si, A.L. and Oltvai, Z.N.},
date-added = {2013-09-14 03:30:36 +0000},
date-modified = {2013-09-14 03:30:36 +0000},
doi = {10.1038/nrg1272},
journal = {Nature Reviews Genetics},
number = {2},
pages = {101--113},
publisher = {Nature Publishing Group},
title = {Network biology: understanding the cell's functional organization},
volume = {5},
year = {2004}
}
@article{Bard2020hanabi,
author = {Bard, Nolan and Foerster, Jakob N. and Chandar, Sarath and Burch, Neil and Lanctot, Marc and Song, H. Francis and Parisotto, Emilio and Dumoulin, Vincent and Moitra, Subhodeep and Hughes, Edward and Dunning, Iain and Mourad, Shibl and Larochelle, Hugo and Bellemare, Marc G. and Bowling, Michael},
doi = {10.1016/j.artint.2019.103216},
issn = {0004-3702},
journal = {Artificial Intelligence},
month = {3},
pages = {103216},
publisher = {Elsevier BV},
title = {The Hanabi challenge: A new frontier for AI research},
url = {http://dx.doi.org/10.1016/j.artint.2019.103216},
volume = {280},
year = {2020}
}
@misc{barreto2026irrationalityrapidlyconvergingseries,
archiveprefix = {arXiv},
author = {Kevin Barreto and Jiwon Kang and Sang-hyun Kim and Vjekoslav Kova{\"c} and Shengtong Zhang},
doi = {10.48550/arxiv.arXiv:2601.21442},
eprint = {2601.21442},
primaryclass = {math.NT},
title = {Irrationality of rapidly converging series: a problem of Erdos and Graham},
url = {https://arxiv.org/abs/2601.21442},
year = {2026}
}
@article{barto2003recent,
author = {Barto, Andrew G and Mahadevan, Sridhar},
date-added = {2019-04-11 21:19:41 -0700},
date-modified = {2019-04-11 21:19:41 -0700},
doi = {10.1023/a:1025696116075},
journal = {Discrete event dynamic systems},
number = {1-2},
pages = {41--77},
publisher = {Springer},
title = {Recent advances in hierarchical reinforcement learning},
volume = {13},
year = {2003}
}
@article{bashabsheh2024autonomousrobotdeepq,
author = {Bashabsheh, Murad},
journal = {Journal of Robotics and Control (JRC)},
number = {6},
pages = {1872--1887},
title = {Autonomous Robotic Systems with Artificial Intelligence Technology Using a Deep Q Network-Based Approach for Goal-Oriented 2D Arm Control},
volume = {5},
year = {2024}
}
@inproceedings{batra2024proximalpolicygradientarborescence,
title={Proximal Policy Gradient Arborescence for Quality Diversity Reinforcement Learning},
author={Sumeet Batra and Bryon Tjanaka and Matthew Christopher Fontaine and Aleksei Petrenko and Stefanos Nikolaidis and Gaurav S. Sukhatme},
booktitle={The Twelfth International Conference on Learning Representations},
year={2024},
url={https://openreview.net/forum?id=TFKIfhvdmZ}
}
@conference{beaulieu2020ANML,
author = {Beaulieu, S. and Frati, L. and Miconi, T. and Lehman, J. and Stanley, K. and Clune, J. and Cheney, N.},
booktitle = {European Conference on Artificial Life},
date-added = {2020-01-31 18:40:47 -0800},
date-modified = {2020-01-31 18:43:57 -0800},
title = {Learning to Continually Learn},
year = {2020}
}
@article{bedau2000open,
author = {Bedau, Mark A and McCaskill, John S and Packard, Norman H and Rasmussen, Steen and Adami, Chris and Green, David G and Ikegami, Takashi and Kaneko, Kunihiko and Ray, Thomas S},
date-added = {2019-04-25 16:48:54 -0700},
date-modified = {2019-04-25 16:48:54 -0700},
doi = {10.1162/106454600300103683},
journal = {Artificial life},
number = {4},
pages = {363--376},
publisher = {MIT Press},
title = {Open problems in artificial life},
volume = {6},
year = {2000}
}
@article{beer1992evolving,
author = {Beer, R.D. and Gallagher, J.C.},
date-added = {2010-03-31 15:41:36 -0400},
date-modified = {2010-03-31 15:41:36 -0400},
doi = {10.1177/105971239200100105},
journal = {Adaptive behavior},
number = {1},
pages = {91},
publisher = {ISAB},
title = {{Evolving dynamical neural networks for adaptive behavior}},
volume = {1},
year = {1992}
}
@inproceedings{behbahani2018learning,
author = {Behbahani, Feryal and Shiarlis, Kyriacos and Chen, Xi and Kurin, Vitaly and Kasewa, Sudhanshu and Stirbu, Ciprian and Gomes, Joao and Paul, Supratik and Oliehoek, Frans A and Messias, Joao and others},
booktitle = {2019 International Conference on Robotics and Automation (ICRA)},
doi = {10.1109/icra.2019.8794412},
organization = {IEEE},
pages = {775--781},
title = {Learning from demonstration in the wild},
year = {2019}
}
@article{bellemare13arcade,
author = {{Bellemare}, M.~G. and {Naddaf}, Y. and {Veness}, J. and {Bowling}, M.},
doi = {10.1613/jair.3912},
journal = {Journal of Artificial Intelligence Research},
month = {jun},
pages = {253--279},
title = {The Arcade Learning Environment: An Evaluation Platform for General Agents},
volume = {47},
year = {2013}
}
@article{bellemare2020balloonnavigation,
author = {Bellemare, Marc G. and Candido, Salvatore and Castro, Pablo Samuel and Gong, Jun and Machado, Marlos C. and Moitra, Subhodeep and Ponda, Sameera S. and Wang, Ziyu},
doi = {10.1038/s41586-020-2939-8},
issn = {1476-4687},
journal = {Nature},
month = {12},
number = {7836},
pages = {77-82},
publisher = {Springer Science and Business Media LLC},
title = {Autonomous navigation of stratospheric balloons using reinforcement learning},
url = {http://dx.doi.org/10.1038/s41586-020-2939-8},
volume = {588},
year = {2020}
}
@article{Bellingham2007,
author = {Bellingham, James G and Rajan, Kanna},
bdsk-url-1 = {http://dx.doi.org/10.1126/science.1146230},
date-added = {2015-12-13 21:15:44 +0000},
date-modified = {2015-12-13 21:15:44 +0000},
doi = {10.1126/science.1146230},
issn = {1095-9203},
journal = {Science},
month = {11},
number = {5853},
pages = {1098--102},
pmid = {18006738},
title = {{Robotics in remote and hostile environments.}},
volume = {318},
year = {2007}
}
@inproceedings{bendale2015towards,
author = {Bendale, Abhijit and Boult, Terrance E},
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition},
doi = {10.1109/cvpr.2016.173},
pages = {1563--1572},
title = {Towards open set deep networks},
year = {2016}
}
@article{bengio2009learning,
author = {Bengio, Y.},
date-added = {2014-02-16 07:17:18 +0000},
date-modified = {2014-09-24 03:08:33 +0000},
doi = {10.1561/9781601982957},
journal = {Foundations and trends{\textregistered} in Machine Learning},
number = {1},
pages = {1--127},
publisher = {Now Publishers Inc.},
title = {Learning deep architectures for AI},
volume = {2},
year = {2009}
}
@article{Bengio2024risk,
author = {Bengio, Yoshua and Hinton, Geoffrey and Yao, Andrew and Song, Dawn and Abbeel, Pieter and Darrell, Trevor and Harari, Yuval Noah and Zhang, Ya-Qin and Xue, Lan and Shalev-Shwartz, Shai and Hadfield, Gillian and Clune, Jeff and Maharaj, Tegan and Hutter, Frank and Baydin, At{\i}l{\i}m G{\"u}ne{\c{s}} and McIlraith, Sheila and Gao, Qiqi and Acharya, Ashwin and Krueger, David and Dragan, Anca and Torr, Philip and Russell, Stuart and Kahneman, Daniel and Brauner, Jan and Mindermann, S{\"o}ren},
doi = {10.1126/science.adn0117},
issn = {1095-9203},
journal = {Science},
month = {5},
number = {6698},
pages = {842-845},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Managing extreme {AI} risks amid rapid progress},
url = {http://dx.doi.org/10.1126/science.adn0117},
volume = {384},
year = {2024}
}
@article{BensonAmram2012,
author = {Benson-Amram, Sarah and Holekamp, Kay E.},
doi = {10.1098/rspb.2012.1450},
issn = {1471-2954},
journal = {Proceedings of the Royal Society B: Biological Sciences},
month = {8},
number = {1744},
pages = {4087-4095},
publisher = {The Royal Society},
title = {Innovative problem solving by wild spotted hyenas},
url = {http://dx.doi.org/10.1098/rspb.2012.1450},
volume = {279},
year = {2012}
}
@phdthesis{Bentley:1996,
author = {Peter John Bentley},
date-added = {2011-06-11 13:28:12 -0400},
date-modified = {2011-06-11 13:28:31 -0400},
school = {University of Huddersfield},
title = {Generic Evolutionary Design of Solid Objects using a Genetic Algorithm},
year = {1996}
}
@article{bentley1996generic,
author = {Bentley, P.},
date-added = {2011-06-10 14:41:08 -0400},
date-modified = {2011-06-10 14:41:08 -0400},
title = {Generic evolutionary design of solid objects using a genetic algorithm},
year = {1996}
}
@misc{bereska2024mechanisticinterpretabilityaisafety,
archiveprefix = {arXiv},
author = {Leonard Bereska and Efstratios Gavves},
doi = {10.48550/arxiv.arXiv:2404.14082},
eprint = {2404.14082},
primaryclass = {cs.AI},
title = {Mechanistic Interpretability for AI Safety -- A Review},
url = {https://arxiv.org/abs/2404.14082},
year = {2024}
}
@misc{berg2010large,
author = {Berg, Alex and Deng, Jia and Fei-Fei, L},
date-added = {2014-09-22 05:52:54 +0000},
date-modified = {2014-09-22 05:52:54 +0000},
publisher = {Technical report},
title = {Large scale visual recognition challenge 2010},
year = {2010}
}
@article{Bhattacharya2025,
author = {Bhattacharya, Manojit and Lo, Yi-Hao and Chatterjee, Srijan and Das, Arpita and Wen, Zhi-Hong and Chakraborty, Chiranjib},
doi = {10.1016/j.omtn.2025.102586},
issn = {2162-2531},
journal = {Molecular Therapy Nucleic Acids},
month = {9},
number = {3},
pages = {102586},
publisher = {Elsevier BV},
title = {Deep learning in next-generation vaccine development for infectious diseases},
url = {http://dx.doi.org/10.1016/j.omtn.2025.102586},
volume = {36},
year = {2025}
}
@article{Bigger1927penicilin,
author = {Bigger, Joseph W. and Boland, C. R. and O'meara, R. A. Q.},
doi = {10.1002/path.1700300204},
issn = {1555-2039},
journal = {The Journal of Pathology and Bacteriology},
month = {1},
number = {2},
pages = {261-269},
publisher = {Wiley},
title = {Variant colonies of Staphylococcus aureus},
url = {http://dx.doi.org/10.1002/path.1700300204},
volume = {30},
year = {1927}
}
@inproceedings{BirdRadio,
author = {Bird, J. and Layzell, P.},
booktitle = {Proceedings of the 2002 Congress on Evolutionary Computation. CEC'02 (Cat. No.02TH8600)},
collection = {CEC-02},
doi = {10.1109/cec.2002.1004522},
publisher = {IEEE},
series = {CEC-02},
title = {The evolved radio and its implications for modelling the evolution of novel sensors},
url = {http://dx.doi.org/10.1109/CEC.2002.1004522},
year = {2002}
}
@book{bishop2007,
title = "Pattern Recognition and Machine Learning",
author = "Bishop, Christopher",
publisher = "Springer",
series = "Information Science and Statistics",
edition = {1},
month = {aug},
year = {2006},
address = "New York, NY",
language = "en"
}
@techreport{bishopMDN,
author = {Bishop, Christopher M.},
institution = {Aston University},
number = {NCRG/94/004},
title = {Mixture Density Networks},
url = {https://research.aston.ac.uk/en/publications/mixture-density-networks},
year = {1994}
}
@mastersthesis{bjorsvik2021solving,
author = {Bj{\o}rsvik, Vegard},
date-added = {2021-09-30 15:20:26 -0700},
date-modified = {2021-09-30 15:20:26 -0700},
school = {UNIVERSITY OF OSLO},
title = {Solving Sparse Reward Environments Using Go-Explore with Learned Cell Representation},
year = {2021}
}
@book{blanke2006diagnosis,
author = {Blanke, Mogens and Schr{\"o}der, Jochen},
date-added = {2015-12-13 21:16:24 +0000},
date-modified = {2015-12-13 21:16:24 +0000},
doi = {10.1007/978-3-662-47943-8},
publisher = {Springer},
title = {Diagnosis and fault-tolerant control},
year = {2006}
}
@misc{bloom_erdos_1196,
author = {Thomas F. Bloom},
howpublished = {\url{https://www.erdosproblems.com/forum/thread/1196}},
note = {Accessed: 2026-04-21},
title = {Erdős Problem \#1196},
year = {2026}
}
@conference{bongard2001repeated,
author = {Bongard, J.C. and Pfeifer, R.},
booktitle = {Proceedings of the Genetic and Evolutionary Computation Conference},
date-added = {2011-01-29 21:50:28 -0500},
date-modified = {2011-03-28 01:34:21 -0400},
pages = {829--836},
title = {{Repeated structure and dissociation of genotypic and phenotypic complexity in artificial ontogeny}},
year = {2001}
}
@article{bongard2006resilient,
author = {Bongard, J. and Zykov, V. and Lipson, H.},
date-added = {2012-06-08 19:29:42 -0400},
date-modified = {2012-06-08 19:29:42 -0400},
doi = {10.1126/science.1133687},
journal = {Science},
number = {5802},
pages = {1118--1121},
publisher = {American Association for the Advancement of Science},
title = {Resilient machines through continuous self-modeling},
volume = {314},
year = {2006}
}
@article{bongard2011spontaneous,
author = {Bongard, J.C.},
date-added = {2011-10-31 01:07:17 -0400},
date-modified = {2011-10-31 01:07:17 -0400},
doi = {10.1145/2001576.2001611},
journal = {Proceedings of the 13th annual conference on Genetic and evolutionary computation},
title = {Spontaneous Evolution of Structural Modularity in Robot Neural Network Controllers},
year = {2011}
}
@article{bongard2013evolutionary,
author = {Bongard, J.},
date-added = {2013-08-21 04:25:55 +0000},
date-modified = {2013-08-21 04:26:42 +0000},
doi = {10.1007/978-3-319-32552-1_76},
journal = {Communications of the ACM},
number = {74-85},
title = {Evolutionary robotics},
volume = {56(8)},
year = {2013}
}
@article{bostrom2002a,
author = {Bostrom, N},
edition = {Publisher's version},
journal = {Journal of Evolution and Technology},
publisher = {Institute for Ethics and Emerging Technologies},
title = {{Existential Risks}: analyzing human extinction scenarios and related hazards},
volume = {9},
year = {2002}
}
@incollection{bostrom2014ethics,
author = {Bostrom, Nick and Yudkowsky, Eliezer},
booktitle = {Artificial intelligence safety and security},
pages = {57--69},
publisher = {Chapman and Hall/CRC},
title = {The ethics of artificial intelligence},
year = {2018}
}
@article{botvinick2017building,
author = {Botvinick, Matthew and Barrett, David GT and Battaglia, Peter and de Freitas, Nando and Kumaran, Dharshan and Leibo, Joel Z and Lillicrap, Tim and Modayil, Joseph and Mohamed, S and Rabinowitz, Neil C and others},
date-added = {2019-05-15 12:39:20 -0700},
date-modified = {2019-05-15 12:39:20 -0700},
doi = {10.48550/arxiv.arXiv:1711.08378},
journal = {arXiv preprint arXiv:1711.08378},
title = {Building machines that learn and think for themselves: Commentary on lake et al., behavioral and brain sciences, 2017},
year = {2017}
}
@misc{bowman2022measuring,
archiveprefix = {arXiv},
author = {Samuel R. Bowman and Jeeyoon Hyun and Ethan Perez and Edwin Chen and Craig Pettit and Scott Heiner and Kamil\k{e} Luko\v{s}i\={u}t\k{e} and Amanda Askell and Andy Jones and Anna Chen and Anna Goldie and Azalia Mirhoseini and Cameron McKinnon and Christopher Olah and Daniela Amodei and Dario Amodei and Dawn Drain and Dustin Li and Eli Tran-Johnson and Jackson Kernion and Jamie Kerr and Jared Mueller and Jeffrey Ladish and Joshua Landau and Kamal Ndousse and Liane Lovitt and Nelson Elhage and Nicholas Schiefer and Nicholas Joseph and Noem\'i Mercado and Nova DasSarma and Robin Larson and Sam McCandlish and Sandipan Kundu and Scott Johnston and Shauna Kravec and Sheer El Showk and Stanislav Fort and Timothy Telleen-Lawton and Tom Brown and Tom Henighan and Tristan Hume and Yuntao Bai and Zac Hatfield-Dodds and Ben Mann and Jared Kaplan},
doi = {10.48550/arxiv.arXiv:2211.03540},
eprint = {2211.03540},
primaryclass = {cs.HC},
title = {Measuring Progress on Scalable Oversight for Large Language Models},
year = {2022}
}
@article{bowman2023thingsknowlargelanguage,
author = {Bowman, Samuel R},
doi = {10.1215/2834703x-11556011},
journal = {Critical AI},
number = {2},
publisher = {Duke University Press},
title = {Eight things to know about large language models},
volume = {2},
year = {2024}
}
@book{boyer1983mechanical,
author = {Boyer, Robert S and Moore, J Strother},
doi = {10.1090/conm/029/08},
publisher = {Citeseer},
title = {A mechanical proof of the Turing completeness of pure LISP},
year = {1983}
}
@inproceedings{bradley2024qualitydiversity,
author = {Herbie Bradley and Andrew Dai and Hannah Benita Teufel and Jenny Zhang and Koen Oostermeijer and Marco Bellagente and Jeff Clune and Kenneth Stanley and Gregory Schott and Joel Lehman},
booktitle = {The Twelfth International Conference on Learning Representations},
title = {Quality-Diversity through {AI} Feedback},
url = {https://openreview.net/forum?id=owokKCrGYr},
year = {2024}
}
@article{brandsttter2006,
author = {Brandst\"{a}tter, Eduard and Gigerenzer, Gerd and Hertwig, Ralph},
doi = {10.1037/0033-295x.113.2.409},
issn = {0033-295X},
journal = {Psychological Review},
number = {2},
pages = {409-432},
publisher = {American Psychological Association (APA)},
title = {The priority heuristic: Making choices without trade-offs.},
url = {http://dx.doi.org/10.1037/0033-295X.113.2.409},
volume = {113},
year = {2006}
}
@inproceedings{brant2017minimal,
author = {Brant, Jonathan C and Stanley, Kenneth O},
booktitle = {Proceedings of the Genetic and Evolutionary Computation Conference},
date-added = {2019-04-11 20:11:08 -0700},
date-modified = {2019-04-11 20:11:08 -0700},
doi = {10.1145/3071178.3071186},
organization = {ACM},
pages = {67--74},
title = {Minimal criterion coevolution: a new approach to open-ended search},
year = {2017}
}
@article{Bravi2024,
author = {Bravi, Barbara},
doi = {10.1038/s41541-023-00795-8},
issn = {2059-0105},
journal = {npj Vaccines},
month = {1},
number = {1},
publisher = {Springer Science and Business Media LLC},
title = {Development and use of machine learning algorithms in vaccine target selection},
url = {http://dx.doi.org/10.1038/s41541-023-00795-8},
volume = {9},
year = {2024}
}
@article{broadbent2009acceptance,
author = {Broadbent, E. and Stafford, R. and MacDonald, B.},
date-added = {2015-12-13 21:16:00 +0000},
date-modified = {2015-12-13 21:16:00 +0000},
doi = {10.1007/s12369-009-0030-6},
journal = {International Journal of Social Robotics},
number = {4},
pages = {319--330},
publisher = {Springer},
title = {Acceptance of healthcare robots for the older population: review and future directions},
volume = {1},
year = {2009}
}
@misc{brockman2016openaigym,
archiveprefix = {arXiv},
author = {Greg Brockman and Vicki Cheung and Ludwig Pettersson and Jonas Schneider and John Schulman and Jie Tang and Wojciech Zaremba},
doi = {10.48550/arxiv.arXiv:1606.01540},
eprint = {1606.01540},
primaryclass = {cs.LG},
title = {OpenAI Gym},
url = {https://arxiv.org/abs/1606.01540},
year = {2016}