-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.bib
1611 lines (1422 loc) · 59.1 KB
/
test.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
% @MastersThesis{Roy97MSC,
% 0;95;0c author = "Nicholas Roy",
% title = "Multi-Agent Exploration and Rendezvous",
% school = "McGill University",
% year = "1997",
% address = "Montreal, PQ",
% month = "July",
% }
% @InProceedings{Roy99ICRAa,
% author = "Nicholas Roy and Wolfram Burgard and Dieter Fox and
% Sebastian Thrun",
% title = "Coastal Navigation -- Mobile Robot Navigation with
% Uncertainty in Dynamic Environments",
% booktitle = "Proc. of the IEEE International Conference on Robotics
% and Automation (ICRA)",
% year = "1999",
% address = "Detroit, MI",
% month = "May",
% }
% @InProceedings{Roy99NIPS,
% author = "Nicholas Roy and Sebastian Thrun",
% title = "Coastal Navigation with Mobile Robots",
% booktitle = "Advances in Neural Processing Systems 12",
% volume = "12",
% year = "1999",
% pages = "1043-1049"
% }
% @TechReport{Roy00Proposal,
% author = "Nicholas Roy",
% title = "Finding Approximate POMDP solutions Through Belief State Compression",
% institution = "Carnegie Mellon University",
% year = "2000",
% }
% @Article{Roy00AR,
% author = "Nicholas Roy and Gregory Dudek",
% title = "Collaborative Exploration and Rendezvous: Algorithms,
% Performance Bounds and Observations",
% journal = "Autonomous Robots",
% year = "2001",
% volume = "11",
% number = "2",
% month = "Sept.",
% pages = "117-136"
% }
% @InProceedings{Roy00ACL,
% author = "Nicholas Roy and Joelle Pineau and Sebastian Thrun",
% title = "Spoken Dialog Management for Robots",
% booktitle = "The Proceedings of the Association for Computational Linguistics",
% year = "2000",
% }
% @InProceedings{Roy99ICRAb,
% author = "Nicholas Roy and Sebastian Thrun",
% title = "Online Self-Calibration for Mobile Robots",
% booktitle = "Proc. of the IEEE/RSJ International Conference on Robotics
% and Automation (ICRA)",
% year = "1999",
% address = "Detroit, MI",
% month = "May",
% }
% @InProceedings{Thrun99ICRA,
% author = "Sebastian Thrun and Maren Bennewitz and Wolfram Burgard and
% Frank Dellaert and Dieter Fox and Dirk Ha\"hnel and Chuck
% Rosenberg and Nicholas Roy and Jamieson Schulte and Dirk Schulz",
% title = "{MINERVA}: A Second-Generation Museum Tour-Guide Robot",
% booktitle = "Proc. of the IEEE International Conference on Robotics
% and Automation (ICRA)",
% year = "1999",
% address = "Detroit, MI",
% month = "May",
% }
% @InProceedings{Roy96ICRA,
% author = "Nicholas Roy and Gregory Dudek and Paul Freedman",
% title = "Surface Sensing and Classification for Efficient Mobile Robot Navigation",
% OPTpages = "",
% booktitle = "Proc. of the IEEE International Conference on Robotics
% and Automation (ICRA)",
% year = "1996",
% address = "Minneapolis, MN",
% month = "May",
% }
% @InProceedings{Roy00WIRE,
% author = "Nicholas Roy and Gregory Baltus and Dieter Fox and Francine
% Gemperle and Jennifer Goetz and Tad Hirsch and Dimitris
% Margaritis and Michael Montemerlo and Joelle Pineau and
% Jamieson Schulte and Sebastian Thrun",
% title = "Towards Personal Service Robots for the Elderly",
% booktitle = "Proceedings of the Workshop on Interactive Robots and
% Entertainment (WIRE 2000)",
% year = "2000",
% address = "Pittsburgh, PA",
% month = "May",
% }
% @InProceedings{Thrun99FSR,
% author = "Sebastian Thrun and Maren Bennewitz and Wolfram Burgard and
% A. B. Cremers and Frank Dellaert and Dieter Fox and Dirk
% Ha\"hnel and Gerhard Lakemeyer and Chuck Rosenberg and
% Nicholas Roy and Jamieson Schulte and Dirk Schulz",
% title = "Experiences with two deployed interactive tour-guide robots",
% booktitle = "Proceedings of the International Conference on Field and
% Service Robotics (FSR'99)",
% year = "1999",
% address = "Pittsburgh, PA",
% month = "August",
% }
% @InProceedings{Roy98AAAIf,
% author = "Nicholas Roy and Wolfram Burgard and Dieter Fox and
% Sebastian Thrun",
% title = "Coastal Navigation -- Robot Motion with Uncertainty",
% booktitle = "Proceedings of the AAAI Fall Symposium: Planning with POMDPs",
% year = "1998",
% address = "Orlando, Florida",
% month = "October",
% }
% @InProceedings{Thrun98AAAIs,
% author = "Sebastian Thrun and Nicholas Roy",
% title = "Integrating Learning for Robust Development",
% booktitle = "Proceedings of the AAAI Spring Symposium: Integrating
% Robotic Research",
% year = "1998",
% address = "Palo Alto, California",
% month = "March",
% }
% @InProceedings{Dudek97AAAIw,
% author = "Gregory Dudek and Nicholas Roy",
% title = "Multi-Robot Rendezvous in Unknown Environments, or, What to
% do When You're Lost at the Zoo",
% booktitle = "Proceedings of the AAAI National Conference Workshop on
% Online Search",
% year = "1997",
% address = "Providence, Rhode Island",
% month = "July",
% }
% @InProceedings{Roy97EWLR,
% author = "Nicholas Roy and Gregory Dudek",
% title = "Learning to Rendezvous during Multi-agent Exploration",
% booktitle = "Proceedings of the European Workshop on Learning Robots (EWLR 6)",
% year = "1997",
% address = "Brighton, UK",
% month = "August",
% }
% @InProceedings{Bolduc97AAAI,
% author = "Marc Bolduc and Eric Bourque and Gregory Dudek and Nicholas
% Roy and Robert Sim",
% title = "Autonomous Exploration: An Integrated Systems Approach",
% booktitle = "Proceedings of the AAAI National Conference on Artificial Intelligence",
% year = "1997",
% address = "Providence, Rhode Island",
% month = "July",
% }
% @InProceedings{Roy96AAAI,
% author = "Nicholas Roy and Gregory Dudek and Michael Daum",
% title = "Mobile Robot Navigation and Control: A Case Study",
% booktitle = "Proceedings of the AAAI National Conference on Artificial Intelligence",
% year = "1996",
% address = "Portland, Oregon",
% month = "July",
% }
% @Misc{Roy96IRIS,
% author = "Nicholas Roy and Gregory Dudek",
% title = "Multi-agent Rendez-vous",
% year = "1996",
% month = "June",
% note = "IRIS/PRECARN Conference, Montreal",
% }
% @Article{Thrun00IJRR,
% author = "S. Thrun and M. Beetz and M. Bennewitz and W. Burgard and
% A.B. Cremers and F. Dellaert and D. Fox and D. Haehnel and
% C. Rosenberg and N. Roy and J. Schulte and D. Schulz",
% title = "Probabilistic Algorithms and the Interactive Museum
% Tour-Guide Robot Minerva",
% journal = "International Journal of Robotics Research",
% year = "2000",
% volume = "19",
% number = "11",
% month = "November",
% pages = "972-999",
% }
% @InProceedings{Roy01ICML,
% author = "Nicholas Roy and Andrew McCallum",
% title = "Toward Optimal Active Learning through {M}onte {C}arlo
% Estimation of Error Reduction",
% booktitle = "Proceedings of the International Conference on Machine
% Learning (ICML 2001)",
% year = "2001",
% address = "Williamstown, MA",
% }
% @InProceedings{Montemerlo02AAAI,
% author = {Michael Montemerlo and Joelle Pineau and Nicholas Roy and
% Sebastian Thrun and Vandana Verma},
% title = {Experiences with a Mobile Robotic Guide for the Elderly},
% booktitle = {Proceedings of the National Conference of Artificial
% Intelligence (AAAI 02)},
% year = {2002},
% address = {Edmonton,AB},
% month = {July},
% pages = {587-592}
% }
% @InProceedings{Roy02IROS,
% author = {Nicholas Roy and Sebastian Thrun},
% title = {Motion Planning through Policy Search},
% booktitle = {Proceedings of the IEEE/RSJ International Conference on
% Intelligent Robots and Systems (IROS 2002)},
% year = {2002},
% address = {Lausanne, Switzerland},
% month = {September},
% pages = {2419-2424},
% }
% @InProceedings{Matthews02A,
% author = {J. Matthews and S. Engberg and M. Montemerlo and J. Pineau
% and N. Roy and J. Rogers and S. Thrun and S. Handler and
% T. Starrett and D. Ting and R. Travis},
% title = {The Nursebot project: Results of preliminary field studies
% during development of a personal robotic assistant for older
% adults},
% booktitle = {Proceedings of the Greater Pittsburgh 14th Annual Nursing
% Research Conference},
% year = {2002},
% address = {Pittsburgh, PA},
% }
% @InProceedings{Matthews02B,
% author = {Judy Matthews and Sandra Engberg and Michael Montemerlo and
% Joelle Pineau and Nicholas Roy and Joan Rogers and
% Sebastian Thrun},
% title = {Robotic assistance during ambulation by older adults},
% booktitle = {Proceedings of the Annual Conference of the American Medical
% Informatics Association},
% year = {2002},
% address = {San Antonio, TX},
% }
% @InProceedings{PineauRASW02,
% author = {Joelle Pineau and Nicholas Roy and Michael Montemerlo and
% Sebastian Thrun and Martha Pollac},
% title = {Probabilistic control of human robot interaction:
% Experiments with a robotic assistant for nursing home},
% booktitle = {Proceedings of the IARP-IEEE/RAS Workshop on Robot
% Dependability},
% year = {2002},
% editor = {G. Giralt and R. Chatila},
% }
% @InProceedings{Pollack02,
% author = {M. E. Pollack and L. Brown and D. Colbry and C. Orosz and
% B. Peintner and S. Ramakrishnan and S. Engberg and
% J.T. Matthews and J. Dunbar-Jacobs and C. McCarthy and
% S. Thrun and M. Montemerlo and J. Pineau and and N. Roy},
% title = {Pearl: A mobile robotic assistant to the elderly},
% booktitle = {AAAI Workshop 2002 notes},
% year = {2002},
% address = {Edmonton, AB},
% }
% @InProceedings{Thrun99KIW,
% author = {Sebastian Thrun and Maren Bennewitz and Wolfram Burgard
% and A. Cremers and Frank Dellaert and Dieter Fox and
% Dirk Ha\"hnel and Chuck Rosenberg and Nicholas Roy and
% Jamie Schulte and Dirk Schulz},
% title = {MINERVA: A tour-guide robot that learns},
% booktitle = {Proc. of the 23nd German Conference on
% Artificial Intelligence (KI '99)},
% year = {1999},
% address = {Germany},
% publisher = {Springer Verlag},
% }
% @InProceedings{Roy02NIPS,
% author = {Nicholas Roy and Geoffrey Gordon},
% title = {Exponential Family {PCA} for Belief Compression in {POMDP}s},
% booktitle = {Advances in Neural Information Processing 15 (NIPS)},
% year = {2002},
% pages = {1043-1049},
% editor = {Suzanna Becker and Sebastian Thrun, and Klaus Obermayer},
% address = {Vancouver, Canada},
% month = {December},
% }
% @InProceedings{Roy03IROS,
% author = {Michael Montemerlo and Nicholas Roy and Sebastian Thrun},
% title = {Perspectives on Standardization in Mobile Robot Programming:
% The Carnegie Mellon Navigation (CARMEN) Toolkit},
% booktitle = {Proceedings of the IEEE/RSJ International Conference on
% Intelligent Robots and Systems (IROS 2003)},
% pages = {2436-2441},
% year = {2003},
% volume = {3},
% address = {Las Vegas, NV},
% month = {October},
% }
% @InProceedings{Roy03FSR,
% author = {Planning under Uncertainty for Reliable Health Care Robotics},
% title = {Nicholas Roy and Geoffrey Gordon and Sebastian Thrun},
% booktitle = {Proceedings of the International Conference on Field and
% Service Robotics (FSR 2003)},
% year = {2003},
% address = {Lake Yamanaka, Japan},
% month = {July},
% }
% @Article{Pineau03RAS,
% author = {Joelle Pineau and Michael Montemerlo and Martha Pollack and
% Nicholas Roy and Sebastian Thrun},
% title = {Towards robotic assistants in nursing homes: Challenges and results},
% journal = {Robotics and Autonomous Systems},
% year = {2003},
% volume = {42},
% number = {3-4},
% pages = {271-281},
% month = {March},
% }
% @InProceedings{Sim04ICRA,
% author = {Robert Sim and Gregory Dudek and Nicholas Roy},
% title = {Online Control Policy Optimization for Minimizing Map
% Uncertainty during Exploration},
% booktitle = {Proceedings of the IEEE International Conference on
% Robotics and Automation (ICRA 2004)},
% year = {2004},
% address = {New Orleans, LA},
% month = {April},
% pages = {1758 - 1763},
% }
% @Article{Roy05JAIR,
% author = {Nicholas Roy and Geoffrey Gordon and Sebastian Thrun},
% title = {Finding Approximate POMDP solutions Through
% Belief Compression},
% journal = {Journal of Artificial Intelligence Research},
% year = {2005},
% volume = {23},
% pages = {1-40},
% }
% @InProceedings{Sim05ICRA,
% author = {Robert Sim and Nicholas Roy},
% title = {Global A-Optimal Robot Exploration in SLAM},
% booktitle = {Proceedings of the IEEE International Conference on Robotics
% and Automation (ICRA)},
% year = {2005},
% address = {Barcelona, Spain},
% }
% @InProceedings{Brunskill05ICRA,
% author = {Emma Brunskill and Nicholas Roy},
% title = {SLAM using Incremental Probabilistic PCA and
% Dimensionality Reduction},
% booktitle = {Proceedings of the IEEE International Conference on Robotics
% and Automation (ICRA)},
% year = {2005},
% address = {Barcelona, Spain},
% }
% @InProceedings{Jourdan05ICU,
% author = {Damien B. Jourdan and John J. Deyst Jr. and Moe Z. Win and
% Nicholas Roy},
% title = {Monte Carlo Localization in Dense Multipath Environments
% Using UWB Ranging},
% booktitle = {Proceedings of the IEEE International Conference on
% Ultra-Wideband (ICU 2005)},
% year = {2005},
% address = {Zurich, Switzerland},
% month = {September},
% }
% @InProceedings{Roy06ACC,
% author = {Nicholas Roy and Caleb Earnest},
% title = {Dynamic Action Spaces for Information Gain Maximization
% in Search and Exploration},
% booktitle = {Proceedings of the American Control Conference (ACC 2006)},
% year = {2006},
% address = {Minneapolis, MN},
% OPTmonth = {June},
% }
% @InProceedings{Kollar06ICRA,
% author = {Thomas Kollar and Nicholas Roy},
% title = {Using Reinforcement Learning to Improve
% Exploration Trajectories for Error Minimization},
% booktitle = {Proceedings of the IEEE International Conference on
% Robotics and Automation (ICRA 2006)},
% pages = {3338-3343},
% year = {2006},
% address = {Orlando, FL},
% month = {May},
% }
% @InProceedings{Missiuro06ICRA,
% author = {Patrycja Missiuro and Nicholas Roy},
% title = {Adapting Probabilistic Roadmaps to Handle Uncertain Maps},
% booktitle = {Proceedings of the IEEE International Conference on
% Robotics and Automation (ICRA 2006)},
% pages = {1261-1267},
% year = {2006},
% address = {Orlando, FL},
% month = {May},
% }
% @InProceedings{Jourdan06PLANS,
% author = {Damien B. Jourdan and Nicholas Roy},
% title = {Optimal Sensor Placement for Agent Localization},
% booktitle = {Proceedings of the IEEE/ION Position Location and Navigation
% Symposium (PLANS 2006)},
% year = {2006},
% address = {San Diego, CA},
% month = {April},
% }
% @InProceedings{Doshi07HRI,
% author = {Finale Doshi and Nicholas Roy},
% title = {Efficient Model Learning for Dialog Management},
% booktitle = {Proceedings of Human-Robot Interaction (HRI 2007)},
% year = {2007},
% address = {Washington, DC},
% month = {March},
% }
% @InProceedings{Roy07CDIO,
% author = {Nicholas Roy and John Leonard and Una-May O'Reilly and Daniela Rus
% and Seth Teller},
% title = {The Experience of Teaching Software Development in a
% Robotics Project Course},
% booktitle = {Proceedings of the Third International CDIO Conference and
% Collaborators' Meeting},
% year = {2007},
% address = {Cambridge, MA},
% month = {June},
% }
% @InProceedings{Prentice07ISRR,
% author = {Sam Prentice and Nicholas Roy},
% title = {The Belief Roadmap: Efficient Planning in Linear POMDPs by
% Factoring the Covariance},
% booktitle = {Proceedings of the 13th International Symposium of Robotics
% Research (ISRR)},
% year = {2007},
% address = {Hiroshima, Japan},
% month = {November},
% }
% @InProceedings{Stachniss07IROS,
% author = {Cyrill Stachniss and Giorgio Grisetti and Wolfram Burgard and
% Nicholas Roy},
% title = {Analyzing Gaussian Proposal Distributions for Mapping with
% Rao-Blackwellized Particle Filters},
% booktitle = {Proceedings of the IEEE/RSJ International Conference on
% Intelligent Robots and Systems (IROS)},
% year = {2007},
% address = {San Diego},
% month = {October},
% }
% @InProceedings{Brunskill07IROS,
% author = {Emma Brunskill and Thomas Kollar and Nicholas Roy},
% title = {Topological Mapping Using Spectral Clustering and Classification},
% booktitle = {Proceedings of the IEEE/RSJ International Conference on
% Intelligent Robots and Systems (IROS)},
% year = {2007},
% address = {San Diego},
% month = {October},
% }
% @InProceedings{Doshi07IROS,
% author = {Finale Doshi and Emma Brunskill and Alec Shkolnik and Thomas Kollar and
% Khashayar Rohanimanesh and Russ Tedrake and Nicholas Roy},
% title = {Collision Detection in Legged Locomotion using Supervised Learning},
% booktitle = {Proceedings of the IEEE/RSJ International Conference on
% Intelligent Robots and Systems (IROS)},
% year = {2007},
% address = {San Diego},
% month = {October},
% }
% @InProceedings{Doshi08ISAIM,
% author = {Finale Doshi and Joelle Pineau and Nicholas Roy},
% title = {Reinforcement Learning with Limited Reinforcement: Using
% Bayes Risk for Active Learning in POMDPs},
% booktitle = {Proceedings of the Tenth International Symposium on Artificial
% Intelligence and Mathematics (ISAIM)},
% year = {2008},
% address = {Fort Lauderdale, FL},
% month = {January},
% }
% @InProceedings{Brunskill08ISAIM,
% author = {Emma Brunskill and Leslie Kaelbling and Tomas Lozano-Perez and Nicholas
% Roy},
% title = {Continuous-State POMDPs with Hybrid Dynamics},
% booktitle = {Proceedings of the Tenth International Symposium on Artificial
% Intelligence and Mathematics (ISAIM)},
% year = {2008},
% address = {Fort Lauderdale, FL},
% month = {January},
% }
% @InProceedings{Doshi08AAMAS,
% author = {Finale Doshi and Nicholas Roy},
% title = {The Permutable POMDP: Fast Solutions to POMDPs for
% Preference Elicitation},
% booktitle = {Proceedings of the Seventh International Conference on
% Autonomous Agents and Multiagent Systems (AAMAS 2008)},
% year = {2008},
% address = {Estoril, Portugal},
% month = {May},
% }
% @InProceedings{He08ICRA,
% author = {Ruijie He and Sam Prentice and Nicholas Roy},
% title = {Planning in Information Space for a Quadrotor Helicopter in
% a GPS-denied Environments},
% booktitle = {Proceedings of the IEEE International Conference on Robotics
% and Automation (ICRA 2008)},
% pages = {1814-1820},
% year = {2008},
% address = {Los Angeles, CA},
% }
% @InProceedings{Doshi08ICML,
% author = {Finale Doshi and Joelle Pineau and Nicholas Roy},
% title = {Reinforcement Learning with Limited Reinforcement: Using
% Bayes Risk for Active Learning in POMDPs},
% booktitle = {Proceedings of the 25th International Conference on Machine
% Learning (ICML 2008)},
% year = {2008},
% address = {Helsinki, Finland},
% }
% @InProceedings{Brunskill08UAI,
% author = {Emma Brunskill and Bethany R. Leffler and Lihong Li and Michael L. Littman and
% Nicholas Roy},
% title = {CORL: A Continuous-state Offset-dynamics Reinforcement Learner},
% booktitle = {Proceedings of the 24th Conference on Uncertainty in Artificial
% Intelligence (UAI 2008)},
% year = {2008},
% address = {Helsinki, Finland},
% }
% @InProceedings{Glover08RSS,
% author = {Jared Glover and Daniela Rus and Nicholas Roy},
% title = {Manipulation using Probabilistic Models of Object Geometry},
% booktitle = {Proceedings of Robotics: Science and Systems (RSS 2008)},
% year = {2008},
% address = {Zurich, Switzerland},
% }
% @Article{Kollar08IJRR,
% author = {Thomas Kollar and Nicholas Roy},
% title = {Trajectory Optimization using Reinforcement Learning for Map Exploration},
% journal = {International Journal of Robotics Research},
% year = {2008},
% volume = {27},
% number = {2},
% pages = {175-197},
% month = {February},
% }
% @Article{Jourdan08TOSN,
% author = {Damien Jourdan and Nicholas Roy.},
% title = {Optimal Sensor Placement for Agent Localization},
% journal = {ACM Transactions on Sensor Networks},
% year = {2008},
% volume = {4},
% number = {3},
% month = {August},
% }
% @InProceedings{Kollar08AAAI,
% author = {Thomas Kollar and Nicholas Roy.},
% title = {Efficient optimization of information-theoretic
% exploration in SLAM},
% booktitle = {Proceedings of the National Conference of Artificial
% Intelligence (AAAI 08)},
% year = {2008},
% month = {July},
% }
% @Article{Doshi08ConnSci,
% author = {F. Doshi and N. Roy},
% title = {Spoken Language Interaction with Model Uncertainty: An Adaptive Human-Robot Interaction System},
% journal = {Connection Science},
% year = {2008},
% volume = {20},
% number = {4},
% pages = {299-319},
% }
% @Article{Bachrach09IJMAV,
% author = {A. Bachrach, R. He, N. Roy},
% title = {Autonomous Flight in Unknown Indoor Environments},
% journal = {International Journal of Micro Air Vehicles},
% year = {2009},
% volume = {1},
% number = {4},
% pages = {217-228},
% month = {December},
% }
% @Article{Langelaan09Science,
% author = {J. Langelaan and N. Roy},
% title = {Enabling New Missions for Robotic Aircraft},
% journal = {Science},
% year = {2009},
% volume = {326},
% number = {5690},
% pages = {1642-1644},
% month = {December},
% }
% @Article{Prentice09IJRR,
% author = {S. Prentice and N. Roy},
% title = {The Belief Roadmap: Efficient Planning in Belief Space by Factoring the Covariance},
% journal = {International Journal of Robotics Research},
% year = {2009},
% volume = {8},
% number = {11-12},
% pages = {1448-1465},
% month = {December},
% }
% @Article{Plagemann09JFR,
% author = {C. Plagemann, S. Mischke, S. Prentice, K. Kersting, N. Roy and W. Burgard},
% title = {A Bayesian Regression approach to Terrain Mapping and an Application to Legged Robot Locomotion},
% journal = {Journal of Field Robotics},
% year = {2009},
% volume = {26},
% number = {10},
% pages = {757-862},
% month = {October},
% }
% @Article{Brunskill09JMLR,
% author = {E. Brunskill, B. Leffler, L. Li, M. Littman, N. Roy},
% title = {Provably Efficient Learning with Typed Parametric Models},
% journal = {Journal of Machine Learning Research},
% year = {2009},
% volume = {10},
% number = {Aug},
% pages = {1955-1988},
% }
% @Article{Glover09IJRR,
% author = {J. Glover, D. Rus and N. Roy},
% title = {Probabilistic Models of Object Geometry with Application to Grasping},
% journal = {International Journal of Robotics Research},
% year = {2009},
% volume = {28},
% number = {8},
% pages = {999-1019},
% month = {August},
% }
% @InProceedings{Kollar09ICRA,
% author = {Thomas Kollar and Nicholas Roy},
% title = {Utilizing object-object and object-scene context when planning to find things},
% booktitle = {Proceedings of the IEEE International
% Conference on Robotics and Automation (ICRA)},
% year = {2009},
% address = {Kobe, Japan},
% }
% @InProceedings{Wei09ICRA,
% author = {Yuan Wei and Emma Brunskill and Thomas Kollar and Nicholas Roy},
% title = {Where to Go: Interpreting Natural Directions Using Global Inference},
% booktitle = {Proceedings of the IEEE International
% Conference on Robotics and Automation (ICRA)},
% year = {2009},
% address = {Kobe, Japan},
% }
% @InProceedings{Huynh09ICRA,
% author = {Vu Anh Huynh and Nicholas Roy},
% title = {icLQG: Combining Local and Global Optimization
% for Control in Information Space},
% booktitle = {Proceedings of the IEEE International
% Conference on Robotics and Automation (ICRA)},
% year = {2009},
% address = {Kobe, Japan},
% }
% @InProceedings{Kollar10HRI,
% author = {T. Kollar and S. Tellex and D. Roy and N. Roy},
% title = {Toward Understanding Natural Language Directions},
% booktitle = {Proceedings of the 5th ACM/IEEE International Conference on Human-Robot Interaction},
% pages = {259-266},
% year = {2010},
% address = {Osaka, Japan},
% }
% @InProceedings{He10AAAI,
% author = {R. He and E. Brunskill and N. Roy},
% title = {PUMA: Planning under Uncertainty with Macro-Actions},
% booktitle = {Proceedings of the Twenty-Fourth Conference on Artificial Intelligence (AAAI)},
% year = {2010},
% address = {Atlanta, GA},
% }
% @InProceedings{Joseph10AAAI,
% author = {J. Joseph and F. Doshi-Velez and N. Roy},
% title = {A Bayesian Nonparametric Approach to Modeling Mobility},
% booktitle = {Proceedings of the Twenty-Fourth Conference on Artificial Intelligence (AAAI)},
% year = {2010},
% address = {Atlanta, GA},
% }
% @InProceedings{Espinace10ICRA,
% author = {P. Espinace and T. Kollar and A. Soto and N. Roy},
% title = {Indoor Scene Recognition Through Object Detection},
% booktitle = {Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)},
% year = {2010},
% address = {Anchorage, AK},
% }
% @InProceedings{Teller10ICRA,
% author = {S. Teller and A. Correa and R. Davis and L. Fletcher and
% E. Frazzoli and J. Glass and J.P. How and J. H. Jeon and S. Karaman and B. Luders and N. Roy and T. Sainath and M.R. Walter},
% title = {A Voice-Commandable Robotic Forklift Working Alongside Humans in Minimally-Prepared Outdoor Environments},
% booktitle = {Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)},
% year = {2010},
% address = {Anchorage, AK},
% }
% @InProceedings{He10ICRA,
% author = {R. He and A. Bachrach and N. Roy},
% title = {Efficient Planning under Uncertainty for a Target-Tracking Micro-Aerial Vehicle},
% booktitle = {Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)},
% year = {2010},
% address = {Anchorage, AK},
% }
% @InProceedings{Kim10ICRA,
% author={B. Kim and M. Kaess and L. Fletcher and J. Leonard and A. Bachrach
% and N. Roy and S. Teller},
% booktitle={Proceedings of the IEEE International Conference
% on Robotics and Automation (ICRA)},
% title={Multiple relative pose graphs for robust
% cooperative mapping},
% address="Anchorage, AK",
% year={2010},
% month={May},
% pages={3185 -3192},
% }
% @InProceedings{Kollar10ISER,
% author={T. Kollar and S. Tellex and D. Roy and N. Roy},
% booktitle={Proceedings of the International Symposium on Experimental Robotics (ISER)},
% title={Grounding Verbs of Motion in Natural Language Commands to Robots},
% address="New Delhi, India",
% year={2010},
% month={December},
% }
% @inproceedings{Huang10IROS,
% author = {Albert S. Huang and Stefanie Tellex and Abraham Bachrach and Thomas Kollar and Deb Roy and Nicholas Roy},
% title = {Natural Language Command of an Autonomous Micro-Air Vehicle},
% booktitle = {{International Conference on Intelligent Robots and Systems (IROS)}},
% month = {Oct.},
% year = {2010},
% address = {Taipei, Taiwan}
% }
% @Article{Reimer11TRF,
% author = {B. Reimer and B. Mehler and J. Coughlin and N. Roy and J. Dusek},
% title = {The impact of a naturalistic hands-free cellular phone task
% on heart rate and simulated driving performance in
% two age groups},
% journal = {Transportation Research Part F: Traffic Psychology and
% Behaviour},
% volume = {14},
% number = {1},
% pages = {13-25},
% month = {January},
% year = {2011}
% }
% @InProceedings{Doshi10NIPS,
% author={F. Doshi and D. Wingate and J. Tenenbaum and N. Roy},
% booktitle={Neural Information Processing Systems (NIPS)},
% title={Nonparametric Bayesian Policy Priors for Reinforcement Learning},
% address="Vancouver, Canada",
% year={2010},
% month={December},
% }
% @InProceedings{Tellex10ICMI,
% author={Stefanie Tellex, Thomas Kollar, George Shaw, Nicholas Roy and Deb Roy},
% year=2010,
% title={Grounding Spatial Language for Video Search},
% booktitle={Proceedings of the Eleventh International Conference on Multimodal Interfaces (ICMI)}}
% @InProceedings{Achtelik09SPIE,
% author = {M. Achtelik and A. Bachrach and R. He and S. Prentice and
% N. Roy},
% title = {Stereo Vision and Laser Odometry for Autonomous
% Helicopters in GPS-denied Indoor Environments},
% booktitle = {Proceedings of the SPIE Unmanned Systems Technology XI},
% year = {2009},
% volume = {7332},
% address = {Orlando, F},
% }
% @Article{Reimer10TRF,
% author = {B. Reimer, B. Mehler, J. Coughlin, N. Roy and J. Dusek},
% title = {The impact of a naturalistic hands-free cellular phone task on heart rate and simulated driving performance in two age groups},
% journal = {Transportation Research Part F: Traffic Psychology and Behaviour},
% year = {To appear},
% }
% @Article{McGrew10JGCD,
% author = {J. McGrew, J. How, L. Bush, B. Williams and N. Roy},
% title = {Air Combat Strategy Using Approximate Dynamic Programming},
% journal = {Journal of Guidance, Control and Dynamics},
% year = {2010},
% volume = {33},
% number = {5},
% pages = {1641-1654},
% month = {Sept-Oct},
% }
% @Article{He10IJRR,
% author = {R. He and A. Bachrach and M. Achtelik and A. Geramifard and D. Gurdan and S. Prentice and J. Stumpf and N. Roy},
% title = {On the Design and Use of a Micro Air Vehicle to Track and Avoid Adversaries},
% journal = {International Journal of Robotics Research},
% year = {2010},
% volume = {29},
% number = {5},
% pages = {529-546},
% month = {April},
% }
% @article{Brunskill10AMAI,
% author = {Emma Brunskill and Leslie Kaelbling and Tom\'as Lozano-P\'erez and Nicholas Roy},
% title = {Planning in partially-observable switching-mode continuous domains},
% journal = {Annals of Mathematics and Artificial Intelligence},
% publisher = {Springer Netherlands},
% pages = {1-32},
% year = {2010}
% }
% @Article{He11JAIR,
% author = {R. He and E. Brunskill and N. Roy},
% title = {Efficient Planning under Uncertainty with Macro-actions},
% journal = {Journal of Artificial Intelligence Research},
% year = {2011},
% volume = {40},
% pages = {523-570},
% month = {February}
% }
% @ARTICLE{Boussemart11JACIC,
% AUTHOR = "Y. Boussemart and M. L. Cummings and J. Las Fargeas and N. Roy",
% TITLE ={Supervised vs. Unsupervised Learning for Operator State Modeling
% in Unmanned Vehicle Settings},
% JOURNAL = "Journal of Aerospace Computing, Information, and Communication (1542-9423)",
% YEAR = {2011},
% VOLUME = {8},
% NUMBER = {3},
% PAGES = {71-85},
% }
% @InProceedings{Bry11ICRA,
% author = {A. Bry and N. Roy},
% title = {Rapidly-exploring Random Belief Trees for Motion
% Planning Under Uncertainty},
% booktitle = {Proceedings of the IEEE International Conference on
% Robotics and Automation},
% year = {2011},
% address = {Shanghai, China},
% }
% @InProceedings{Sachi11ICRA,
% author = {S. Hemachandra and T. Kollar and N. Roy and S. Teller},
% title = {Following and Interpreting Narrated Guided Tours},
% booktitle = {Proceedings of the IEEE International Conference on
% Robotics and Automation},
% year = {2011},
% address = {Shanghai, China},
% }
% @InProceedings{Jason11AIAA,
% author = {J. C. Ryan and M. L. Cummings and N. Roy and A. Banerjee and
% A. Schulte},
% title = {Designing an Interactive Local and Global Decision
% Support System for Aircraft Carrier Deck Scheduling},
% booktitle = {Proceedings of AIAA Infotech@Aerospace},
% year = {2011},
% address = {St. Louis, MO},
% }
% @InProceedings{Banerjee11ACC,
% author = {A. G. Banerjee and M. Ono and N. Roy and B. C. Williams},
% title = {Regression-based {LP} Solver for Chance-Constrained
% Finite Horizon Optimal Control with Nonconvex Constraints},
% booktitle = {Proceedings of the American Control Conference},
% year = {2011},
% address = {San Francisco, CA},
% }
% @InProceedings{Velez11ICAPS,
% author = {J. Velez and G. Hemann and A. Huang and I. Posner and N. Roy},
% title = {Planning to Perceive: Exploiting Mobility for Robust Object Detection},
% booktitle = {Proceedings of the International Conference on Automated Planning and Scheduling},
% year = {2011},
% address = {Freiburg, Germany},
% }
% @InProceedings{Velez11IJCAI,
% author = {J. Velez and G. Hemann and A. Huang and I. Posner and N. Roy},
% title = {Active Exploration for Robust Object Detection},
% booktitle = {Proceedings of the Joint Conference on Artificial Intelligence},
% year = {2011},
% address = {Barcelona, Spain},
% }
% @InProceedings{AAAI11Tellex,
% author = {S. Tellex and T. Kollar and S. Dickerson and M.
% R. Walter and A. G. Banerjee and S. Teller and N. Roy},
% title = {Understanding Natural Language Commands for Robotic
% Navigation and Mobile Manipulation},
% booktitle = {Proceedings of the National Conference on Artificial
% Intelligence (AAAI)},
% year = {2011},
% address = {San Francisco, CA},
% }
% @ARTICLE{BachrachJFR11,
% AUTHOR = {A. Bachrach and S. Prentice and R. He and N. Roy},
% TITLE ={RANGE - Robust Autonomous Navigation in GPS-denied Environments},
% JOURNAL = {Journal of Field Robotics},
% YEAR = {2011},
% VOLUME = {28},
% NUMBER = {5},
% PAGES = {644-666},
% MONTH = {September}
% }
% @inproceedings{11icml-iFDD,
% Author = {Alborz Geramifard and Finale Doshi and Josh Redding and Nicholas Roy and Jonathan P. How},
% Booktitle = {Proceedings of the 23rd International Conference on Machine Learning (ICML) [Acceptance 26\%]},
% Title = {incremental Feature Dependency Discovery},
% Year = {2011}
% }
% @inproceedings{Geramifard11ACC,
% author = {A. Geramifard and J. Redding and N. Roy and J. P. How},
% title = {{UAV} Cooperative Control with Stochastic Risk Models},
% booktitle = {Proceedings of the American Control Conference (ACC)},
% year = {2011},
% address = {San Francisco, CA},
% }
% @InProceedings{SGilISRR11,
% author = {Stephanie Gil and Samuel Prentice and Nicholas Roy and Daniela Rus},
% title = {Decentralized Control for Optimizing Communication with Infeasible Regions},
% OPTbooktitle = {Proceedings of the International Symposium of Robotics
% Research (ISRR)},
% year = {2011},
% address = {Flagstaff, AZ},
% }
% @InProceedings{AHuangISRR11,
% author = {Albert S.~Huang and Abraham Bachrach and Peter Henry and
% Michael Krainin and Daniel Maturana and Dieter Fox and
% Nicholas Roy},
% title = {Visual Odometry and Mapping for Autonomous Flight
% Using an RGB-D Camera},
% booktitle = {Proceedings of the International Symposium of Robotics Research (ISRR)},
% year = {2011},
% address = {Flagstaff, AZ},
% }