-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalks.js
More file actions
53 lines (53 loc) · 2.17 KB
/
Copy pathtalks.js
File metadata and controls
53 lines (53 loc) · 2.17 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
// Kevin Murphy talks. To add a talk, add an object at the top.
window.TALKS = [
{
"title": "Code Synthesis for improved agentic decision making",
"venue": "ICLR World Models Workshop, April 2026",
"url": "https://www.cs.ubc.ca/~murphyk/CWM-ICLR26.pdf"
},
{
"title": "From Generative AI to Agentic AI",
"venue": "August 2025",
"url": "https://www.cs.ubc.ca/~murphyk/kpm-GenAgents-Aug2025.pdf"
},
{
"title": "Sequential Decision Making using Online Variational Bayes (video)",
"venue": "( Slides .) Khipu.ai, Chile, March 2025. Cornell U., March 2025",
"url": "https://www.youtube.com/live/s9VJv0GQExo?t=2691s"
},
{
"title": "Algorithms and Applications for Sequential Decision Making",
"venue": "Oxford Mann Institute, February 2025",
"url": "https://murphyk.github.io/bong-talk/"
},
{
"title": "\"A unified, decision-theoretic perspective on ML: prediction, control, discovery, generation\"",
"venue": "Princeton and NYU, May 2023",
"url": "https://www.youtube.com/watch?v=uhcdw5rvqqE"
},
{
"title": "\"The 4 pillars of machine learning: prediction, decision, discovery, generation\"",
"venue": "UBC and SFU, February, 2023. Deep Learning Indaba , Ghana, September 2023",
"url": "https://www.sfu.ca/computing/newsandevents/distinguished-lecture-series.html"
},
{
"title": "\"From perception to prediction\"",
"venue": "Vector Institute in Toronto, January 2019. Note: Sound quality of video improves after first 10 minutes! Chat with Rich Zemel about ML after my talk. -->",
"url": "http://www.fields.utoronto.ca/video-archive/static/2019/01/2509-19616/mergedvideo.ogv"
},
{
"title": "\"Generative models for vision and language\"",
"venue": "Riken in Tokyo, March 2018",
"url": "https://www.youtube.com/watch?v=V07yXURJPao"
},
{
"title": "\"Towards machines that perceive and communicate\"",
"venue": "UBC, May 2018 (CS 50th annniversary)",
"url": "https://youtu.be/CoXE5DhTX-A"
},
{
"title": "\"Towards machines that perceive and communicate\"",
"venue": "MIT CBMM, May 2017",
"url": "https://cbmm.mit.edu/video/towards-machines-perceive-and-communicate"
}
];