-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.js
More file actions
1396 lines (1396 loc) · 53.9 KB
/
Copy pathpublications.js
File metadata and controls
1396 lines (1396 loc) · 53.9 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
// Kevin Murphy publications. To add a paper, add an object at the top.
// peer: true = peer-reviewed. Edit freely.
//
// Optional "links": an array of related artefacts (video, code, slides, blog, ...),
// each { "label": "...", "url": "..." }. They render after the venue as small links.
// "links": [ { "label": "video", "url": "https://youtu.be/..." },
// { "label": "code", "url": "https://github.com/..." } ]
window.PUBLICATIONS = [
{
"year": 2026,
"peer": false,
"title": "Model Discovery Agent: LLM-assisted Bayesian experiment design for data-efficient discovery of mechanistic world models",
"authors": "Kevin Murphy",
"venue": "arxiv'26",
"url": "https://arxiv.org/abs/2608.09696",
"links": [
{ "label": "video", "url": "https://youtu.be/k5nzJ9Az5Tk" }
]
},
{
"year": 2026,
"peer": true,
"title": "Agentic Forecasting using Sequential Bayesian Updating of Linguistic Beliefs",
"authors": "Kevin Murphy",
"venue": "ICML'26 forecasting workshop",
"url": "https://arxiv.org/abs/2604.18576"
},
{
"year": 2026,
"peer": true,
"title": "From Generalist to Specialist Representation",
"authors": "Yujia Zheng, Fan Feng, Yuke Li, Shaoan Xie, Kevin Patrick Murphy, Kun Zhang",
"venue": "ICML26",
"url": "https://openreview.net/forum?id=zEg7sA2VBv"
},
{
"year": 2026,
"peer": true,
"title": "Learning Task-Sufficient World Models by Synergizing Agentic Exploration and Structured Modeling",
"authors": "Fan Feng, Yujia Zheng, Minghao Fu, Yongqiang Chen, Guangyi Chen, Kevin Patrick Murphy, Biwei Huang, Kun Zhang",
"venue": "ICML26",
"url": "https://openreview.net/forum?id=PxpGOLlo02"
},
{
"year": 2026,
"peer": true,
"title": "Self-Improving World Models via Asymmetric Forward-Inverse Consistency",
"authors": "Yuejiang Liu, Lingjing Kong, Fan Feng, Weifeng Lu, Jinzhou Tang, XiangCheng Zhang, Kun Zhang, Kevin Murphy, Yilun Du, Chelsea Finn",
"venue": "ICLR'26 Workshop on Recursive Self Improvement",
"url": "https://openreview.net/forum?id=ajcjip0yFR"
},
{
"year": 2026,
"peer": true,
"title": "AutoHarness: improving LLM agents by automatically synthesizing a code harness",
"authors": "Xinghua Lou, Miguel Lazaro-Gredilla, Antoine Dedieu, Carter Wendelken, Wolfgang Lehrach, Kevin P. Murphy",
"venue": "ICLR'26 Workshop on Recursive Self Improvement",
"url": "https://openreview.net/forum?id=g9rEYVNn5T"
},
{
"year": 2026,
"peer": false,
"title": "Joint Learning of Hierarchical Neural Options and Abstract World Model",
"authors": "Wasu Top Piriyakulkij, Wolfgang Lehrach, Kevin Ellis, Kevin Murphy",
"venue": "Arxiv'26.",
"url": "https://arxiv.org/abs/2602.02799"
},
{
"year": 2026,
"peer": true,
"title": "Code World Models for General Game Playing",
"authors": "Wolfgang Lehrach, Daniel Hennes, Miguel Lazaro-Gredilla, Xinghua Lou, Carter Wendelken, Zun Li, Antoine Dedieu, Jordi Grau-Moya, Marc Lanctot, Atil Iscen, John Schultz, Marcus Chiam, Ian Gemp, Piotr Zielinski, Satinder Singh, Kevin P. Murphy",
"venue": "ICLR'26",
"url": "https://arxiv.org/abs/2510.04542"
},
{
"year": 2025,
"peer": false,
"title": "Scalable Generalized Bayesian Online Neural Network Training for Sequential Decision Making",
"authors": "Gerardo Duran-Martin, Leandro Sanchez-Betancourt, Alvaro Cartea, Kevin Murphy",
"venue": "NeurIPS, 2025.",
"url": "https://arxiv.org/abs/2506.11898"
},
{
"year": 2025,
"peer": true,
"title": "Distributional Diffusion Models with Scoring Rules",
"authors": "Valentin De Bortoli, Alexandre Galashov, J. Swaroop Guntupalli, Guangyao Zhou, Kevin Murphy, Arthur Gretton, Arnaud Doucet",
"venue": "ICML'25",
"url": "https://arxiv.org/abs/2502.02483"
},
{
"year": 2025,
"peer": true,
"title": "Towards a Mechanistic Explanation of Diffusion Model Generalization",
"authors": "Matthew Niedoba, Berend Zwartsenberg, Kevin Murphy, Frank Wood",
"venue": "ICML'25",
"url": "https://arxiv.org/abs/2411.19339"
},
{
"year": 2025,
"peer": true,
"title": "Direct Motion Models for Assessing Generated Videos",
"authors": "Kelsey R Allen, Carl Doersch, Guangyao Zhou, Mohammed Suhail, Danny Driess, Ignacio Rocco, Yulia Rubanova, Thomas Kipf, Mehdi S. M. Sajjadi, Kevin Patrick Murphy, Joao Carreira, Sjoerd van Steenkiste",
"venue": "ICML'25",
"url": "https://trajan-paper.github.io/"
},
{
"year": 2025,
"peer": true,
"title": "Dynamax: A Python package for probabilistic state space modeling with JAX",
"authors": "Scott W. Linderman, Peter Chang, Giles Harper-Donnelly, Aleyna Kara, Xinglong Li, Gerardo Duran-Martin, Kevin Murphy",
"venue": "J. Open Source Software.",
"url": "https://joss.theoj.org/papers/10.21105/joss.07069"
},
{
"year": 2025,
"peer": true,
"title": "BONE: a unifying framework for Bayesian online learning in non-stationary environments",
"authors": "Gerardo Duran-Martin, Leandro Sánchez-Betancourt, Alexander Y. Shestopaloff, Kevin Murphy",
"venue": "TMLR'25",
"url": "https://arxiv.org/abs/2411.10153"
},
{
"year": 2025,
"peer": true,
"title": "Diffusion Model Predictive Control",
"authors": "Guangyao Zhou, Sivaramakrishnan Swaminathan, Rajkumar Vasudeva Raju, J. Swaroop Guntupalli, Wolfgang Lehrach, Joseph Ortiz, Antoine Dedieu, Miguel Lázaro-Gredilla, Kevin Murphy",
"venue": "TMLR'25 (and ICLR'25 workshop on \"Generative Models for Robot Learning\")",
"url": "https://arxiv.org/abs/2410.05364"
},
{
"year": 2025,
"peer": true,
"title": "Improving Transformer World Models for Data-Efficient RL",
"authors": "Dedieu A, Ortiz J, Lou X, Wendelken C, Lehrach W, Guntupalli S, Lazaro-Gredilla M, Murphy K",
"venue": "ICML'25 (and ICLR'25 workshop on World Models)",
"url": "https://arxiv.org/abs/2502.01591"
},
{
"year": 2024,
"peer": false,
"title": "Reinforcement learning: an overview",
"authors": "Kevin Murphy",
"venue": "arxiv",
"url": "https://arxiv.org/abs/2412.05265"
},
{
"year": 2024,
"peer": true,
"title": "Towards a Mechanistic Explanation of Diffusion Model Generalization",
"authors": "Matthew Niedoba, Berend Zwartsenberg, Kevin Murphy, Frank Wood",
"venue": "NeurIPS 2024 Workshop on Attributing Model Behavior at Scale",
"url": "https://arxiv.org/abs/2411.19339"
},
{
"year": 2024,
"peer": true,
"title": "DMC-VB: A Benchmark for Representation Learning for Control with Visual Distractors",
"authors": "Joseph Ortiz, Antoine Dedieu, Wolfgang Lehrach, J Swaroop Guntupalli, Carter Wendelken, Ahmad Humayun, Sivaramakrishnan Swaminathan, Guangyao Zhou, Miguel Lazaro-Gredilla, Kevin Patrick Murphy",
"venue": "NeurIPS",
"url": "https://arxiv.org/abs/2409.18330"
},
{
"year": 2024,
"peer": true,
"title": "EM Distillation for One-step Diffusion Models",
"authors": "Sirui Xie, Zhisheng Xiao, Kevin Murphy, Tim Salimans, Ben Poole, Ruiqi Gao",
"venue": "NeurIPS",
"url": "https://arxiv.org/abs/2405.16852"
},
{
"year": 2024,
"peer": true,
"title": "What type of inference is planning?",
"authors": "Miguel Lazaro-Gredilla, Li Yang Ku, Kevin P. Murphy, Dileep George",
"venue": "NeurIPS",
"url": "https://www.arxiv.org/abs/2406.17863"
},
{
"year": 2024,
"peer": true,
"title": "Bayesian Online Natural gradient",
"authors": "Matt Jones, Peter Chang, Kevin Murphy.",
"venue": "NeurIPS",
"url": "https://arxiv.org/abs/2405.19681"
},
{
"year": 2024,
"peer": false,
"title": "Model Predictive Simulation Using Structured Graphical Models and Transformers",
"authors": "Xinghua Lou, Meet Dave, Shrinu Kushagra, Miguel Lazaro-Gredilla, Kevin Murphy",
"venue": "CVPR Workshop on Autonomous Driving",
"url": "https://arxiv.org/abs/2406.19635"
},
{
"year": 2024,
"peer": true,
"title": "Outlier-robust Kalman Filtering through Generalised Bayes",
"authors": "Gerardo Duran-Martin, Matias Altamirano, Alexander Y. Shestopaloff, Leandro Sanchez-Betancourt, Jeremias Knoblauch, Matt Jones, Francois-Xavier Briol, Kevin Murphy",
"venue": "ICML",
"url": "https://arxiv.org/abs/2405.05646"
},
{
"year": 2024,
"peer": true,
"title": "Model-based Policy Optimization under Approximate Bayesian Inference",
"authors": "Chaoqi Wang, Yuxin Chen, Kevin Murphy",
"venue": "AISTATS 2024 (Oral).",
"url": "https://proceedings.mlr.press/v238/wang24g.html"
},
{
"year": 2024,
"peer": true,
"title": "Don't Be Pessimistic Too Early: Look K Steps Ahead!",
"authors": "Chaoqi Wang, Yuxin Chen, Kevin Murphy",
"venue": "AISTATS",
"url": "https://proceedings.mlr.press/v238/wang24h.html"
},
{
"year": 2023,
"peer": true,
"title": "Beyond Invariance: Test-Time Label-Shift Adaptation for Distributions with \"Spurious\" Correlations",
"authors": "Qingyao Sun, Kevin Murphy, Sayna Ebrahimi, Alexander D'Amour",
"venue": "NeurIPS'23.",
"url": "https://arxiv.org/abs/2211.15646"
},
{
"year": 2023,
"peer": true,
"title": "SPAE: Semantic Pyramid AutoEncoder for Multimodal Generation with Frozen LLMs",
"authors": "Lijun Yu, Yong Cheng, Zhiruo Wang, Vivek Kumar, Wolfgang Macherey, Yanping Huang, David A. Ross, Irfan Essa, Yonatan Bisk, Ming-Hsuan Yang, Kevin Murphy, Alexander G. Hauptmann, Lu Jiang",
"venue": "NeurIPS'23.",
"url": "https://arxiv.org/abs/2306.17842"
},
{
"year": 2023,
"peer": true,
"title": "Model-based Policy Optimization under Approximate Bayesian Inference",
"authors": "Chaoqi Wang, Yuxin Chen, Kevin Patrick Murphy",
"venue": "ICML Workshop on Learning, Control, and Dynamical Systems",
"url": "https://openreview.net/forum?id=5sg0Uv5H0X"
},
{
"year": 2023,
"peer": true,
"title": "LoFi: Low-rank Bayesian filtering for online learning of neural networks",
"authors": "Peter Chang, Gerardo Duran-Martin, Alex Shestopaloff, Matt Jones, Kevin Murphy",
"venue": "CoLLAs (Second Conference on Lifelong Learning Agents)",
"url": "https://arxiv.org/abs/2305.19535"
},
{
"year": 2023,
"peer": true,
"title": "Muse: Text-To-Image Generation via Masked Generative Transformers",
"authors": "Huiwen Chang, Han Zhang, Jarred Barber, AJ Maschinot, Jose Lezama, Lu Jiang, Ming-Hsuan Yang, Kevin Murphy, William T. Freeman, Michael Rubinstein, Yuanzhen Li, Dilip Krishnan",
"venue": "ICML",
"url": "https://arxiv.org/abs/2301.00704"
},
{
"year": 2022,
"peer": true,
"title": "On diagonal approximations to the extended Kalman filter for online training of Bayesian neural networks",
"authors": "Peter Chang, Kevin Murphy, Matt Jones.",
"venue": "ACML Workshop on Continual Lifelong Learning.",
"url": "https://openreview.net/forum?id=asgeEt25kk"
},
{
"year": 2022,
"peer": true,
"title": "Uncertainty Disentanglement with Non-stationary Heteroscedastic Gaussian Processes for Active Learning",
"authors": "Zeel B Patel, Nipun Batra, Kevin Murphy",
"venue": "NeurIPS Workshop on Gaussian Processes, Spatiotemporal Modeling, and Decision-making Systems",
"url": "https://arxiv.org/abs/2210.10964"
},
{
"year": 2022,
"peer": true,
"title": "Reliability benchmarks for image segmentation",
"authors": "E. Kelly Buchanan, Michael W Dusenberry, Jie Ren, Kevin Patrick Murphy, Balaji Lakshminarayanan, Dustin Tran",
"venue": "NeurIPS Workshop on Distribution Shift",
"url": "https://openreview.net/forum?id=T6QZmBPlfv6"
},
{
"year": 2022,
"peer": true,
"title": "Language Model Cascades",
"authors": "David Dohan, Aitor Lewkowycz, Jacob Austin, Winnie Xu, Yuhuai Wu, David Bieber, Raphael Gontijo-Lopes, Henryk Michalewski, Rif A. Saurous, Jascha Sohl-Dickstein, Kevin Patrick Murphy, Charles Sutton",
"venue": "ICML'22 Workshop on Beyond Bayes",
"url": "https://arxiv.org/abs/2207.10342"
},
{
"year": 2022,
"peer": true,
"title": "Plex: Towards Reliability using Pretrained Large Model Extensions",
"authors": "Dustin Tran, Andreas Kirsch, Balaji Lakshminarayanan, Huiyi Hu, Du Phan, D. Sculley, Jasper Snoek, Jeremiah Zhe Liu, Jie Ren, Joost van Amersfoort, Kehang Han, E. Kelly Buchanan, Kevin Murphy, Mark Collier, Michael W Dusenberry, Neil Band, Nithum Thain, Rodolphe Jenatton, Tim G. J. Rudner, Yarin Gal, Zachary Nado, Zelda E Mariet, Zi Wang, Zoubin Ghahramani",
"venue": "ICML'22 Workshop on Pre-Training",
"url": "https://arxiv.org/abs/2207.07411"
},
{
"year": 2022,
"peer": true,
"title": "COVID-19 Open-Data: A global-scale spatially granular meta-dataset for coronavirus disease",
"authors": "Oscar Wahltinez, Aurora Cheung, Ruth Alcantara, Donny Cheung, Paula Le, Anthony Erlinger, Ofir Picazo Navarro, Mayank Daswani, Matt Lee, Kevin Murphy, and Michael Brenner",
"venue": "Nature Scientific Data",
"url": "https://www.nature.com/articles/s41597-022-01263-z.epdf"
},
{
"year": 2022,
"peer": true,
"title": "Efficient Online Bayesian Inference for Neural Bandits",
"authors": "Gerardo Duran-Martin, Aleyna Kara, Kevin Murphy",
"venue": "AISTATS 2022.",
"url": "https://arxiv.org/abs/2112.00195"
},
{
"year": 2022,
"peer": false,
"title": "Probabilistic Machine Learning: An Introduction",
"authors": "Kevin Murphy.",
"venue": "MIT Press, 2022.",
"url": "https://probml.github.io/pml-book/book1.html"
},
{
"year": 2022,
"peer": true,
"title": "Machine Learning on Graphs: A Model and Comprehensive Taxonomy",
"authors": "Ines Chami, Sami Abu-El-Haija, Bryan Perozzi, Christopher Re, Kevin Murphy",
"venue": "JMLR 2022.",
"url": "https://jmlr.org/papers/v23/20-852.html"
},
{
"year": 2021,
"peer": true,
"title": "Risk score learning for COVID-19 contact tracing apps",
"authors": "Kevin Murphy, Abhishek Kumar, Stelios Serghiou",
"venue": "Machine Learning for Health Care, 2021.",
"url": "https://proceedings.mlr.press/v149/murphy21a/murphy21a.pdf"
},
{
"year": 2021,
"peer": true,
"title": "Uncertainty Baselines: Benchmarks for Uncertainty & Robustness in Deep Learning",
"authors": "Zachary Nado, Neil Band, Mark Collier, Josip Djolonga, Michael W. Dusenberry, Sebastian Farquhar, Angelos Filos, Marton Havasi, Rodolphe Jenatton, Ghassen Jerfel, Jeremiah Liu, Zelda Mariet, Jeremy Nixon, Shreyas Padhy, Jie Ren, Tim G. J. Rudner, Yeming Wen, Florian Wenzel, Kevin Murphy, D. Sculley, Balaji Lakshminarayanan, Jasper Snoek, Yarin Gal, Dustin Tran",
"venue": "NeurIPS Bayesian Deep Learning Workshop, 2021.",
"url": "https://openreview.net/forum?id=ehUzL3tOKEP"
},
{
"year": 2020,
"peer": true,
"title": "Collapsed Amortized Variational Inference for Switching Nonlinear Dynamical Systems",
"authors": "Zhe Dong, Bryan A. Seybold, Kevin P. Murphy, Hung H. Bui",
"venue": "ICML 2020",
"url": "http://proceedings.mlr.press/v119/dong20e.html"
},
{
"year": 2020,
"peer": true,
"title": "Population Based Optimization for Biological Sequence Design",
"authors": "Andreea Gane, Christof Angermueller, D. Sculley, David Belanger, David Martin Dohan, Kevin Patrick Murphy, Lucy Colwell, Zelda Mariet",
"venue": "ICML 2020",
"url": "https://arxiv.org/abs/2006.03227"
},
{
"year": 2020,
"peer": true,
"title": "Amortized Bayesian Optimization over Discrete Spaces",
"authors": "Kevin Swersky, Yulia Rubanova, David Dohan, Kevin Murphy",
"venue": "UAI 2020",
"url": "https://proceedings.mlr.press/v124/swersky20a.html"
},
{
"year": 2020,
"peer": true,
"title": "Towards Differentiable Resampling",
"authors": "Michael Zhu, Kevin Murphy, Rico Jonschkowski",
"venue": "RSS workshop on \"Action Representations for Learning in Continuous Control\", 2020.",
"url": "https://arxiv.org/abs/2004.11938"
},
{
"year": 2020,
"peer": true,
"title": "A view of Estimation of Distribution Algorithms through the lens of Expectation-Maximization",
"authors": "David H. Brookes, Akosua Busia, Clara Fannjiang, Kevin Murphy, Jennifer Listgarten",
"venue": "GECCO 2020",
"url": "https://dl.acm.org/doi/10.1145/3377929.3389938"
},
{
"year": 2020,
"peer": true,
"title": "Model-based reinforcement learning for biological sequence design",
"authors": "Christof Angermueller, David Dohan, David Belanger, Ramya Deshpande, Kevin Murphy, Lucy Colwell",
"venue": "ICLR 2020",
"url": "https://openreview.net/forum?id=HklxbgBKvr"
},
{
"year": 2020,
"peer": true,
"title": "The Garden of Forking Paths: Towards Multi-Future Trajectory Prediction",
"authors": "Junwei Liang, Lu Jiang, Kevin Murphy, Ting Yu, Alexander Hauptmann",
"venue": "CVPR 2020.",
"url": "https://arxiv.org/abs/1912.06445"
},
{
"year": 2020,
"peer": true,
"title": "Regularized Autoencoders via Relaxed Injective Probability Flow",
"authors": "Abhishek Kumar, Ben Poole, Kevin Murphy",
"venue": "AISTATS 2020",
"url": "https://arxiv.org/abs/2002.08927"
},
{
"year": 2019,
"peer": true,
"title": "Biological Sequence Design using Batched Bayesian Optimization",
"authors": "David Belanger, Suhani Vora, Zelda Mariet, Ramya Deshpande, David Dohan, Christof Angermueller, Kevin Murphy, Olivier Chapelle and Lucy Colwell",
"venue": "NIPS19 workshop on ML for the sciences",
"url": "https://ml4physicalsciences.github.io/2019/files/NeurIPS_ML4PS_2019_141.pdf"
},
{
"year": 2019,
"peer": true,
"title": "Probing Uncertainty Estimates of Neural Processes",
"authors": "Aditya Grover, Dustin Tran, Rui Shu, Ben Poole and Kevin Murphy",
"venue": "NIPS19 Bayesian deep learning workshop.",
"url": "http://bayesiandeeplearning.org/2019/papers/125.pdf"
},
{
"year": 2019,
"peer": false,
"title": "Learning Video Representations using Contrastive Bidirectional Transformer",
"authors": "Chen Sun, Fabien Baradel, Kevin Murphy, Cordelia Schmid",
"venue": "Arxiv 2019",
"url": "https://arxiv.org/abs/1906.05743"
},
{
"year": 2019,
"peer": true,
"title": "Language as an Abstraction for Hierarchical Deep Reinforcement Learning",
"authors": "Yiding Jiang, Shixiang Gu, Kevin Murphy, Chelsea Finn",
"venue": "NIPS'19",
"url": "https://arxiv.org/abs/1906.07343"
},
{
"year": 2019,
"peer": true,
"title": "Unsupervised Learning of Object Structure and Dynamics from Videos",
"authors": "Matthias Minderer, Chen Sun, Ruben Villegas, Forrester Cole, Kevin Murphy, Honglak Lee",
"venue": "NIPS'19",
"url": "https://arxiv.org/abs/1906.07889"
},
{
"year": 2019,
"peer": true,
"title": "Floors are Flat: Leveraging Semantics for Real-Time Surface Normal Prediction",
"authors": "Steven Hickson, Karthik Raveendran, Alireza Fathi, Kevin Murphy, Irfan Essa",
"venue": "ICCV'19 workshop on \"Geometry meets Deep Learning\"",
"url": "https://arxiv.org/abs/1906.06792"
},
{
"year": 2019,
"peer": true,
"title": "VideoBERT: A Joint Model for Video and Language Representation Learning",
"authors": "Chen Sun, Austin Myers, Carl Vondrick, Kevin Murphy, Cordelia Schmid",
"venue": "ICCV'19",
"url": "https://arxiv.org/abs/1904.01766"
},
{
"year": 2019,
"peer": true,
"title": "NAS-Bench-101: Towards Reproducible Neural Architecture Search",
"authors": "Chris Ying, Aaron Klein, Esteban Real, Eric Christiansen, Kevin Murphy, Frank Hutter",
"venue": "ICML'19.",
"url": "https://arxiv.org/abs/1902.09635"
},
{
"year": 2019,
"peer": true,
"title": "Diverse Generation for Multi-agent Sports Games",
"authors": "Raymond A. Yeh, Jonathan Huang, Alexander G. Schwing, Kevin Murphy",
"venue": "CVPR'19",
"url": "https://openaccess.thecvf.com/content_CVPR_2019/papers/Yeh_Diverse_Generation_for_Multi-Agent_Sports_Games_CVPR_2019_paper.pdf"
},
{
"year": 2019,
"peer": true,
"title": "Relational Action Forecasting",
"authors": "Chen Sun, Abhinav Shrivastava, Carl Vondrick, Rahul Sukthankar, Kevin Murphy, Cordelia Schmid",
"venue": "CVPR'19",
"url": "https://arxiv.org/abs/1904.04231"
},
{
"year": 2019,
"peer": true,
"title": "Predicting the Present and Future States of Multi-agent Systems from Partially-observed Visual Data",
"authors": "Chen Sun, Per Karlsson, Jiajun Wu, Joshua B Tenenbaum, Kevin Murphy",
"venue": "ICLR'19",
"url": "https://openreview.net/forum?id=r1xdH3CcKX¬eId=SJe-DEG4xE"
},
{
"year": 2019,
"peer": true,
"title": "Modeling Uncertainty with Hedged Instance Embeddings",
"authors": "Seong Joon Oh, Kevin P. Murphy, Jiyan Pan, Joseph Roth, Florian Schroff, Andrew C. Gallagher",
"venue": "ICLR'19",
"url": "https://arxiv.org/abs/1810.00319"
},
{
"year": 2019,
"peer": true,
"title": "Modeling Parts, Structure, and System Dynamics via Predictive Learning",
"authors": "Zhijian Liu, Jiajun Wu, Zhenjia Xu, Chen Sun, Kevin Murphy, William T. Freeman, Joshua B. Tenenbaum",
"venue": "ICLR'19",
"url": "https://openreview.net/forum?id=rJe10iC5K7¬eId=Skl4HIG-xN"
},
{
"year": 2018,
"peer": true,
"title": "Towards Reproducible Neural Architecture and Hyperparameter Search",
"authors": "Aaron Klein, Eric Christiansen, Kevin Murphy, Frank Hutter",
"venue": "ICML'18 Workshop on Reproducible ML",
"url": "https://openreview.net/forum?id=rJeMCSnml7"
},
{
"year": 2018,
"peer": true,
"title": "Progressive Neural Architecture Search",
"authors": "Chenxi Liu, Barret Zoph, Jonathon Shlens, Wei Hua, Li-Jia Li, Li Fei-Fei, Alan Yuille, Jonathan Huang, Kevin Murphy",
"venue": "ECCV'18.",
"url": "https://arxiv.org/abs/1712.00559"
},
{
"year": 2018,
"peer": true,
"title": "Tracking emerges by colorizing videos",
"authors": "Carl Vondrick, Abhinav Shrivastava, Alireza Fathi, Sergio Guadarrama, Kevin Murphy",
"venue": "ECCV'18.",
"url": "https://arxiv.org/abs/1806.09594"
},
{
"year": 2018,
"peer": true,
"title": "PersonLab: Person Pose Estimation and Instance Segmentation with a Bottom-Up, Part-Based, Geometric Embedding Model",
"authors": "George Papandreou, Tyler Zhu, Liang-Chieh Chen, Spyros Gidaris, Jonathan Tompson, Kevin Murphy",
"venue": "ECCV'18.",
"url": "https://arxiv.org/abs/1803.08225"
},
{
"year": 2018,
"peer": true,
"title": "Rethinking Spatiotemporal Feature Learning For Video Understanding",
"authors": "Saining Xie, Chen Sun, Jonathan Huang, Zhuowen Tu, Kevin Murphy.",
"venue": "ECCV'18.",
"url": "https://arxiv.org/abs/1712.04851"
},
{
"year": 2018,
"peer": true,
"title": "Generative Models of Visually Grounded Imagination",
"authors": "Ramakrishna Vedantam, Ian Fischer, Jonathan Huang, Kevin Murphy",
"venue": "ICLR'18.",
"url": "https://arxiv.org/abs/1705.10762"
},
{
"year": 2018,
"peer": true,
"title": "Fixing a broken ELBO",
"authors": "Alexander A. Alemi, Ben Poole, Ian Fischer, Joshua V. Dillon, Rif A. Saurous, Kevin Murphy",
"venue": "ICML'18.",
"url": "https://arxiv.org/abs/1711.00464"
},
{
"year": 2018,
"peer": true,
"title": "XGAN: Unsupervised Image-to-Image Translation for Many-to-Many Mappings",
"authors": "Amelie Royer, Konstantinos Bousmalis, Stephan Gouws, Fred Bertsch, Inbar Mosseri, Forrester Cole, Kevin Murphy",
"venue": "ICML workshop on domain adaptation for visual understanding (DAVU'18).",
"url": "https://arxiv.org/abs/1711.05139"
},
{
"year": 2017,
"peer": true,
"title": "PixColor: Pixel Recursive Colorization",
"authors": "Sergio Guadarrama, Ryan Dahl, David Bieber, Mohammad Norouzi, Jonathon Shlens, Kevin Murphy",
"venue": "BMVC'17.",
"url": "https://arxiv.org/abs/1705.07208"
},
{
"year": 2017,
"peer": true,
"title": "Attention-based Extraction of Structured Information from Street View Imagery",
"authors": "Zbigniew Wojna, Alex Gorban, Dar-Shyang Lee, Kevin Murphy, Qian Yu, Yeqing Li, Julian Ibarz",
"venue": "ICDAR'17.",
"url": "https://arxiv.org/abs/1704.03549"
},
{
"year": 2017,
"peer": true,
"title": "DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs",
"authors": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, Alan L. Yuille",
"venue": "IEEE PAMI, 2017.",
"url": "https://arxiv.org/abs/1606.00915"
},
{
"year": 2017,
"peer": true,
"title": "Deep Probabilistic Programming",
"authors": "Dustin Tran, Matthew D. Hoffman, Rif A. Saurous, Eugene Brevdo, Kevin Murphy, David M. Blei",
"venue": "ICLR'17.",
"url": "https://arxiv.org/abs/1701.03757"
},
{
"year": 2017,
"peer": true,
"title": "Deep Variational Information Bottleneck",
"authors": "Alexander A. Alemi, Ian Fischer, Joshua V. Dillon, Kevin Murphy",
"venue": "ICLR'17.",
"url": "https://arxiv.org/abs/1612.00410"
},
{
"year": 2017,
"peer": false,
"title": "Semantic Instance Segmentation via Deep Metric Learning",
"authors": "Alireza Fathi, Zbigniew Wojna, Vivek Rathod, Peng Wang, Hyun Oh Song, Sergio Guadarrama, Kevin P. Murphy",
"venue": "Arxiv'17 .",
"url": "https://arxiv.org/abs/1703.10277"
},
{
"year": 2017,
"peer": true,
"title": "Context-aware Captions from Context-agnostic Supervision",
"authors": "Ramakrishna Vedantam, Samy Bengio, Kevin Murphy, Devi Parikh, Gal Chechik",
"venue": "CVPR'17.",
"url": "https://arxiv.org/abs/1701.02870"
},
{
"year": 2017,
"peer": true,
"title": "Deep Metric Learning via Facility Location",
"authors": "Hyun Oh Song, Stefanie Jegelka, Vivek Rathod, Kevin Murphy",
"venue": "CVPR'17.",
"url": "https://arxiv.org/abs/1612.01213"
},
{
"year": 2017,
"peer": true,
"title": "Speed/accuracy trade-offs for modern convolutional object detectors",
"authors": "Jonathan Huang, Vivek Rathod, Chen Sun, Menglong Zhu, Anoop Korattikara, Alireza Fathi, Ian Fischer, Zbigniew Wojna, Yang Song, Sergio Guadarrama, Kevin Murphy",
"venue": "CVPR'17.",
"url": "https://arxiv.org/abs/1611.10012"
},
{
"year": 2017,
"peer": true,
"title": "Towards Accurate Multi-person Pose Estimation in the Wild",
"authors": "George Papandreou, Tyler Zhu, Nori Kanazawa, Alexander Toshev, Jonathan Tompson, Chris Bregler, Kevin Murphy",
"venue": "CVPR'17.",
"url": "https://arxiv.org/abs/1701.01779"
},
{
"year": 2017,
"peer": true,
"title": "Optimization of image description metrics using policy gradient methods",
"authors": "Siqi Liu, Zhenhai Zhu, Ning Ye, Sergio Guadarrama, Kevin Murphy",
"venue": "ICCV'17.",
"url": "https://arxiv.org/abs/1612.00370"
},
{
"year": 2016,
"peer": true,
"title": "Generation and Comprehension of Unambiguous Object Descriptions",
"authors": "Junhua Mao, Jonathan Huang, Alexander Toshev, Oana Camburu, Alan Yuille, Kevin Murphy",
"venue": "CVPR'16",
"url": "http://arxiv.org/abs/1511.02283"
},
{
"year": 2016,
"peer": true,
"title": "Detecting events and key actors in multi-person videos",
"authors": "Vignesh Ramanathan, Jonathan Huang, Sami Abu-El-Haija, Alexander Gorban, Kevin Murphy, Li Fei-Fei.",
"venue": "CVPR'16",
"url": "http://arxiv.org/abs/1511.02917"
},
{
"year": 2016,
"peer": true,
"title": "Semantic Image Segmentation with Task-Specific Edge Detection Using CNNs and a Discriminatively Trained Domain Transform",
"authors": "Liang-Chieh Chen, Jonathan T. Barron, George Papandreou, Kevin Murphy, Alan L. Yuille",
"venue": "CVPR'16",
"url": "http://arxiv.org/abs/1511.03328"
},
{
"year": 2016,
"peer": true,
"title": "Efficient inference in occlusion-aware generative models of images",
"authors": "Jonathan Huang, Kevin Murphy",
"venue": "ICLR'16 Workshop.",
"url": "http://arxiv.org/abs/1511.06362"
},
{
"year": 2015,
"peer": true,
"title": "Im2Calories: towards an automated mobile vision food diary",
"authors": "Austin Myers, Nick Johnston, Vivek Rathod, Anoop Korattikara, Alex Gorban, Nathan Silberman, Sergio Guadarrama, George Papandreou, Jonathan Huang, Kevin Murphy.",
"venue": "ICCV'15",
"url": "https://www.cv-foundation.org/openaccess/content_iccv_2015/html/Meyers_Im2Calories_Towards_an_ICCV_2015_paper.html"
},
{
"year": 2015,
"peer": true,
"title": "Bayesian Dark Knowledge",
"authors": "Anoop Korattikara, Vivek Rathod, Kevin Murphy, Max Welling",
"venue": "NIPS'15",
"url": "http://arxiv.org/abs/1506.04416"
},
{
"year": 2015,
"peer": true,
"title": "Modeling and Diagnosis of Structural Systems through Sparse Dynamic Graphical Models",
"authors": "Luke Bornn, Charles R Farrar, David Higdon, Kevin Murphy.",
"venue": "J. of Mechanical Systems and Signal Processing, 2015",
"url": "http://www.lukebornn.com/papers/bornn_mssp_2016.pdf"
},
{
"year": 2015,
"peer": true,
"title": "A Review of Relational Machine Learning for Knowledge Graphs: From Multi-Relational Link Prediction to Automated Knowledge Graph Construction",
"authors": "Maximilian Nickel, Kevin Murphy, Volker Tresp, Evgeniy Gabrilovich",
"venue": "Proc. IEEE, 2015",
"url": "http://arxiv.org/abs/1503.00759"
},
{
"year": 2015,
"peer": true,
"title": "What's Cookin'? Interpreting Cooking Videos using Text, Speech and Vision",
"authors": "Jon Malmaud, Jonathan Huang, Vivek Rathod, Nicholas Johnston, Andrew Rabinovich, Kevin Murphy",
"venue": "NAACL'15",
"url": "http://arxiv.org/abs/1503.01558"
},
{
"year": 2015,
"peer": true,
"title": "Probabilistic Label Relation Graphs with Ising Models",
"authors": "Nan Ding, Jia Deng, Kevin Murphy, Hartmut Neven",
"venue": "ICCV 2015",
"url": "http://arxiv.org/abs/1503.01428"
},
{
"year": 2015,
"peer": true,
"title": "TimeMachine: Timeline Generation for Knowledge-Base Entities",
"authors": "Tim Althoff, Xin Luna Dong, Kevin Murphy, Safa Alai, Van Dang, Wei Zhang",
"venue": "KDD'15",
"url": "http://arxiv.org/abs/1502.04662"
},
{
"year": 2015,
"peer": true,
"title": "Knowledge-Based Trust: Estimating the Trustworthiness of Web Sources",
"authors": "Xin Luna Dong, Evgeniy Gabrilovich, Kevin Murphy, Van Dang, Wilko Horn, Camillo Lugaresi, Shaohua Sun, Wei Zhang",
"venue": "VLDB'15.",
"url": "http://arxiv.org/abs/1502.03519"
},
{
"year": 2015,
"peer": true,
"title": "Weakly and semi-supervised learning of a DCNN for semantic image segmentation",
"authors": "George Papandreou, Liang-Chieh Chen, Kevin Murphy, Alan L. Yuille",
"venue": "ICCV 2015",
"url": "http://arxiv.org/abs/1502.02734"
},
{
"year": 2015,
"peer": true,
"title": "Semantic Image Segmentation with Deep Convolutional Nets and Fully Connected CRFs",
"authors": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, Alan L. Yuille",
"venue": "ICLR'15",
"url": "http://arxiv.org/abs/1412.7062"
},
{
"year": 2014,
"peer": true,
"title": "Probabilistic models for collective entity resolution between knowledge graphs",
"authors": "Jay Pujara, Kevin Murphy, Luna Dong, Curtis Janssen",
"venue": "Bay Area Machine Learning workshop 2014",
"url": "https://www.isi.edu/results/publications/18552/probabilistic-models-for-collective-entity-resolution-between-knowledge-graphs/"
},
{
"year": 2014,
"peer": true,
"title": "Canonicalizing Open Knowledge Bases",
"authors": "Luis Galarraga, Geremy Heitz, Kevin Murphy, Fabian Suchanek",
"venue": "CIKM 2014",
"url": "http://suchanek.name/work/publications/cikm2014.pdf"
},
{
"year": 2014,
"peer": true,
"title": "Large-Scale Object Classification using Label Relation Graphs",
"authors": "Jia Deng, Nan Ding, Yangqing Jia, Andrea Frome, Kevin Murphy, Samy Bengio, Yuan Li, Hartmut Neven, Hartwig Adam",
"venue": "ECCV 2014 (Best Paper Award).",
"url": "https://doi.org/10.1007/978-3-319-10590-1_4"
},
{
"year": 2014,
"peer": true,
"title": "Cooking with semantics",
"authors": "Jon Malmaud, Earl Wagner, Nancy Chang, Kevin Murphy.",
"venue": "ACL'14 Semantic Parsing Workshop",
"url": "https://aclanthology.org/W14-2407/"
},
{
"year": 2014,
"peer": true,
"title": "Knowledge Vault: A Web-Scale Approach to Probabilistic Knowledge Fusion",
"authors": "Xin Luna Dong, Evgeniy Gabrilovich, Geremy Heitz, Wilko Horn, Ni Lao, Kevin Murphy, Thomas Strohmann, Shaohua Sun, Wei Zhang",
"venue": "KDD'14.",
"url": "https://research.google/pubs/knowledge-vault-a-web-scale-approach-to-probabilistic-knowledge-fusion/"
},
{
"year": 2014,
"peer": true,
"title": "From Data Fusion to Knowledge Fusion",
"authors": "Xin Luna Dong, Evgeniy Gabrilovich, Geremy Heitz, Wilko Horn, Kevin Murphy, Shaohua Sun, Wei Zhang",
"venue": "VLDB'14.",
"url": "https://doi.org/10.14778/2732951.2732962"
},
{
"year": 2014,
"peer": true,
"title": "Knowledge Base Completion via Search-Based Question Answering",
"authors": "Robert West, Evgeniy Gabrilovich, Kevin Murphy, Shaohua Sun, Rahul Gupta, Dekang Lin",
"venue": "WWW'14.",
"url": "https://doi.org/10.1145/2566486.2568032"
},
{
"year": 2013,
"peer": true,
"title": "Extracting Entities and Relations from Web Tables Using a Non-parametric Generative Model",
"authors": "Jon Malmaud, Kevin Murphy",
"venue": "Bay Area Machine Learning workshop (Extended abstract)",
"url": "https://www.cs.ubc.ca/~murphyk/Papers/baylearn.pdf"
},
{
"year": 2012,
"peer": true,
"title": "Fast Bayesian Inference for Non-Conjugate Gaussian Process Regression",
"authors": "Emtiyaz Khan, Shakir Mohammad, Kevin Murphy",
"venue": "NIPS 2012",
"url": "https://proceedings.neurips.cc/paper/2012/hash/e94f63f579e05cb49c05c2d050ead9c0-Abstract.html"
},
{
"year": 2012,
"peer": false,
"title": "Machine learning: a probabilistic perspective",
"authors": "Kevin Murphy",
"venue": "MIT Press 2012",
"url": "https://probml.github.io/pml-book/book0.html"
},
{
"year": 2012,
"peer": true,
"title": "Learning to Track and Identify Players from Broadcast Sports Videos",
"authors": "Wei-Lwun Lu, Joanne Ting, Jim Little, Kevin Murphy",
"venue": "IEEE PAMI",
"url": "https://doi.org/10.1109/TPAMI.2012.242"
},
{
"year": 2012,
"peer": false,
"title": "Proceedings of the 28th Conference on Uncertainty in Artificial Intelligence",
"authors": "Nando de Freitas and Kevin Murphy (eds)",
"venue": "",
"url": "http://www.auai.org/uai2012/proceedings.pdf"
},
{
"year": 2012,
"peer": true,
"title": "A Stick-Breaking Likelihood for Categorical Data Analysis with Latent Gaussian Models",
"authors": "M. E. Khan, S. Mohamed, B. Marlin, and K. Murphy",
"venue": "AI/Stats 2012",
"url": "https://proceedings.mlr.press/v22/khan12.html"
},
{
"year": 2012,
"peer": true,
"title": "Efficient Bayesian Inference for Multivariate Probit Models with Sparse Inverse Correlation Matrices",
"authors": "A. Talhouk and A. Doucet and K. Murphy",
"venue": "Journal of Computational and Graphical Statistics, 21(3), 2012.",
"url": "https://doi.org/10.1080/10618600.2012.679239"
},
{
"year": 2011,
"peer": true,
"title": "Piecewise Bounds for Estimating Bernoulli-Logistic Latent Gaussian Models",
"authors": "B. Marlin and E. Khan and K. Murphy",
"venue": "ICML 2011",
"url": "https://icml.cc/2011/papers/376_icmlpaper.pdf"
},
{
"year": 2011,
"peer": true,
"title": "Identifying Players in Broadcast Sports Videos using Conditional Random Fields",
"authors": "Wei-Lwun Lu, Jo-Anne Ting, Kevin P. Murphy, and James J. Little",
"venue": "CVPR 2011.",
"url": "https://doi.org/10.1109/CVPR.2011.5995562"
},
{
"year": 2011,
"peer": true,
"title": "Multiscale Conditional Random Fields for Semi-supervised Labeling and Classification",
"authors": "David Duvenaud, Ben Marlin, Kevin Murphy.",
"venue": "Canadian Conf. on Computer and Robot Vision (CRV) 2011",
"url": "https://doi.org/10.1109/CRV.2011.56"
},
{
"year": 2010,
"peer": true,
"title": "Variational bounds for mixed-data factor analysis",
"authors": "M. E. Khan, B. Marlin, G. Bouchard, K. Murphy",
"venue": "NIPS 2010.",
"url": "https://proceedings.neurips.cc/paper/2010/hash/2a084e55c87b1ebcdaad1f62fdbbac8e-Abstract.html"
},
{
"year": 2010,
"peer": true,
"title": "Pairwise network mechanisms in the host signaling response to coxsackievirus B3 infection",
"authors": "Farshid S. Garmaroudia, David Marchant, Xiaoning Si, Abbas Khalili, Ali Bashashati, Brian W. Wong, Aline Tabet, Raymond T. Ng, Kevin Murphy, Honglin Luo, Kevin A. Janes, Bruce M. McManus.",
"venue": "Proc. Natl. Acad. Sciences, 107(39): 17053-17058, 2010",
"url": "http://www.pnas.org/content/107/39/17053.abstract"
},
{
"year": 2010,
"peer": true,
"title": "Computational approaches for RNA energy parameter estimation",
"authors": "Mirela Andronescu, Anne Condon, Holger Hoos, David Mathews, Kevin Murphy",
"venue": "RNA Journal, 16(12):2304-2318, 2010.",
"url": "https://rnajournal.cshlp.org/content/16/12/2304.full"
},
{
"year": 2010,
"peer": true,
"title": "Convex Structure Learning in Log-Linear Models: Beyond Pairwise Potentials",
"authors": "Mark Schmidt, Kevin Murphy",
"venue": "AISTATS 2010.",
"url": "https://proceedings.mlr.press/v9/schmidt10a.html"
},
{
"year": 2010,
"peer": true,
"title": "Time-Bounded Sequential Parameter Optimization",
"authors": "Frank Hutter, Holger Hoos, Kevin Murphy, Kevin Leyton-Brown",
"venue": "Learning and Intelligent Optimization - LION4 2010.",
"url": "https://doi.org/10.1007/978-3-642-13800-3_30"
},
{
"year": 2010,
"peer": false,
"title": "Book Review of \"Probabilistic graphical models\" by Koller and Friedman",
"authors": "Kevin Murphy",
"venue": "Artificial Intelligence Journal, 174(2):145-146, 2010.",
"url": "http://dx.doi.org/10.1016/j.artint.2009.11.005"
},
{
"year": 2010,
"peer": true,
"title": "SNVMix: predicting single nucleotide variants from next-generation sequencing of tumors",
"authors": "Rodrigo Goya, Mark G. F. Sun, Ryan D. Morin, Gillian Leung, Gavin Ha, Kimberley C. Wiegand, Janine Senz, Anamaria Crisan, Marco A. Marra, Martin Hirst, David Huntsman, Kevin P. Murphy, Sam Aparicio, Sohrab P. Shah",
"venue": "Bioinformatics, 26(6):730-736, 2010.",
"url": "https://doi.org/10.1093/bioinformatics/btq040"
},
{
"year": 2010,
"peer": false,
"title": "Using the forest to see the trees: object recognition in context",
"authors": "A. Torralba, K. Murphy, W. Freeman",
"venue": "Communications of the ACM, Research Highlights, 53(3): 107-114, 2010.",
"url": "https://doi.org/10.1145/1666420.1666446"
},
{
"year": 2009,
"peer": true,
"title": "Accelerating Bayesian Structural Inference for Non-Decomposable Gaussian Graphical Models",
"authors": "Baback Moghaddam, Ben Marlin, Emtiyaz Khan, Kevin Murphy.",
"venue": "NIPS 2009",
"url": "https://proceedings.neurips.cc/paper/2009/hash/a1519de5b5d44b31a01de013b9b51a80-Abstract.html"
},
{
"year": 2009,
"peer": true,
"title": "Causal learning without DAGs",
"authors": "David Duvenaud, Daniel Eaton, Kevin Murphy, Mark Schmidt.",
"venue": "JMLR W&CP 2009.",
"url": "https://proceedings.mlr.press/v6/duvenaud10a.html"
},
{
"year": 2009,
"peer": true,
"title": "Group Sparse Priors for Covariance Estimation",
"authors": "Ben Marlin, Mark Schmidt, and Kevin Murphy",