-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathicml.bib
2088 lines (2084 loc) · 81.4 KB
/
icml.bib
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{thompson1933likelihood,
title={On the likelihood that one unknown probability exceeds another in view of the evidence of two samples},
author={Thompson, William R},
journal={Biometrika},
volume={25},
number={3/4},
pages={285--294},
year={1933},
publisher={JSTOR}
}
@article{bush1953stochastic,
title={A stochastic model with applications to learning},
author={Bush, Robert R and Mosteller, Frederick},
journal={The Annals of Mathematical Statistics},
pages={559--585},
year={1953},
publisher={JSTOR}
}
@article{grace2017will,
title={When will AI exceed human performance? Evidence from AI experts},
author={Grace, Katja and Salvatier, John and Dafoe, Allan and Zhang, Baobao and Evans, Owain},
journal={arXiv preprint arXiv:1705.08807},
year={2017}
}
@inproceedings{brown2017libratus,
title={Libratus: the superhuman AI for no-limit poker},
author={Brown, Noam and Sandholm, Tuomas},
booktitle={Proceedings of the Twenty-Sixth International Joint Conference on Artificial Intelligence},
year={2017}
}
@article{moravvcik2017deepstack,
title={Deepstack: Expert-level artificial intelligence in heads-up no-limit poker},
author={Morav{\v{c}}{\'\i}k, Matej and Schmid, Martin and Burch, Neil and Lis{\`y}, Viliam and Morrill, Dustin and Bard, Nolan and Davis, Trevor and Waugh, Kevin and Johanson, Michael and Bowling, Michael},
journal={Science},
volume={356},
number={6337},
pages={508--513},
year={2017},
publisher={American Association for the Advancement of Science}
}
@article{silver2016mastering,
title={Mastering the game of Go with deep neural networks and tree search},
author={Silver, David and Huang, Aja and Maddison, Chris J and Guez, Arthur and Sifre, Laurent and Van Den Driessche, George and Schrittwieser, Julian and Antonoglou, Ioannis and Panneershelvam, Veda and Lanctot, Marc and others},
journal={nature},
volume={529},
number={7587},
pages={484--489},
year={2016},
publisher={Nature Research}
}
@article{drucker1976pension,
title={Pension fund socialism},
author={Drucker, Peter F},
journal={The Public Interest},
number={42},
pages={3},
year={1976},
publisher={National Affairs, inc.}
}
@article{campbell2002deep,
title={Deep blue},
author={Campbell, Murray and Hoane Jr, A Joseph and Hsu, Feng-hsiung},
journal={Artificial intelligence},
volume={134},
number={1-2},
pages={57--83},
year={2002},
publisher={Elsevier}
}
@article{silver2017mastering,
title={Mastering Chess and Shogi by Self-Play with a General Reinforcement Learning Algorithm},
author={Silver, David and Hubert, Thomas and Schrittwieser, Julian and Antonoglou, Ioannis and Lai, Matthew and Guez, Arthur and Lanctot, Marc and Sifre, Laurent and Kumaran, Dharshan and Graepel, Thore and others},
journal={arXiv preprint arXiv:1712.01815},
year={2017}
}
@article{rahwan2016moral,
title={Moral Machine},
author={Rahwan, Iyad and Bonnefon, Jean-Francois and Shariff, Azim and others},
journal={Scalable Cooperation, MIT Media Lab. At: http://moralmachine. mit. edu (accessed 21 August 2016)},
year={2016}
}
@article{kim2018computational,
title={A Computational Model of Commonsense Moral Decision Making},
author={Kim, Richard and Kleiman-Weiner, Max and Abeliuk, Andres and Awad, Edmond and Dsouza, Sohan and Tenenbaum, Josh and Rahwan, Iyad},
journal={arXiv preprint arXiv:1801.04346},
year={2018}
}
@article{lerer2017maintaining,
title={Maintaining cooperation in complex social dilemmas using deep reinforcement learning},
author={Lerer, Adam and Peysakhovich, Alexander},
journal={arXiv preprint arXiv:1707.01068},
year={2017}
}
@article{cheng2015global,
title={Global contrast based salient region detection},
author={Cheng, Ming-Ming and Mitra, Niloy J and Huang, Xiaolei and Torr, Philip HS and Hu, Shi-Min},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
volume={37},
number={3},
pages={569--582},
year={2015},
publisher={IEEE}
}
@article{rittel1973dilemmas,
title={Dilemmas in a general theory of planning},
author={Rittel, Horst WJ and Webber, Melvin M},
journal={Policy sciences},
volume={4},
number={2},
pages={155--169},
year={1973},
publisher={Springer}
}
@article{head2008wicked,
title={Wicked problems in public policy},
author={Head, Brian W and others},
journal={Public policy},
volume={3},
number={2},
pages={101},
year={2008},
publisher={John Curtin Institute of Public Policy, Curtin University of Technology}
}
@article{camillus2008strategy,
title={Strategy as a wicked problem},
author={Camillus, John C},
journal={Harvard business review},
volume={86},
number={5},
pages={98},
year={2008}
}
@inproceedings{levin2007playing,
title={Playing it forward: Path dependency, progressive incrementalism, and the ‘Super Wicked’problem of global climate change},
author={Levin, Kelly and Cashore, Benjamin and Bernstein, Steven and Auld, Graeme},
booktitle={International Studies Association 48th Annual Convention. Chicago, February},
year={2007},
organization={Citeseer}
}
@book{pearl2009causality,
title={Causality},
author={Pearl, Judea},
year={2009},
publisher={Cambridge university press}
}
@article{mcdermott1976artificial,
title={Artificial intelligence meets natural stupidity},
author={McDermott, Drew},
journal={ACM SIGART Bulletin},
number={57},
pages={4--9},
year={1976},
publisher={ACM}
}
@article{lombrozo2006structure,
title={The structure and function of explanations},
author={Lombrozo, Tania},
journal={Trends in cognitive sciences},
volume={10},
number={10},
pages={464--470},
year={2006},
publisher={Elsevier}
}
@article{grosz1996collaborative,
title={Collaborative Systems (AAAI-94 Presidential Address)},
author={Grosz, Barbara J},
journal={AI magazine},
volume={17},
number={2},
pages={67},
year={1996}
}
@inproceedings{ciardo2002using,
title={Using edge-valued decision diagrams for symbolic generation of shortest paths},
author={Ciardo, Gianfranco and Siminiceanu, Radu},
booktitle={International Conference on Formal Methods in Computer-Aided Design},
pages={256--273},
year={2002},
organization={Springer}
}
@inproceedings{ng1999policy,
title={Policy invariance under reward transformations: Theory and application to reward shaping},
author={Ng, Andrew Y and Harada, Daishi and Russell, Stuart},
booktitle={ICML},
volume={99},
pages={278--287},
year={1999}
}
@article{de2017multi,
title={Multi-step reinforcement learning: A unifying algorithm},
author={De Asis, Kristopher and Hernandez-Garcia, J Fernando and Holland, G Zacharias and Sutton, Richard S},
journal={arXiv preprint arXiv:1703.01327},
year={2017}
}
@article{henriques2015high,
title={High-speed tracking with kernelized correlation filters},
author={Henriques, Jo{\~a}o F and Caseiro, Rui and Martins, Pedro and Batista, Jorge},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
volume={37},
number={3},
pages={583--596},
year={2015},
publisher={IEEE}
}
@article{sutton1999between,
title={Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning},
author={Sutton, Richard S and Precup, Doina and Singh, Satinder},
journal={Artificial intelligence},
volume={112},
number={1-2},
pages={181--211},
year={1999},
publisher={Elsevier}
}
@inproceedings{bacon2017option,
title={The Option-Critic Architecture.},
author={Bacon, Pierre-Luc and Harb, Jean and Precup, Doina},
booktitle={AAAI},
pages={1726--1734},
year={2017}
}
@article{simon1972theories,
title={Theories of bounded rationality},
author={Simon, Herbert A},
journal={Decision and organization},
volume={1},
number={1},
pages={161--176},
year={1972}
}
@inproceedings{huang2015supporting,
title={Supporting mental model accuracy in trigger-action programming},
author={Huang, Justin and Cakmak, Maya},
booktitle={Proceedings of the 2015 ACM International Joint Conference on Pervasive and Ubiquitous Computing},
pages={215--225},
year={2015},
organization={ACM}
}
@inproceedings{subramanian2011learning,
title={Learning options through human interaction},
author={Subramanian, Kaushik and Isbell, Charles and Thomaz, Andrea},
booktitle={2011 IJCAI Workshop on Agents Learning Interactively from Human Teachers (ALIHT)},
year={2011},
organization={Citeseer}
}
@article{knox2015framing,
title={Framing reinforcement learning from human reward: Reward positivity, temporal discounting, episodicity, and performance},
author={Knox, W Bradley and Stone, Peter},
journal={Artificial Intelligence},
volume={225},
pages={24--50},
year={2015},
publisher={Elsevier}
}
@inproceedings{isbell2001social,
title={A social reinforcement learning agent},
author={Isbell, Charles and Shelton, Christian R and Kearns, Michael and Singh, Satinder and Stone, Peter},
booktitle={Proceedings of the fifth international conference on Autonomous agents},
pages={377--384},
year={2001},
organization={ACM}
}
@inproceedings{loftin2014strategy,
title={A Strategy-Aware Technique for Learning Behaviors from Discrete Human Feedback.},
author={Loftin, Robert Tyler and MacGlashan, James and Peng, Bei and Taylor, Matthew E and Littman, Michael L and Huang, Jeff and Roberts, David L},
booktitle={AAAI},
pages={937--943},
year={2014}
}
@inproceedings{taylor2007transfer,
title={Transfer via inter-task mappings in policy search reinforcement learning},
author={Taylor, Matthew E and Whiteson, Shimon and Stone, Peter},
booktitle={Proceedings of the 6th international joint conference on Autonomous agents and multiagent systems},
pages={37},
year={2007},
organization={ACM}
}
@article{wang2017erm,
title={On the ERM Principle with Networked Data},
author={Wang, Yuanhong and Wang, Yuyi and Liu, Xingwu and Pu, Juhua},
journal={arXiv preprint arXiv:1711.04297},
year={2017}
}
@inproceedings{abraham2010highway,
title={Highway dimension, shortest paths, and provably efficient algorithms},
author={Abraham, Ittai and Fiat, Amos and Goldberg, Andrew V and Werneck, Renato F},
booktitle={Proceedings of the twenty-first annual ACM-SIAM symposium on Discrete Algorithms},
pages={782--793},
year={2010},
organization={Society for Industrial and Applied Mathematics}
}
@inproceedings{funke2011path,
title={Path shapes: an alternative method for map matching and fully autonomous self-localization},
author={Funke, Stefan and Storandt, Sabine},
booktitle={Proceedings of the 19th ACM SIGSPATIAL International Conference on Advances in Geographic Information Systems},
pages={319--328},
year={2011},
organization={ACM}
}
@inproceedings{bast2007transit,
title={In transit to constant time shortest-path queries in road networks},
author={Bast, Holger and Funke, Stefan and Matijevic, Domagoj and Sanders, Peter and Schultes, Dominik},
booktitle={Proceedings of the Meeting on Algorithm Engineering \& Expermiments},
pages={46--59},
year={2007},
organization={Society for Industrial and Applied Mathematics}
}
@inproceedings{ramirez2010probabilistic,
title={Probabilistic plan recognition using off-the-shelf classical planners},
author={Ram{\i}rez, Miquel and Geffner, Hector},
booktitle={Proceedings of the Conference of the Association for the Advancement of Artificial Intelligence (AAAI 2010)},
pages={1121--1126},
year={2010}
}
@article{kaye2000minesweeper,
title={Minesweeper is NP-complete},
author={Kaye, Richard},
journal={The Mathematical Intelligencer},
volume={22},
number={2},
pages={9--15},
year={2000},
publisher={Springer}
}
@inproceedings{newson2009hidden,
title={Hidden Markov map matching through noise and sparseness},
author={Newson, Paul and Krumm, John},
booktitle={Proceedings of the 17th ACM SIGSPATIAL international conference on advances in geographic information systems},
pages={336--343},
year={2009},
organization={ACM}
}
@inproceedings{cheng2011taxisim,
title={Taxisim: A multiagent simulation platform for evaluating taxi fleet operations},
author={Cheng, Shih-Fen and Nguyen, Thi Duong},
booktitle={Web Intelligence and Intelligent Agent Technology (WI-IAT), 2011 IEEE/WIC/ACM International Conference on},
volume={2},
pages={14--21},
year={2011},
organization={IEEE}
}
@article{foerster2017counterfactual,
title={Counterfactual multi-agent policy gradients},
author={Foerster, Jakob and Farquhar, Gregory and Afouras, Triantafyllos and Nardelli, Nantas and Whiteson, Shimon},
journal={arXiv preprint arXiv:1705.08926},
year={2017}
}
@inproceedings{freedman2018adapting,
title={Adapting a kidney exchange algorithm to align with human values},
author={Freedman, Rachel and Borg, Jana Schaich and Sinnott-Armstrong, Walter and Dickerson, John P and Conitzer, Vincent},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{marom2018belief,
title={Belief Reward Shaping in Reinforcement Learning},
author={Marom, Ofir and Rosman, Benjamin},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{ribeiro2018anchors,
title={Anchors: High-Precision Model-Agnostic Explanations},
author={Marco Tulio Ribeiro, Sameer Singh, Carlos Guestrin},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{li2018file,
title={FILE: A Novel Framework for Predicting Social Status in Signed Networks},
author={Xiaoming Li, Hui Fang, Jie Zhang},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{freedman2018adapting,
title={Adapting a kidney exchange algorithm to align with human values},
author={Freedman, Rachel and Borg, Jana Schaich and Sinnott-Armstrong, Walter and Dickerson, John P and Conitzer, Vincent},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{kahng2018ranking,
title={Ranking wily people who rank each other},
author={Kahng, Anson and Kotturi, Yasmine and Kulkarni, Chinmay and Kurokawa, David and Procaccia, Ariel D},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018},
}
@inproceedings{fulton2018safe,
title={Safe Reinforcement Learning via Formal Methods},
author={Fulton, Nathan and Platzer, Andr{\'e}},
year={2018},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
}
@inproceedings{hessel2018rainbow,
title={Rainbow: Combining Improvements in Deep Reinforcement Learning},
author={Hessel, Matteo and Modayil, Joseph and Van Hasselt, Hado and Schaul, Tom and Ostrovski, Georg and Dabney, Will and Horgan, Dan and Piot, Bilal and Azar, Mohammad and Silver, David},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{foerster2018counterfactual,
title={Counterfactual multi-agent policy gradients},
author={Foerster, Jakob and Farquhar, Gregory and Afouras, Triantafyllos and Nardelli, Nantas and Whiteson, Shimon},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{gaspers18,
title={Minesweeper with Limited Moves},
author={Serge Gaspers, Stefan Rümmele, Abdallah Saffidine, Kevin Tran},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{sohrabi2018ai,
title={An AI Planning Solution to Scenario Generation for Enterprise Risk Management},
author={Sohrabi, Shirin and Riabov, Anton V and Katz, Michael and Udrea, Octavian},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{asai2018classical,
title={Classical Planning in Deep Latent Space: Bridging the Subsymbolic-Symbolic Boundary},
author={Asai, Masataro and Fukunaga, Alex},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{song18risk,
title={Risk-aware Proactive Scheduling via Conditional Value-at-Risk},
author={Wen Song, Donghun Kang, Jie Zhang, Hui Xi},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{blum2018sublin,
title={Sublinear Search Spaces for Shortest Path Planning in Grid and Road Networks},
author={Johannes Blum, Stefan Funke, Sabine Storandt},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{blum2018algorithms,
title={Algorithms for Generalized Topic Modeling},
author={Blum, Avrim and Haghtalab, Nika},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{ashtiani2018sample,
title={Sample-Efficient Learning of Mixtures},
author={Ashtiani, Hassan and Ben-David, Shai and Mehrabian, Abbas},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{nguyen2018provable,
title={A Provable Approach for Double-Sparse Coding},
author={Nguyen, Thanh and Wong, Raymond KW and Hegde, Chinmay},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{wang2018erm,
title={On the ERM Principle with Networked Data},
author={Wang, Yuanhong and Wang, Yuyi and Liu, Xingwu and Pu, Juhua},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{harb2018waiting,
title={When waiting is not an option: Learning options with a deliberation cost},
author={Harb, Jean and Bacon, Pierre-Luc and Klissarov, Martin and Precup, Doina},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{li2018optimal,
title={An Optimal Online Method of Selecting Source Policies for Reinforcement Learning},
author={Li, Siyuan and Zhang, Chongjie},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{de2018multi,
title={Multi-step reinforcement learning: A unifying algorithm},
author={De Asis, Kristopher and Hernandez-Garcia, J Fernando and Holland, G Zacharias and Sutton, Richard S},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{tavakoli2018action,
title={Action Branching Architectures for Deep Reinforcement Learning},
author={Tavakoli, Arash and Pardo, Fabio and Kormushev, Petar},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{sharma2018phase,
title={Phase-Parametric Policies for Reinforcement Learning in Cyclic Environments},
author={Sharma, Arjun and Kitani, Kris M},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{xinrun2018catching,
title={Catching Captain Jack: Efficient Time and Space Dependent Patrols to Combat Oil-Siphoning in International Waters},
author={Xinrun Wang, Bo An and Strobel, Martin and Kong, Fookwai},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{tang2018multi,
title={Multi-Entity Dependence Learning with Rich Context via Conditional Variational Auto-encoder},
author={Tang, Luming and Xue, Yexiang and Chen, Di and Gomes, Carla P},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{yang18poiss,
title={A Poisson Gamma Probabilistic Model for Latent Node-group Memberships in Dynamic Networks},
author={Sikun Yang, Heinz Koeppl},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{wang2018kernel,
title={Kernel Cross-Correlator},
author={Wang, Chen and Zhang, Le and Xie, Lihua and Yuan, Junsong},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{sharon2018traffic,
title={Traffic Optimization For a Mixture of Self-interested and Compliant Agents},
author={Sharon, Guni and Albert, Michael and Rambha, Tarun and Boyles, Stephen and Stone, Peter},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{kumar2018load,
title={Load Scheduling of Simple Temporal Networks Under Dynamic Resource Pricing},
author={Kumar, TK Satish and Wang, Zhi and Craig, Anoop Kumar Craig Milo Rogers and Knoblock, A},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{liu2017change,
title={A Change-Detection based Framework for Piecewise-stationary Multi-Armed Bandit Problem},
author={Liu, Fang and Lee, Joohyun and Shroff, Ness},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{benavent2018experimental,
title={An Experimental Study of Advice in Sequential Decision-Making under Uncertainty},
author={Benavent, Florian and Zanuttini, Bruno},
booktitle={32nd AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{paul2018alternating,
title={Alternating Optimisation and Quadrature for Robust Control},
author={Paul, Supratik and Chatzilygeroudis, Konstantinos and Ciosek, Kamil and Mouret, Jean-Baptiste and Osborne, Michael and Whiteson, Shimon and Ivaldi, Serena and Ugurlu, Barkan},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{jiang2018pac,
title={PAC Reinforcement Learning with an Imperfect Model},
author={Jiang, Nan},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{harutyunyan2018learning,
title={Learning with options that terminate off-policy},
author={Harutyunyan, Anna and Vrancx, Peter and Bacon, Pierre-Luc and Precup, Doina and Nowe, Ann},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{brown18irl,
title={Efficient Probabilistic Performance Bounds for Inverse Reinforcement Learning},
author={Daniel Brown, Scott Niekum},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{mattmueller18,
title={On the Relationship Between State-Dependent Action Costs and Conditional Effects in Planning},
author={Robert Mattmueller, Florian Geißer, Benedict Wright, Bernhard Nebel},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@inproceedings{hooker18toward,
title={Toward Non-Intuition-Based Machine Ethics},
author={John Hooker and Tae Wan Kim},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{larosa18trust,
title={Impacts on Trust of Healthcare AI},
author={Emily Larosa and David Danks},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{erdelyi18,
title={Regulating Artificial Intelligence Proposal for a Global Solution},
author={Olivia J. Erdelyi, Judy Goldsmith.},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{scheessele18frame,
title={A framework for grounding the moral status of intelligent machines},
author={Michael Scheessele},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{estrada18val,
title={Value Alignment, Fair Play, and the Rights of Service Robots},
author={Daniel Estrada},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{kramer18when,
title={When Do People Want AI to Make Decisions?},
author={Max Kramer, Jana Schaich Borg, Vincent Conitzer and Walter Sinnott-Armstrong},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{gruze18wicked,
title={Rethinking AI Strategy and Policy as Entangled Super Wicked Problems},
author={Ross Gruetzemacher},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{london18reg,
title={Regulating Autonomous Vehicles: A Policy Proposal},
author={Alex John London and David Danks},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{iyer18explan,
title={Transparency and Explanation in Deep Reinforcement Learning Neural Networks},
author={Rahul Iyer, Yuezhang Li, Huao Li, Michael Lewis, Ramitha Sundar and Katia Sycara}
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{sun18shape,
title={Designing Non-greedy Reinforcement Learning Agents with Diminishing Reward Shaping},
author={Fan-Yun Sun, Yen-Yu Chang, Yueh-Hua Wu and Shou-De Lin},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{kim18comp,
title={A Computational Model of Commonsense Moral Decision Making},
author={Richard Kim, Max Kleiman-Weiner, Andres Abeliuk, Edmond Awad, Sohan Dsouza, Josh Tenenbaum and Iyad Rahwan},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{vanderelst18,
title={The Dark Side of Ethical Robots},
author={Dieter Vanderelst and Alan Winfield},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{henderson18ethics,
title={Ethical Challenges in Data-Driven Dialogue Systems},
author={Peter Henderson, Koustuv Sinha, Nicolas Angelard-Gontier, Nan Rosemary Ke, Genevieve Fried, Ryan Lowe, Joelle Pineau},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{eicher18watson,
title={Jill Watson Doesn’t Care if You’re Pregnant:
Grounding AI Ethics in Empirical Studies},
author={Bobbie Eicher, Lalith Polepeddi, Ashok Goel},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{cave18risk,
title={An AI Race for Strategic Advantage: Rhetoric and Risks},
author={Stephen Cave and Seán S ÓhÉigeartaigh},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{wallach2018agile,
title={An Agile Ethical/Legal Model for the International and National Governance of AI and Robotics},
authors={Wendell Wallach and Gary E. Marchant},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{maas18reg,
title={Regulating for ‘normal AI accidents’— Operational lessons for the responsible governance of AI deployment},
author={Matthijs M. Maas},
booktitle={Proceedings of the First AAAI/ACM Conference on Artificial Intelligence, Ethics & Society},
year={2018}
}
@inproceedings{katzsemi2018,
title={Semi-Black Box: Rapid Development of Planning Based Solutions},
author={Michael Katz*, Dany Moshkovich, Erez Karpas},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence},
year={2018}
}
@article{correa2018generalized,
title={Generalized Adjustment Under Confounding and Selection Biases},
author={Correa, Juan D and Tian, Jin and Bareinboim, Elias},
year={2018}
}
@inproceedings{xiaommc2018,
title={Memory-Augmented Monte Carlo Tree Search},
author={Chenjun Xiao and Jincheng Mei and Martin Muller},
year={2018},
booktitle={Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence}
}
@inproceedings{abel2018solar,
title={Bandit-Based Solar Panel Control},
author={David Abel and Edward C. Willams and Stephen Brawner and Emily Reif and Michael L. Littman},
booktitle={Proceedings of the Thirtieth Conference on Innovative Applications of Artificial Intelligence},
year={2018}
}
@inproceedings{shah2018indi,
title={A water demand prediction model for Central Indiana},
author={Setu Shah, Mahmood Hosseini, Zina Ben-Miled, Rebecca Shafer and Steve Berube},
booktitle={Proceedings of the Thirtieth Conference on Innovative Applications of Artificial Intelligence},
year={2018}
}
@inproceedings{Hoshino2018,
title={Optimal Pricing for Distance-Based Transit Fares},
author={Richard Hoshino and Jeneva Beairsto},
booktitle={Proceedings of the Thirtieth Conference on Innovative Applications of Artificial Intelligence},
year={2018}
}
@inproceedings{shekhar2018,
title={Upping the Game of Taxi Driving in the Age of Uber},
author={Shashi Shekhar Jha, Shih-Fen Cheng, Meghna Lowalekar, Nicholas Wong Wai Hin, Rishikeshan Rajendram, Tran Trong Khiem, Pradeep Varakantham, Truong Trong Nghia and Firmansyah Rahman},
booktitle={Proceedings of the Thirtieth Conference on Innovative Applications of Artificial Intelligence},
year={2018}
}
@inproceedings{dwork2012fairness,
title={Fairness through awareness},
author={Dwork, Cynthia and Hardt, Moritz and Pitassi, Toniann and Reingold, Omer and Zemel, Richard},
booktitle={Proceedings of the 3rd innovations in theoretical computer science conference},
pages={214--226},
year={2012},
organization={ACM}
}
@article{chouldechova2017fair,
title={Fair prediction with disparate impact: A study of bias in recidivism prediction instruments},
author={Chouldechova, Alexandra},
journal={Big data},
volume={5},
number={2},
pages={153--163},
year={2017},
publisher={Mary Ann Liebert, Inc. 140 Huguenot Street, 3rd Floor New Rochelle, NY 10801 USA}
}
@article{kleinberg2016inherent,
title={Inherent trade-offs in the fair determination of risk scores},
author={Kleinberg, Jon and Mullainathan, Sendhil and Raghavan, Manish},
journal={arXiv preprint arXiv:1609.05807},
year={2016}
}
@inproceedings{zemel2013learning,
title={Learning fair representations},
author={Zemel, Rich and Wu, Yu and Swersky, Kevin and Pitassi, Toni and Dwork, Cynthia},
booktitle={International Conference on Machine Learning},
pages={325--333},
year={2013}
}
@article{antoniou2017data,
title={Data Augmentation Generative Adversarial Networks},
author={Antoniou, Antreas and Storkey, Amos and Edwards, Harrison},
journal={arXiv preprint arXiv:1711.04340},
year={2017}
}
@incollection{williams1992simple,
title={Simple statistical gradient-following algorithms for connectionist reinforcement learning},
author={Williams, Ronald J},
booktitle={Reinforcement Learning},
pages={5--32},
year={1992},
publisher={Springer}
}
@article{wang2015dueling,
title={Dueling network architectures for deep reinforcement learning},
author={Wang, Ziyu and Schaul, Tom and Hessel, Matteo and Van Hasselt, Hado and Lanctot, Marc and De Freitas, Nando},
journal={arXiv preprint arXiv:1511.06581},
year={2015}
}
@inproceedings{hasselt2010double,
title={Double Q-learning},
author={Hasselt, Hado V},
booktitle={Advances in Neural Information Processing Systems},
pages={2613--2621},
year={2010}
}
@article{schaul2015prioritized,
title={Prioritized experience replay},
author={Schaul, Tom and Quan, John and Antonoglou, Ioannis and Silver, David},
journal={arXiv preprint arXiv:1511.05952},
year={2015}
}
@article{fortunato2017noisy,
title={Noisy networks for exploration},
author={Fortunato, Meire and Azar, Mohammad Gheshlaghi and Piot, Bilal and Menick, Jacob and Osband, Ian and Graves, Alex and Mnih, Vlad and Munos, Remi and Hassabis, Demis and Pietquin, Olivier and others},
journal={arXiv preprint arXiv:1706.10295},
year={2017}
}
@article{bellemare2017distributional,
title={A distributional perspective on reinforcement learning},
author={Bellemare, Marc G and Dabney, Will and Munos, R{\'e}mi},
journal={arXiv preprint arXiv:1707.06887},
year={2017}
}
@article{sutton1988learning,
title={Learning to predict by the methods of temporal differences},
author={Sutton, Richard S},
journal={Machine learning},
volume={3},
number={1},
pages={9--44},
year={1988},
publisher={Springer}
}
@inproceedings{mnih2016asynchronous,
title={Asynchronous methods for deep reinforcement learning},
author={Mnih, Volodymyr and Badia, Adria Puigdomenech and Mirza, Mehdi and Graves, Alex and Lillicrap, Timothy and Harley, Tim and Silver, David and Kavukcuoglu, Koray},
booktitle={International Conference on Machine Learning},
pages={1928--1937},
year={2016}
}
@article{eykholt2017note,
title={Note on Attacking Object Detectors with Adversarial Stickers},
author={Eykholt, Kevin and Evtimov, Ivan and Fernandes, Earlence and Li, Bo and Song, Dawn and Kohno, Tadayoshi and Rahmati, Amir and Prakash, Atul and Tramer, Florian},
journal={arXiv preprint arXiv:1712.08062},
year={2017}
}
@article{goodfellow2014explaining,
title={Explaining and harnessing adversarial examples},
author={Goodfellow, Ian J and Shlens, Jonathon and Szegedy, Christian},
journal={arXiv preprint arXiv:1412.6572},
year={2014}
}
@article{kolter2017provable,
title={Provable defenses against adversarial examples via the convex outer adversarial polytope},
author={Kolter, J Zico and Wong, Eric},
journal={arXiv preprint arXiv:1711.00851},
year={2017}
}
@article{roth2004kidney,
title={Kidney exchange},
author={Roth, Alvin E and S{\"o}nmez, Tayfun and {\"U}nver, M Utku},
journal={The Quarterly Journal of Economics},
volume={119},
number={2},
pages={457--488},
year={2004},
publisher={MIT Press}
}
@inproceedings{abraham2007clearing,
title={Clearing algorithms for barter exchange markets: Enabling nationwide kidney exchanges},
author={Abraham, David J and Blum, Avrim and Sandholm, Tuomas},
booktitle={Proceedings of the 8th ACM conference on Electronic commerce},
pages={295--304},
year={2007},
organization={ACM}
}
@article{mcdermott1998pddl,
title={PDDL-the planning domain definition language},
author={McDermott, Drew and Ghallab, Malik and Howe, Adele and Knoblock, Craig and Ram, Ashwin and Veloso, Manuela and Weld, Daniel and Wilkins, David},
year={1998}
}
@article{asai2017classical,
title={Classical Planning in Deep Latent Space: Bridging the Subsymbolic-Symbolic Boundary},
author={Asai, Masataro and Fukunaga, Alex},
journal={arXiv preprint arXiv:1705.00154},
year={2017}
}
@article{zou2005regularization,
title={Regularization and variable selection via the elastic net},
author={Zou, Hui and Hastie, Trevor},
journal={Journal of the Royal Statistical Society: Series B (Statistical Methodology)},
volume={67},
number={2},
pages={301--320},
year={2005},
publisher={Wiley Online Library}
}
@inproceedings{pineda2014planning,
title={Planning Under Uncertainty Using Reduced Models: Revisiting Determinization.},
author={Pineda, Luis Enrique and Zilberstein, Shlomo},
booktitle={ICAPS},
year={2014}
}
@inproceedings{yoon2007ff,
title={FF-Replan: A Baseline for Probabilistic Planning.},
author={Yoon, Sung Wook and Fern, Alan and Givan, Robert},
booktitle={ICAPS},
volume={7},
pages={352--359},
year={2007}
}
@inproceedings{keren2015goal,
title={Goal Recognition Design for Non-Optimal Agents.},
author={Keren, Sarah and Gal, Avigdor and Karpas, Erez},
booktitle={AAAI},
pages={3298--3304},
year={2015}
}
@article{eisenberg2009settlement,
title={What is the settlement rate and why should we care?},
author={Eisenberg, Theodore and Lanvers, Charlotte},
journal={Journal of Empirical Legal Studies},
volume={6},
number={1},
pages={111--146},
year={2009},
publisher={Wiley Online Library}
}
@inproceedings{mell2016iago,
title={IAGO: interactive arbitration guide online},
author={Mell, Johnathan and Gratch, Jonathan},
booktitle={Proceedings of the 2016 International Conference on Autonomous Agents \& Multiagent Systems},
pages={1510--1512},
year={2016},
organization={International Foundation for Autonomous Agents and Multiagent Systems}
}
@article{sharon2012meta,
title={Meta-Agent Conflict-Based Search For Optimal Multi-Agent Path Finding.},
author={Sharon, Guni and Stern, Roni and Felner, Ariel and Sturtevant, Nathan R},
journal={SoCS},
volume={1},
pages={39--40},
year={2012}
}
@inproceedings{park2017telling,
title={Telling stories to robots: The effect of backchanneling on a child's storytelling},
author={Park, Hae Won and Gelsomini, Mirko and Lee, Jin Joo and Breazeal, Cynthia},
booktitle={Proceedings of the 2017 ACM/IEEE international conference on human-robot interaction},
pages={100--108},
year={2017},
organization={ACM}
}
@inproceedings{westlund2018measuring,
title={Measuring young children's long-term relationships with social robots},
author={Westlund, Jacqueline M Kory and Park, Hae Won and Williams, Randi and Breazeal, Cynthia},
booktitle={Proceedings of the 17th ACM Conference on Interaction Design and Children},
pages={207--218},
year={2018},
organization={ACM}
}
@article{juba2017precision,
title={Precision-Recall versus Accuracy and the Role of Large Data Sets},
author={Juba, Brendan and Le, Hai S},
journal={AAAI},
year={2019}
}
@inproceedings{liu2019nearneighbor,
title={Nearneighbor methods in random preference completion},
author={Liu, Ao and Wu, Qiong and Zhenming, L and Xia, Lirong},
booktitle={Proceedings of 33rd AAAI Conference on Artifical Intelligence (AAAI-19)},
year={2019}
}
@article{katz2017nonparametric,
title={Nonparametric Preference Completion},
author={Katz-Samuels, Julian and Scott, Clayton},
journal={arXiv preprint arXiv:1705.08621},
year={2017}
}
@article{kaban2019dimension,
title={Dimension-Free Error Bounds from Random Projections},
author={Kab{\'a}n, Ata},
journal={AAAI},
year={2019}
}
@article{karras2017progressive,
title={Progressive growing of gans for improved quality, stability, and variation},
author={Karras, Tero and Aila, Timo and Laine, Samuli and Lehtinen, Jaakko},
journal={arXiv preprint arXiv:1710.10196},
year={2017}
}
@inproceedings{goodfellow2014generative,
title={Generative adversarial nets},
author={Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua},
booktitle={Advances in neural information processing systems},
pages={2672--2680},
year={2014}
}
@article{zhu2017unpaired,
title={Unpaired image-to-image translation using cycle-consistent adversarial networks},
author={Zhu, Jun-Yan and Park, Taesung and Isola, Phillip and Efros, Alexei A},
journal={arXiv preprint},
year={2017}
}
@inproceedings{wang2018non,
title={Non-local neural networks},
author={Wang, Xiaolong and Girshick, Ross and Gupta, Abhinav and He, Kaiming},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={7794--7803},
year={2018}
}
@article{brock2018large,
title={Large scale gan training for high fidelity natural image synthesis},
author={Brock, Andrew and Donahue, Jeff and Simonyan, Karen},
journal={arXiv preprint arXiv:1809.11096},
year={2018}
}
@article{ganin2018synthesizing,
title={Synthesizing Programs for Images using Reinforced Adversarial Learning},
author={Ganin, Yaroslav and Kulkarni, Tejas and Babuschkin, Igor and Eslami, SM and Vinyals, Oriol},
journal={arXiv preprint arXiv:1804.01118},
year={2018}
}
@article{samuel1959some,
title={Some studies in machine learning using the game of checkers},
author={Samuel, Arthur L},
journal={IBM Journal of research and development},
volume={3},
number={3},
pages={210--229},
year={1959},
publisher={IBM}
}
@article{miyato2018virtual,
title={Virtual adversarial training: a regularization method for supervised and semi-supervised learning},
author={Miyato, Takeru and Maeda, Shin-ichi and Ishii, Shin and Koyama, Masanori},