Insightcast AI
Home
© 2025 All rights reserved
Impressum
Stuart Russell: Long-Term Future of AI

Stuart Russell: Long-Term Future of AI

Lex Fridman Podcast XX

--:--
--:--

Full Transcription:

[0] The following is a conversation with Stuart Russell.

[1] He's a professor of computer science at UC Berkeley and a co -author of a book that introduced me and millions of other people to the amazing world of AI called Artificial Intelligence, the Modern Approach.

[2] So it was an honor for me to have this conversation as part of MIT course and Artificial General Intelligence and the Artificial Intelligence Podcast.

[3] If you enjoy it, please subscribe on YouTube, iTunes, or your podcast, provider of choice, or simply connect with me on Twitter at Lex Friedman, spelled F -R -I -D.

[4] And now, here's my conversation with Stuart Russell.

[5] So you've mentioned in 1975 in high school, you've created one of your first AI programs that played chess.

[6] Were you ever able to build a program that beat you at chess or another board game?

[7] so my program never beat me at chess I actually wrote the program at Imperial College so I used to take the bus every Wednesday with a box of cards this big and shove them into the card reader and they gave us eight seconds of CPU time it took about five seconds to read the cards in and compile the code so we had three seconds of CPU time which was enough to make one mood you know with a not very deep search and then we would print that move out and then we'd have to go to the back of the queue and wait to feed the cards in again how deep was the search are we talking about one move two moves so no I think we got we got an eight move you know a depth eight um with alpha beta and we had some tricks of our own about um move ordering and some pruning of the tree and but you were still able to beat that program yeah yeah I was a reasonable chess player in my youth.

[8] I did an Othello program and a backgammon program.

[9] So when I got to Berkeley, I worked a lot on what we call meta reasoning, which really means reasoning about reasoning.

[10] And in the case of a game playing program, you need to reason about what parts of the search tree you're actually going to explore, because the search tree is enormous, you know, bigger than the number of atoms in the universe.

[11] And the way programs succeed and the way humans succeed is by only looking at a small fraction of the search tree.

[12] And if you look at the right fraction, you play really well.

[13] If you look at the wrong fraction, if you waste your time thinking about things that are never going to happen, the moves that no one's ever going to make, then you're going to lose because you won't be able to figure out the right decision.

[14] So that question of how machines can manage their own computation, how they decide what to think about, is the meta -reasoning question.

[15] We develop some methods for doing that, and very simply, a machine should think about whatever thoughts are going to improve its decision quality.

[16] We were able to show that both for Othello, which is a standard two -player game, and for backgammon, which includes dice roll, so it's a two -player game with uncertainty.

[17] For both of those cases, we could come up with algorithms that were actually much more efficient than the standard alpha -beta search which chess programs at the time were using.

[18] And that, those programs could beat me. And I think you can see the same basic ideas in AlphaGo and Alpha -Zero today.

[19] The way they explore the tree is using a form of meta reasoning to select what to think about based on how useful it is to think about it.

[20] Is there any insights you can describe without Greek symbols of how do we select which paths to go down?

[21] There's really two kinds of learning going on.

[22] So as you say, AlphaGo learns to evaluate board positions.

[23] So it can look at a Go board.

[24] and it actually has probably a superhuman ability to instantly tell how promising that situation is.

[25] To me, the amazing thing about AlphaGo is not that it can be the world champion with its hands tied behind his back, but the fact that if you stop it from searching altogether, so you say, okay, you're not allowed to do any thinking ahead, right you can just consider each of your legal moves and then look at the resulting situation and evaluate it so what we call a depth one search so just the immediate outcome of your moves and decide if that's good or bad that version of alpha go can still play at a professional level right and human professionals are sitting there for five 10 minutes deciding what to do and alpha go in less than a second can instantly intuit what is the right move to make based on its ability to evaluate positions and that is remarkable because we don't have that level of intuition about Go we actually have to think about the situation so anyway that capability that AlphaGo has is one big part of why it beats humans the other big part is that it's able to look ahead 40, 50, 60 moves into the future.

[26] And, you know, if it was considering all possibilities 40 or 50 or 60 moves into the future, that would be, you know, 10 to the 200 possibilities.

[27] So way, way more than, you know, atoms in the universe and so on.

[28] So it's very, very selective about what it looks at.

[29] So let me try to give you an intuition about how you decide what to think about.

[30] It's a combination of two things.

[31] One is how promising it is.

[32] Right.

[33] So if you're already convinced that a move is terrible, there's no point spending a lot more time convincing yourself that it's terrible because it's probably not going to change your mind.

[34] So the real reason you think is because there's some possibility of changing your mind about what to do.

[35] Right.

[36] And it's that.

[37] changing a mind that would result then in a better final action in the real world.

[38] So that's the purpose of thinking is to improve the final action in the real world.

[39] And so if you think about a move that is guaranteed to be terrible, you can convince yourself as terrible, you're still not going to change your mind, right?

[40] But on the other hand, you know, suppose you had a choice between two moves.

[41] One of them you've already figured out is guaranteed to be a draw, let's say.

[42] And then the other one looks a little bit worse.

[43] It looks fairly likely that if you make that move, you're going to lose.

[44] But there's still some uncertainty about the value of that move.

[45] There's still some possibility that it will turn out to be a win.

[46] Then it's worth thinking about that.

[47] So even though it's less promising on average than the other move, which is guaranteed to be a draw, there's still some purpose in thinking about it because there's a chance that you'll change your mind and discover that, in fact, it's a better move.

[48] So it's a combination of how good the move appears to be and how much uncertainty there is about its value.

[49] The more uncertainty, the more it's worth thinking about, because there's a higher upside, if you want to think of it that way.

[50] And of course, in the beginning, especially in the alpha -go -zero formulation, it's everything is shrouded in uncertainty.

[51] So you're really swimming in a sea of uncertainty, so it benefits you to, I mean, actually following the same process as you described but because you're so uncertain about everything you basically have to try a lot of different directions yeah so so the the early parts of the search tree are fairly bushy um that it will it will look at a lot of different possibilities but fairly quickly the degree of certainty about some of the moves i mean if a move is really terrible you'll pretty quickly find out right you'll lose half your pieces or half your territory and and then you'll say okay this this is not worth thinking about anymore And then, so further down, the tree becomes very long and narrow.

[52] And you're following various lines of play, you know, 10, 20, 30, 40, 50 moves into the future.

[53] And, you know, that, again, is something that human beings have a very hard time doing, mainly because they just lack the short -term memory.

[54] You just can't remember a sequence of moves that's 50 moves long.

[55] and you can't imagine the board correctly for that many moves into the future.

[56] Of course, the top players, I'm much more familiar with chess, but the top players probably have, they have echoes of the same kind of intuition instinct that in a moment's time AlphaGo applies when they see a board.

[57] I mean, they've seen those patterns, human beings have seen those patterns before at the top, at the grandmaster level.

[58] it seems that there is some similarities or maybe it's our imagination creates a vision of those similarities but it feels like this kind of pattern recognition that the alpha -goal approaches are using is similar to what human beings at the top level are using I think there's there's some truth to that but not entirely yeah I mean I think the the extent to which a human grandmaster can reliably instantly recognize the right move and instantly recognize the value of the position, I think that's a little bit overrated.

[59] But if you sacrifice a queen, for example, I mean, there's these beautiful games of chess with Bobby Fisher, somebody where it's seeming to make a bad move.

[60] And I'm not sure there's a perfect degree of calculation involved where they've calculated all the possible thing that happened.

[61] But there's an instinct there, right, that somehow adds up to go down that path.

[62] Yeah, so I think what happens is you get a sense that there's some possibility in the position, even if you make a weird -looking move, that it opens up some lines of calculation that otherwise would be definitely bad.

[63] And is that intuant?

[64] that there's something here in this position that might, might yield a win.

[65] And then you follow that, right?

[66] And in some sense, when a chess player is following a line in his or her mind, they're mentally simulating what the other person is going to do, what the opponent is going to do.

[67] And they can do that as long as the moves are kind of forced, right?

[68] as long as there's a, you know, there's a, we call a forcing variation where the opponent doesn't really have much choice how to respond, and then you see if you can force them into a situation where you win.

[69] You know, we see plenty of mistakes, even in Grandmaster games, where they just miss some simple three, four, five move combination that, you know, wasn't particularly apparent in the position, but was still there.

[70] That's the thing that makes us human.

[71] Yep.

[72] So when you mentioned that in Othello, those games were, after some matter -reasoning improvements and research, was able to beat you, how did that make you feel?

[73] Part of the meta -reasoning capability that it had was based on learning.

[74] And you could sit down the next day, and you could just feel that it had got a lot smarter.

[75] And all of a sudden, you really felt you're sort of, pressed against the wall because it was it was much more aggressive and and was totally unforgiving of any minor mistake that you might make and and actually it seemed understood the game better than I did and Gary Kasparov has this quote where during his match against Deep Blue he said he suddenly felt that there was a new kind of intelligence across the board do you think that's a scary or an exciting possibility for kasprov and for yourself in the context of chess purely sort of in this like that feeling whatever that is i think it's definitely um an exciting feeling you know this is what made me work on ai in the first place was as soon as i really understood what a computer was, I wanted to make it smart.

[76] You know, I started out with the first program I wrote was for the Sinclair programmable calculator.

[77] And I think you could write a 21 -step algorithm.

[78] That was the biggest program you could write, something like that, and do little arithmetic calculations.

[79] So I think I implemented Newton's method for square roots and a few other things like that.

[80] But then, you know, I thought, okay, if I just...

[81] just had more space, I could make this thing intelligent.

[82] And so I started thinking about AI and I think the thing that's scary is not the chess program because, you know, chess programs, they're not in the taking over the world business.

[83] But if you extrapolate, you know, there are things that are.

[84] about chess that don't resemble the real world, right?

[85] We know the rules of chess.

[86] The chess board is completely visible to the program, where of course the real world is not, most of the real world is not visible from wherever you're sitting, so to speak.

[87] And to overcome those kinds of problems, you need qualitatively different algorithms.

[88] Another thing about the real world is that, you know, we regularly plan ahead on the timescales involving billions or trillions of steps.

[89] Now, we don't plan those in detail, but, you know, when you choose to do a PhD at Berkeley, that's a five -year commitment, and that amounts to about a trillion motor control steps that you will eventually be committed to.

[90] Including going up the stairs, opening doors, drinking water.

[91] Type, yeah, I mean, every finger movement while you're typing, every character of every paper and the thesis and everything.

[92] So you're not committing in advance to the specific motor control steps, but you're still reasoning on a timescale that will eventually reduce to trillions of motor control actions.

[93] And so for all of these reasons, you know, AlphaGo and D .E. deep blue and so on, don't represent any kind of threat to humanity.

[94] But they are a step towards it, right?

[95] And progress in AI occurs by essentially removing one by one these assumptions that make problems easy, like the assumption of complete observability of the situation, right?

[96] If we remove that assumption, you need a much more complicated kind of computing design.

[97] and you need something that actually keeps track of all the things you can't see and tries to estimate what's going on, and there's inevitable uncertainty in that.

[98] So it becomes a much more complicated problem.

[99] But, you know, we are removing those assumptions.

[100] We are starting to have algorithms that can cope with much longer timescales, they can cope with uncertainty, that can cope with partial observability.

[101] And so each of those steps sort of magnifies by a thousand, thousand the range of things that we can do with AI systems.

[102] So the way I started in AI, I wanted to be a psychiatrist for a long time.

[103] I wanted to understand the mind in high school.

[104] And of course, program and so on.

[105] And I showed up University of Illinois to an AI lab.

[106] And they said, okay, I don't have time for you, but here's a book, AI, a modern approach.

[107] I think it was the first edition at the time.

[108] Here, go learn this.

[109] And I remember the lay of the land was, well, it's incredible that we saw.

[110] chess but we'll never solve go I mean it was pretty certain that go in the way we thought about systems that reason wasn't possible to solve and now we've solved this as a very well I think I would have said that it's unlikely we could take the kind of algorithm that was used for chess and just get it to scale up and work well for go and at the time what we thought was that in order to solve Go, we would have to do something similar to the way humans manage the complexity of Go, which is to break it down into kind of sub -games.

[111] So when a human thinks about a Go -Bord, they think about different parts of the board as sort of weakly connected to each other.

[112] And they think about, okay, within this part of the board, here's how things could go.

[113] And that part of board, here's how things could go.

[114] And then you try to sort of couple those two analyses together.

[115] and deal with the interactions and maybe revise your views of how things are going to go in each part.

[116] And then you've got maybe five, six, seven, ten parts of the board.

[117] And that actually resembles the real world much more than chess does.

[118] Because in the real world, you know, we have work, we have home life, we have sport, you know, whatever, different kinds of activities, you know, shopping.

[119] these all are connected to each other, but they're weakly connected.

[120] So when I'm typing a paper, you know, I don't simultaneously have to decide which order I'm going to get the, you know, the milk and the butter.

[121] You know, that doesn't affect the typing.

[122] But I do need to realize, okay, I better finish this before the shop's closed because I don't have anything, you don't have any food at home.

[123] Right.

[124] Right.

[125] So there's some weak connection, but not in the way that chess work.

[126] where everything is tied into a single stream of thought.

[127] So the thought was that go, to solve go, would have to make progress on stuff that would be useful for the real world.

[128] And in a way, AlphaGo is a little bit disappointing.

[129] Right.

[130] Because the program designed for AlphaGo was actually not that different from Deep Blue or even from Arthur Samuel's checker playing program from the 1950s.

[131] And in fact, the two things that, make AlphaGo work.

[132] One is this amazing ability to evaluate the positions, and the other is the meta -reasoning capability, which allows it to explore some paths in the tree very deeply and to abandon other paths very quickly.

[133] So this word meta -reasoning, while technically correct, inspires perhaps the wrong degree of power that Alpha -Go has.

[134] For example, the word reasoning is is a powerful word.

[135] Let me ask you, sort of, you were part of the symbolic AI world for a while, like where the AI was, there's a lot of excellent, interesting ideas there that unfortunately met a winter.

[136] And so do you think it reemerges?

[137] Oh, so I would say, yeah, it's not quite as simple as that.

[138] So the AI winter, the first, winter that was actually named as such was the one in the late 80s.

[139] And that came about because in the mid -80s, there was really a concerted attempt to push AI out into the real world using what was called expert system technology.

[140] And for the most part, that technology was just not ready for prime time.

[141] they were trying in many cases to do a form of uncertain reasoning, judgment, combinations of evidence, diagnosis, those kinds of things, which was simply invalid.

[142] And when you try to apply invalid reasoning methods to real problems, you can fudge it for small versions of the problem, but when it starts to get larger, the thing just falls apart.

[143] so many companies found that the stuff just didn't work and they were spending tons of money on consultants to try to make it work and there were other practical reasons like they were asking the companies to buy incredibly expensive LISP machine workstations which were literally between $50 ,000 and $100 ,000 in you know in 1980s money which would be like between $150 ,000 and $300 ,000 per workstation in current prices.

[144] And then the bottom line, they weren't seeing a profit from it.

[145] Yeah, in many cases, I think there were some successes.

[146] There's no doubt about that.

[147] But people, I would say, over -invested.

[148] Every major company was starting an AI department, just like now.

[149] And I worry a bit that we might see similar disappointments.

[150] not because the current technology is invalid but it's limited in its scope and it's almost the dual of the scope problems that expert systems had so what have you learned from that hype cycle and what can we do to prevent another winter for example uh yeah so when i'm giving talks these days that's one of the warnings that i give uh so that There's a two -part warning slide.

[151] One is that, you know, rather than data being the new oil, data is the new snake oil.

[152] That's a good line.

[153] And then the other is that we might see a kind of very visible failure in some of the major application areas.

[154] And I think self -driving cars would be the flagship.

[155] And I think when you look at it.

[156] at the history.

[157] So the first self -driving car was on the freeway, driving itself, changing lanes, overtaking in 1987.

[158] And so it's more than 30 years.

[159] And that kind of looks like where we are today, right?

[160] You know, prototypes on the freeway, changing lanes and overtaking.

[161] Now, I think significant progress has been made, particularly on the percentage.

[162] side.

[163] So we worked a lot on autonomous vehicles in the early mid -90s at Berkeley.

[164] And we had our own big demonstrations.

[165] You know, we put congressmen into self -driving cars and had them zooming along the freeway.

[166] And the problem was clearly perception.

[167] At the time, the problem was perception.

[168] Yeah.

[169] So in simulation, with perfect perception, you could actually show that can drive safely for a long time, even if the other cars are misbehaving and so on.

[170] But simultaneously, we worked on machine vision for detecting cars and tracking pedestrians and so on.

[171] And we couldn't get the reliability of detection and tracking up to a high enough level, particularly in bad weather conditions, nighttime rainfall.

[172] Good enough for demos, but Perhaps not good enough to cover the general operation.

[173] Yeah, so the thing about driving is, you know, so suppose you're a taxi driver, you know, and you drive every day, eight hours a day for 10 years, right?

[174] That's 100 million seconds of driving, you know, and any one of those seconds you can make a fatal mistake.

[175] So you're talking about eight -nines of reliability, right?

[176] Now, if your vision system only detects 98 .3 % of the vehicles, right?

[177] then that's sort of one and a bit nine's reliability so you have another seven orders of magnitude to go and um and this is what people don't understand they they think oh because i had a successful demo i'm pretty much done but you're you're not even within seven orders of magnitude of being done and that's the difficulty and it's it's not the can i follow a white line that's not the problem right we follow a white line all the way across the country but it's the it's the weird stuff that happens it's all the edge cases yeah the edge cases other drivers doing weird things um you know so if you talk to google right so they had um actually a very classical architecture where you know you had machine vision which would detect all the other cars and pedestrians and the white lines and the road signs and then basically that was fed into a logical database and then you had a classical 1970s rule -based expert system telling you okay if you're in the middle lane and there's a bicyclist in the right lane who is signaling this then then then you do that right and what they found was that every day they'd go out and there'd be another situation that the rules didn't cover you know so they'd come to a traffic circle and and there's a little girl riding her bicycle the wrong way around the traffic circle.

[178] Okay, what do you do?

[179] We don't have a rule.

[180] Oh my God, okay, stop.

[181] And then they come back and add more rules.

[182] And they just found that this was not really converging.

[183] And if you think about it, right, how do you deal with an unexpected situation, meaning one that you've never previously encountered and the sort of the reasoning required to figure out the solution by that situation It has never been done.

[184] It doesn't match any previous situation in terms of the kind of reasoning you have to do.

[185] Well, in chess programs, this happens all the time.

[186] You're constantly coming up with situations you haven't seen before, and you have to reason about them, and you have to think about, okay, here are the possible things I could do, here are the outcomes, here's how desirable the outcomes are, and then pick the right one.

[187] In the 90s, we were saying, okay, this is how you're going to have to do automated vehicles.

[188] they're going to have to have a look -ahead capability.

[189] But the look -ahead for driving is more difficult than it is for chess.

[190] Because of humans.

[191] Right, there's humans and they're less predictable.

[192] And chess pieces.

[193] Well, then you have an opponent in chess who's also somewhat unpredictable.

[194] But, for example, in chess, you always know the opponent's intention.

[195] They're trying to beat you, right?

[196] Whereas in driving, you don't know, is this guy trying to turn left, or has he just forgotten to turn off his turn signal or is he drunk or is he, you know, changing the channel on his radio or whatever it might be, you've got to try and figure out the mental state, the intent of the other drivers to forecast the possible evolutions of their trajectories, and then you've got to figure out, okay, which is the trajectory for me that's going to be safest.

[197] And those all interact with each other because other drivers are going to react to your trajectory.

[198] and so on.

[199] So, you know, they've got the classic merging onto the freeway problem where you're kind of racing a vehicle that's already on the freeway and are you going to pull ahead of them or are you going to let them go first and pull in behind and you get this sort of uncertainty about who's going first.

[200] So all those kinds of things mean that you need a decision -making architecture that's very different from either a rule -based system or it seems to me a kind of an end -to -end neural network system.

[201] You know, so just as AlphaGo is pretty good when it doesn't do any look ahead, but it's way, way, way, way better when it does.

[202] I think the same is going to be true for driving.

[203] You can have a driving system that's pretty good when it doesn't do any look ahead, but that's not good enough.

[204] You know, and we've already seen multiple deaths caused by poorly design machine learning algorithms that don't really understand what they're doing.

[205] Yeah, on several levels, I think on the perception side, there's mistakes being made by those algorithms where the perception is very shallow, on the planning side to look ahead, like you said.

[206] And the thing that we come up against that's really interesting when you try to deploy systems in the real world is you can't think of an artificial intelligence system as a thing that responds to the world always you have to realize that it's an agent that others will respond to as well so in order to drive successfully you can't just try to do obstacle avoidance right you can't pretend that you're invisible right you're the invisible car right doesn't look that way i mean but you have to assert yet others have to be scared of you just we're also there's this tension there's this game so we study a lot of work with pedestrians, if you approach pedestrians as purely an obstacle avoid and so you're doing look ahead and modeling the intent, they're not going to, they're going to take advantage of you, they're not going to respect you at all.

[207] There has to be a tension, a fear, some amount of uncertainty.

[208] That's how we have created, we, or at least just of kind of a resoluteness.

[209] Right, yes, certain.

[210] You have to display a certain amount of resoluteness.

[211] You can't be too tentative.

[212] And, yeah, so the, right, the solutions then become pretty complicated, right?

[213] You get into game theoretic analyses.

[214] And so, you know, at Berkeley now, we're working a lot on this kind of interaction between machines and humans.

[215] And that's exciting, yep.

[216] And so my colleague, Anka Dragon, actually, you know, if you formulate the, problem game theoretically and you just let the system figure out the solution you know it does interesting unexpected things like sometimes at a stop sign if no one is going first right the car will actually back up a little right and just to indicate to the other cars that they should go and that's something it invented entirely by itself that's interesting right there was you know we didn't say this is the language of communication at stop signs it figured it out that's really everything.

[217] So let me one, just step back for a second, just this beautiful philosophical notion.

[218] So Pamela McCordock in 1979 wrote, AI began with the ancient wish to forge the gods.

[219] So when you think about the history of our civilization, do you think that there is an inherent desire to create, let's not say gods, but to create superintelligence?

[220] Is it in.

[221] inherent to us, is it in our genes, that the natural arc of human civilization is to create things that are of greater and greater power and perhaps echoes of ourselves.

[222] So to create the gods, as Pamela said.

[223] It may be.

[224] I mean, you know, we're all individuals, but certainly we see over and over again in history individuals who thought about this possibility hopefully when I'm not being too philosophical here but if you look at the arc of this you know where this is going and we'll talk about AI safety we'll talk about greater and greater intelligence do you see that they're in when you created the athello program and you felt this excitement what was that excitement was it excitement of a tinkerer who created something cool like a clock or was there a magic or was it more like a child being born yeah you know yeah so i mean i certainly understand that viewpoint and if you look at um the light hill report um which was so in the 70s there was a lot of controversy in the UK about AI and you know whether it was for real and how much the money money the government should invest and So it was a long story, but the government commissioned a report by Lighthill, who was a physicist, and he wrote a very damning report about AI, which I think was the point.

[225] And he said that these are frustrated men who unable to have children would like to create and, you know, create life.

[226] you know, as a kind of replacement, you know, which I think is really pretty unfair.

[227] But there is, I mean, there is a kind of magic, I would say, you, when you, you build something and what you're building in is really just, you're building in some understanding of the principles of learning and decision making.

[228] and to see those principles actually then turn into intelligent behavior in specific situations it's an incredible thing and you know that is naturally going to make you think okay where does this end and so there's a there's magical optimistic views of where it ends, whatever your view of optimism is, whatever your view of utopia is, it's probably different for everybody.

[229] But you've often talked about concerns you have of how things may go wrong.

[230] So I've talked to Max Tegmark.

[231] There's a lot of interesting ways to think about AI safety.

[232] You're one of the seminal people thinking about this problem.

[233] sort of being in the weeds of actually solving specific AI problems.

[234] You're also thinking about the big picture of where we're going.

[235] So can you talk about several elements of it?

[236] Let's just talk about maybe the control problem.

[237] So this idea of losing ability to control the behavior in our AI system.

[238] So how do you see that?

[239] How do you see that coming about?

[240] What do you think we can do to manage?

[241] manage it.

[242] Well, so it doesn't take a genius to realize that if you make something that's smarter than you, you might have a problem.

[243] You know, and Turing, Alan Turing, you know, wrote about this and gave lectures about this, you know, in, I think, 1951.

[244] He did a lecture on the radio.

[245] And he basically says, you know, once the machine thinking method starts, uh, very quickly, they'll outstrip humanity.

[246] And, you know, if we're lucky, we might be able to, I think he says, if we may be able to turn off the power at strategic moments, but even so our species would be humbled.

[247] And actually, I think he was wrong about that, right?

[248] You know, if it's a sufficiently intelligent machine, it's not going to let you switch it off.

[249] It's actually in competition with you.

[250] So what do you think is meant just for a quick tangent?

[251] if we shut off this super -intelligent machine, that our species would be humbled?

[252] I think he means that we would realize that we are inferior, right?

[253] That we only survive by the skin of our teeth because we happen to get to the off -switch.

[254] That was a close call.

[255] Just in time.

[256] And if we hadn't, then we would have lost control over the earth.

[257] So are you more worried when you think about this stuff about super intelligent AI or are you more worried about super powerful AI that's not aligned with our values?

[258] So the paperclip scenarios kind of...

[259] I think...

[260] So the main problem I'm working on is the control problem, the problem of machines pursuing objectives that are, as you say, not aligned with human objectives.

[261] And this has been this has been the way we've thought about AI since the beginning you build a machine for optimizing and then you put in some objective and it optimises right and you know we we can think of this as the the King Midas problem right?

[262] Because if you know if the King Midas put in this objective right everything I touch should turn to gold and the gods you know that's like the machine They said, okay, done.

[263] You know, you now have this power.

[264] And, of course, his food and his drink and his family all turned to gold.

[265] And then he dies of misery and starvation.

[266] And this is, you know, it's a warning.

[267] It's a failure mode that pretty much every culture in history has had some story along the same lines.

[268] You know, there's the genie that gives you three wishes.

[269] And, you know, third wish is always, you know, please undo the first two wishes because I messed up.

[270] And, you know, when Arthur Samuel wrote his chess, his checker playing program, which learned to play checkers considerably better than Arthur Samuel could play and actually reached a pretty decent standard, Norbert Weiner, who was one of the major mathematicians of the 20th century, he's sort of the father of modern automation control systems.

[271] You know, he saw this and he basically extrapolated, you know, as Turing did and said, okay, this is how we could lose control.

[272] And specifically that we have to be certain that the purpose we put into the machine is the purpose which we really desire.

[273] And the problem is we can't do that.

[274] Right.

[275] You mean we're not, it's very difficult to encode, to put our values on paper is really difficult, Or you're just saying it's impossible.

[276] The line is gray between the two.

[277] So theoretically it's possible, but in practice, it's extremely unlikely that we could specify correctly in advance the full range of concerns of humanity.

[278] You talked about cultural transmission of values, I think, is how humans -to -human transmission of values happens, right?

[279] Well, we learn, yeah, I mean, as we grow up, up, we learn about the values that matter how things, how things should go, what is reasonable to pursue and what isn't reasonable to pursue.

[280] I think machines can learn in the same kind of way?

[281] Yeah, so I think that what we need to do is to get away from this idea that you build an optimizing machine and then you put the objective into it because if it's possible that you might put in a wrong objective, and we already know this is possible because it's happened lots of times, right?

[282] That means that the machine should never take an objective that's given as gospel truth.

[283] Because once it takes the objective as gospel truth, right, then it believes that whatever actions it's taking in pursuit of that objective are the correct things to do.

[284] So you could be jumping up and down and saying, you know, no, no, no, you're going to destroy the world.

[285] But the machine knows what the true objective is and is pursuing it.

[286] And tough luck to you.

[287] And this is not restricted to AI, right?

[288] This is, you know, I think many of the 20th century technologies, right?

[289] So in statistics, you minimize a loss function.

[290] The loss function is exogenously specified.

[291] In control theory, you minimize a cost function.

[292] In operations research, you maximize a reward function and so on.

[293] So in all these disciplines, this is how we conceive of the problem.

[294] And And it's the wrong problem because we cannot specify with certainty the correct objective, right?

[295] We need uncertainty, we need the machine to be uncertain about what it is that it's supposed to be maximizing.

[296] Favorite idea of yours, I've heard you say somewhere, well, I shouldn't pick favorites, but it just sounds beautiful of we need to teach machines humility.

[297] It's a beautiful way to put it.

[298] I love it.

[299] That they're humble, in that they know that they don't know what it is they're supposed to be doing.

[300] And that those objectives, I mean, they exist.

[301] They're within us, but we may not be able to explicate them.

[302] We may not even know how we want our future to go.

[303] Exactly.

[304] And the machine, you know, a machine that's uncertain is, going to be deferential to us.

[305] So if we say don't do that, well, now the machines learn something a bit more about our true objectives because something that it thought was reasonable in pursuit of our objective.

[306] It turns out not to be, so now it's learned something.

[307] So it's going to defer because it wants to be doing what we really want.

[308] And, you know, that point I think is absolutely central to solving the control problem.

[309] And it's a different kind of AI, when you take away this idea that the objective is known, then in fact, a lot of the theoretical frameworks that we're so familiar with, you know, Markov decision processes, goal -based planning, you know, standard game research, all of these techniques actually become inapplicable.

[310] And you get a more complicated problem because, you know, because now the interaction with the human becomes part of the problem because the human by making choices is giving you more information about the true objective and that information helps you achieve the objective better.

[311] And so that really means that you're mostly dealing with game theoretic problems where you've got the machine and the human and they're coupled together rather than a machine going off by itself with a fixed objective.

[312] Which is fascinating on the machine and the human level that when you don't have an objective means you're together coming up with an objective.

[313] I mean, there's a lot of philosophy that, you know, you could argue that life doesn't really have meaning.

[314] We together agree on what gives it meaning and we kind of culturally create.

[315] things that give why the heck we are in this earth anyway we together as a society create that meaning and you have to learn that objective and one of the biggest I thought that's what you were going to go for a second one of the biggest troubles we run into outside of statistics and machine learning and AI in just human civilization is when you look at I came from I was born the Soviet Union and the history of the 20th century we ran into the most trouble us humans when there was a certainty about the objective and you do whatever it takes to achieve that objective whether you're talking about in Germany or communist Russia I'll get into trouble with you would say with you know corporations in fact some people argue that you know we don't have to look forward to a time when AI systems take over the world they already have and they call corporations right their corporations happen to be using people as components right now, but they are effectively algorithmic machines and they're optimizing an objective, which is quarterly profit that isn't aligned with overall well -being of the human race, and they are destroying the world.

[316] They are primarily responsible for our inability to tackle climate change.

[317] So I think that's one way of thinking about what's going on with with corporations.

[318] But I think the point you're making is valid that there are many systems in the real world where we've sort of prematurely fixed on the objective and then decoupled the machine from those that's supposed to be serving.

[319] And I think you see this with government.

[320] Right, government is supposed to be a machine that serves people.

[321] But instead, it tends to to be taken over by people who have their own objective and use government to optimize that objective regardless of what people want.

[322] Do you have, do you find appealing the idea of almost arguing machines where you have multiple AI systems with a clear fixed objective?

[323] We have in government, the red team and the blue team that are very fixed on their objectives and they argue and it kind of I may he would disagree but it kind of seems to make it work somewhat that the duality of it I know a lot of what was okay let's go a hundred years back when there was still was going on or at the founding of this country there was disagreements and that disagreement is where so it was a balance between certainty and forced humility because the power was distributed Yeah, I think that the nature of debate and disagreement argument takes as a premise the idea that you could be wrong, right?

[324] Which means that you're not necessarily absolutely convinced that your objective is the correct one, right?

[325] If you were absolutely, there would be no point in having any discussion or argument because you would never change your mind.

[326] mind, and there wouldn't be any sort of synthesis or anything like that.

[327] So I think you can think of argumentation as an implementation of a form of uncertain reasoning.

[328] And, you know, I've been reading recently about utilitarianism and the history of efforts to define in a sort of clear mathematical way, a, if you like, a formula for moral or political decision -making.

[329] And it's really interesting that the parallels between the philosophical discussions going back 200 years and what you see now in discussions about existential risk, because it's almost exactly the same.

[330] So someone would say, okay, well, here's a formula for how we should make decisions right so utilitarian is roughly you know each person has a utility function and then we make decisions to maximize the sum of everybody's utility right and then people point out well you know in that case the best policy is one that leads to the enormously vast population all of whom are living a life that's barely worth living right and this is called the repugnant conclusion And, you know, another version is, you know, that we should maximize pleasure, and that's what we mean by utility.

[331] And then you'll get people effectively saying, well, in that case, you know, we might as well just have everyone hooked up to a heroin drip, you know, and they didn't use those words.

[332] But that debate, you know, was happening in the 19th century as it is now about AI that if we get the formula wrong, you know, we're going to have AI systems.

[333] working towards an outcome that in retrospect would be exactly wrong.

[334] Do you think there's, it has beautifully put, the echoes are there, but do you think, I mean, if you look at Sam Harris, our imagination worries about the AI version of that because of the speed at which the things going wrong in the utilitarian context could happen.

[335] yeah is that is that a worry for you yeah i i think that you know in most cases not in all but you know if we if we have a wrong political idea you know we see it starting to go wrong and we're you know we're not completely stupid and so we said okay that was maybe that was a mistake uh let's try something different and and also we're very slow and inefficient about implementing these things and so on so you have to worry when you have to worry when you have corporations or political systems that are extremely efficient.

[336] But when we look at AI systems, or even just computers in general, right, they have this different characteristic from ordinary human activity in the past.

[337] So let's say you were a surgeon, you had some idea about how to do some operation, right?

[338] Well, and let's say you were wrong, right, that that way of doing the operation would mostly kill the patient.

[339] Well, you'd find out pretty quickly, like after three, maybe three or four tries, right?

[340] But that isn't true for pharmaceutical companies because they don't do three or four operations.

[341] They manufacture three or four billion pills and they sell them.

[342] And then they find out maybe six months or a year later that, oh, people are dying of heart attacks or getting cancer from this drug.

[343] And so that's why we have the FDA, right?

[344] Because of the scalability of pharmaceutical production.

[345] And there have been some unbelievably bad episodes in the history of pharmaceuticals and adulteration of products and so on that have killed tens of thousands or paralyzed hundreds of thousands of people.

[346] Now, with computers, we have that same scalability problem, that you can sit there on type for i equals one to five billion do right and all of a sudden you're having a impact on a global scale and yet we have no fda right there's absolutely no controls at all over what a bunch of undergraduates with too much caffeine can do to the world and uh you know we look at what happened with facebook well social media in general and click through optimization so you have a simple feedback algorithm that's trying to just optimize click through right that sounds reasonable right because you don't want to be feeding people ads that they don't care about and not interested in and you might even think of that process as simply adjusting the the feeding of ads or news articles or whatever it might be to match people's preferences, right?

[347] Which sounds like a good idea.

[348] But in fact, that isn't how the algorithm works, right?

[349] You make more money, the algorithm makes more money if it can better predict what people are going to click on because then it can feed them exactly that.

[350] Right.

[351] So the way to maximize click through is actually to modify the people.

[352] to make them more predictable and one way to do that is to feed them information which will change their behavior and preferences towards extremes that make them predictable whatever is the nearest extreme or the nearest predictable point that's where you're going to end up and the machines will force you there now and I think there's a reasonable argument to say that this among other things is contributing to the destruction of democracy in the world.

[353] And where was the oversight of this process?

[354] Where were the people saying, okay, you would like to apply this algorithm to five billion people on the face of the earth?

[355] Can you show me that it's safe?

[356] Can you show me that it won't have various kinds of negative effects?

[357] No, there was no one asking that question.

[358] There was no one placed between, you know, the undergrads with too much caffeine and the human race.

[359] Well, it's just, they just did it.

[360] And, but some way outside the scope of my knowledge, so economists would argue that the, what is it, the invisible hand, so the capitalist system, it was the oversight.

[361] So if you're going to corrupt society with whatever decision you make as a company, then that's going to be reflected in people not using your product.

[362] Sort of one, that's one model of oversight.

[363] We shall see, but, In the meantime, you know, but you might even have broken the political system that enables capitalism to function.

[364] Well, you've changed it.

[365] We should see.

[366] Change is often painful.

[367] So my question is absolutely, it's fascinating.

[368] You're absolutely right that there's zero oversight on algorithms that can have a profound civilization changing effect.

[369] So do you think it's possible?

[370] I mean, I haven't, have you seen government?

[371] So do you think it's possible to create regulatory bodies oversight over AI algorithms, which are inherently such cutting edge set of ideas and technologies?

[372] Yeah, but I think it takes time to figure out what kind of oversight, what kinds of controls.

[373] I mean, it took time to design the FDA regime.

[374] And some people still don't like it and they want to fix it.

[375] And I think there are clear ways that it could be improved.

[376] But the whole notion that you have stage one, stage two, stage three, and here are the criteria for what you have to do to pass a stage one trial, right?

[377] We haven't even thought about what those would be for algorithms.

[378] So, I mean, I think there are things we could do right now with regard to bias, for example, We have a pretty good technical handle on how to detect algorithms that are propagating bias that exists in datasets, how to de -bias those algorithms, and even what it's going to cost you to do that.

[379] So I think we could start having some standards on that.

[380] I think there are things to do with impersonation and falsification that we could work on.

[381] It fakes, yeah.

[382] A very simple point.

[383] So impersonationism is a machine acting as if it was a person.

[384] I can't see a real justification for why we shouldn't insist that machines self -identify as machines.

[385] You know, where is the social benefit in fooling people into thinking that this is really a person when it isn't?

[386] you know I don't mind if it uses a human -like voice that's easy to understand that's fine but it should just say I'm a machine in some form and now many people are speaking to that I would think relatively obvious facts so I think most people agree with it.

[387] Yeah I mean there is actually a law in California that bans impersonation but only in certain restricted circumstances so for the purpose of engaging in a fraudulent transaction and for the purpose of modifying someone's voting behavior.

[388] So those are those are the circumstances where machines have to self -identify.

[389] But I think there's, you know, arguably it should be in all circumstances.

[390] And then when you talk about deep fakes, you know, we're just at the beginning, but already it's possible to make a movie of anybody saying anything in ways.

[391] that are pretty hard to detect.

[392] Including yourself because you're on camera now and your voice is coming through with high resolution.

[393] Yeah, so you could take what I'm saying and replace it with pretty much anything else you wanted me to be saying.

[394] And even it would change my lips and facial expressions to fit.

[395] And there's actually not much in the way of real legal protection against that.

[396] I think in the commercial area, you could say, yeah, that's, you're using my brain.

[397] and so on.

[398] There are rules about that.

[399] But in the political sphere, I think at the moment, it's, you know, anything goes.

[400] So that could be really, really damaging.

[401] And let me just try to make, not an argument, but try to look back at history and say something dark, in essence, is while regulation seems to be, oversight seems to be exactly the right thing to do here, It seems that human beings, what they naturally do is they wait for something to go wrong.

[402] If you're talking about nuclear weapons, you can't talk about nuclear weapons being dangerous until somebody actually, like the United States drops the bomb, or Chernobyl melting.

[403] Do you think we will have to wait for things going wrong in a way that's obviously damaging to society?

[404] Not an existential risk, but obviously damaging.

[405] Or do you have faith that?

[406] I hope not, but I mean, I think we do have to look at history.

[407] And, you know, so the two examples you gave, nuclear weapons and nuclear power are very, very interesting because, you know, in nuclear weapons, we knew in the early years of the 20th century that atoms contained a huge amount of energy, right?

[408] We had E equals MC squared.

[409] We knew the mass differences between the different atoms.

[410] and their components, and we knew that you might be able to make an incredibly powerful explosive.

[411] So H .G. Wells wrote science fiction book, I think, in 1912.

[412] Frederick Soddy, who was the guy who discovered isotopes, is a Nobel Prize winner.

[413] He gave a speech in 1915 saying that, you know, one pound of this new explosive would be the equivalent of 150 tons of dynamite, which turns out to be about right.

[414] And, you know, this was in World War I, right?

[415] So he was imagining how much worse the world war would be if we were using that kind of explosive.

[416] But the physics establishment simply refused to believe that these things could be made.

[417] Including the people who were making it.

[418] Well, so they were doing the nuclear physics.

[419] I mean, eventually were the ones who made it.

[420] You talk about for me or whoever.

[421] Well, so up to the development was mostly theoretical, so it was people using sort of primitive kinds of particle acceleration and doing experiments at the level of single particles or collections of particles.

[422] They weren't yet thinking about how to actually make a bomb or anything like that.

[423] But they knew the energy was there and they figured if they understood it better, it might be possible.

[424] but the physics establishment, their view, and I think because they did not want it to be true, their view was that it could not be true, that this could not provide a way to make a super weapon.

[425] And, you know, there was this famous speech given by Rutherford, who was the sort of leader of nuclear physics, and it was on September 11th, 1933, and he said, you know, anyone who talks, about the possibility of obtaining energy from transformation of atoms is talking complete moonshine.

[426] And the next morning, Leo Zillard read about that speech and then invented the nuclear chain reaction.

[427] And so as soon as he invented, as soon as he had that idea, that you could make a chain reaction with neutrons because neutrons were not repelled by the nucleus so they could enter the nucleus and then continue the reaction.

[428] As soon as he has that idea, he instantly realized that the world was in deep doo -doo.

[429] Because this is 1933, right?

[430] Hitler had recently come to power in Germany.

[431] Zillard was in London.

[432] It eventually became a refugee and came to the U .S. And in the process of having the idea about the chain reaction, he figured out basically how to make a bomb and also how to make a reactor.

[433] And he patented the reactor in 1934, but because of the situation, the great power conflict situation that he could see happening, he kept that a secret.

[434] And so between then and the beginning of World War II, people were working, including the German, on how to actually create neutron sources, right?

[435] What specific fission reactions would produce neutrons of the right energy to continue the reaction?

[436] And that was demonstrated in Germany, I think, in 1938, if I remember correctly.

[437] The first nuclear weapon patent was 1939 by the French.

[438] So this was actually...

[439] You know, this was actually going on, you know, well before World War II really got going.

[440] And then, you know, the British probably had the most advanced capability in this area.

[441] But for safety reasons, among others, and blessed, sort of just resources, they moved the program from Britain to the U .S. And then that became Manhattan Project.

[442] So the reason why we couldn't have any kind of oversight.

[443] of nuclear weapons and nuclear technology was because we were basically already in an arms race and a war.

[444] But you mentioned then in the 20s and 30s.

[445] So what are the echoes?

[446] The way you've described this story, I mean, there's clearly echoes.

[447] Why do you think most AI researchers, folks who are really close to the metal, they really are not concerned about AI, they don't think about it whether they don't want to think about it it's but what are the yeah why do you think that is what are the echoes of the nuclear situation to the current air situation and what can we do about it i think there is a you know a kind of motivated cognition which is a a term in psychology means that you believe what you would like to be true rather than what is true And, you know, it's unsettling to think that what you're working on might be the end of the human race, obviously.

[448] So you would rather instantly deny it and come up with some reason why it couldn't be true.

[449] And, you know, I have, I collected a long list of regions that extremely intelligent, competent AI scientists have come up with for why we shouldn't worry about this.

[450] You know, for example, calculators are superhuman at arithmetic, and they haven't taken over the world, so there's nothing to worry about.

[451] Well, okay, my five -year -old could have figured out why that was an unreasonable and really quite weak argument.

[452] You know, another one was, you know, while it's theoretically possible that you could have superhuman AI, destroy the world.

[453] You know, it's also theoretically possible that a black hole could materialize right next to the earth and destroy humanity.

[454] I mean, yes, it's theoretically possible, quantum theoretically, extremely unlikely that it would just materialize right there.

[455] But that's a completely bogus analogy because, you know, if the whole physics community on earth was working to materialize a black hole in near -Earth orbit, right?

[456] Wouldn't you ask them, is that a good idea?

[457] Is that going to be safe?

[458] You know, what if you succeed?

[459] Right.

[460] Right.

[461] And that's the thing, right?

[462] The AI community is sort of refused to ask itself, what if you succeed?

[463] And initially, I think that was because it was too hard, but, you know, Alan Turing asked himself that.

[464] And he said, we'd be toast.

[465] Right?

[466] If we were lucky, we might be able to switch off the power, but probably we'd be toast.

[467] But there's also an aspect.

[468] that because we're not exactly sure what the future holds, it's not clear exactly so technically what to worry about, sort of how things go wrong.

[469] And so there is something, it feels like, maybe you can correct me if I'm wrong, but there's something paralyzing about worrying about something that logically is inevitable, but you don't really know what that will look like.

[470] Yeah, I think that's, That's, it's a reasonable point.

[471] And, you know, the, you know, it's certainly, in terms of existential risks, it's different from, you know, the asteroid collides with the Earth.

[472] Right.

[473] Right.

[474] Which, again, is quite possible.

[475] You know, it's happened in the past.

[476] It'll probably happen again.

[477] We don't, right, we don't know right now.

[478] But if we did detect an asteroid that was going to hit the Earth in 75 years' time, we'd certainly be doing something about it.

[479] Well, it's clear there's got big rock.

[480] and we'll probably have a meeting and see what do we do about the big rock with AI right with AI I mean there are very few people who think it's not going to happen within the next 75 years I know Rod Brooks doesn't think it's going to happen maybe Andrew Ng doesn't think it's happened but you know a lot of the people who work day to day you know as you say at the rock face they think it's going to happen I think the median estimate from AI researchers is somewhere in 40 to 50 years from now or maybe you know i think in Asia they think it's going to be even faster than that i am i'm a little bit more conservative i think it probably take longer than that but i think you know as happen with nuclear weapons it can happen overnight that you have these breakthroughs and we need more than one breakthrough but you know it's on the order of half a dozen i mean this is a very rough scale, but sort of half a dozen breakthroughs of that nature would have to happen for us to reach the superhuman AI.

[481] But the, you know, the AI research community is vast now.

[482] The massive investments from governments, from corporations, tons of really, really smart people.

[483] You know, you just have to look at the rate of progress in different areas of AI to see that things are moving pretty fast.

[484] So to say, oh, it's just going to be thousands of years, I don't see any basis for that.

[485] You know, I see, you know, for example, the Stanford 100 -year AI project, right, which is supposed to be sort of, you know, the serious establishment view, their most recent report actually said it's probably not even possible.

[486] Oh, wow.

[487] Right?

[488] Which if you want a perfect example of people in denial, that's it.

[489] Because, you know, for the whole history of AI, we've been saying to philosophers who said it wasn't possible, well, you've no idea what you're talking about.

[490] Of course it's possible.

[491] Right.

[492] Give me an argument for why it couldn't happen.

[493] And there isn't one.

[494] Right.

[495] And now, because people are worried that maybe AI might get a bad name or I just don't want to think about this.

[496] they're saying, okay, well, of course, it's not really possible, you know.

[497] And we imagine, right, imagine if, you know, the leaders of the cancer biology community got up and said, well, you know, of course, curing cancer, it's not really possible.

[498] They'd be a complete outrage and dismay and, you know, I find this really a strange phenomenon.

[499] So, okay, so if you accept it as possible, and if you accept, that it's probably going to happen.

[500] The point that you're making that, you know, how does it go wrong, a valid question without that, without an answer to that question, then you're stuck with what I call the guerrilla problem, which is, you know, the problem that the guerrillas face, right?

[501] They made something more intelligent than them, namely us, a few million years ago, and now they're in deep dutu.

[502] So there's really nothing they can do.

[503] they've lost the control.

[504] They failed to solve the control problem of controlling humans, and so they've lost.

[505] So we don't want to be in that situation.

[506] And if the guerrilla problem is the only formulation you have, there's not a lot you can do, right?

[507] Other than to say, okay, we should try to stop.

[508] You know, we should just not make the humans or in this case, not make the AI.

[509] And I think that's really hard to do to, uh, And I'm not actually proposing that that's a feasible course of action.

[510] And I also think that, you know, if properly controlled AI, could be incredibly beneficial.

[511] So the, but it seems to me that there's a, there's a consensus that one of the major failure modes is this loss of control, that we create AI systems that are pursuing incorrect objectives.

[512] and because the AI system believes it knows what the objective is, it has no incentive to listen to us anymore, so to speak, right?

[513] It's just carrying out the strategy that it has computed as being the optimal solution.

[514] And, you know, it may be that in the process, it needs to acquire more resources to increase the possibility of success, or prevent various failure modes by defending itself against interference.

[515] And so that collection of problems, I think, is something we can address.

[516] Yes.

[517] The other problems are, roughly speaking, you know, misuse.

[518] So even if we solve the control problem, we make perfectly safe controllable AI systems.

[519] Well, why, you know, why does Dr. Evil going to use those, right?

[520] he wants to just take over the world and he'll make unsafe AI systems that then get out of control.

[521] So that's one problem which is sort of a, you know, partly a policing problem, partly a sort of cultural problem for the profession of how we teach people, what kinds of AI systems are safe.

[522] You talk about a autonomous weapon system and how pretty much everybody agrees.

[523] There's too many ways that that can go horribly wrong.

[524] You have this great SlaughterBots movie that kind of illustrates that beautifully.

[525] Well, I want to talk about, that's another, there's another topic I'm happy to talk about.

[526] I just want to mention what I see is the third major failure mode, which is overuse, not so much misuse, but overuse of AI.

[527] That we become overly dependent.

[528] So I call this the Wally Problems.

[529] So if you've seen Wally, the movie, all the humans are on the spaceship and the machines look after, everything for them and they just watch TV and drink big gulps and they're all sort of obese and stupid and they sort of totally lost any notion of human autonomy and um you know so in effect right this would happen like the slow boiling frog right we would gradually turn over more more of the management of our civilization to machines as we are already doing and this you know this if this process continues, you know, we sort of gradually switch from sort of being the masters of technology to just being the guests, right?

[530] So we become guests on a cruise ship, you know, which is fine for a week, but not for the rest of eternity.

[531] Right.

[532] You know, and it's almost irreversible, right?

[533] Once you you lose the incentive to, for example, you know, learn to be an engineer or a doctor or a sanitation operative or any other of the infinitely many ways that we maintain and propagate our civilization.

[534] You know, if you don't have the incentive to do any of that, you won't.

[535] And then it's really hard to recover.

[536] And of course, yeah, just one of the technologies that could that third failure mode result in that.

[537] there's probably other technology in general detaches us from...

[538] It does a bit, but the difference is that in terms of the knowledge to run our civilization, you know, up to now we've had no alternative but to put it into people's heads.

[539] Right, right, and if you...

[540] But with software, with Google, I mean, so software in general, so AI broadly defined.

[541] Computers in general, but the, you know, the knowledge of how, you know, how a sanitation system works, Because, you know, that's an AI has to understand that.

[542] It's no good putting it into Google.

[543] So, I mean, we've always put knowledge on paper, but paper doesn't run our civilization.

[544] It only runs when it goes from the paper into people's heads again.

[545] Right.

[546] So we've always propagated civilization through human minds.

[547] And we've spent about a trillion person years doing that.

[548] Literally, right?

[549] You can work it out.

[550] It's about, right, there's about just over 100 billion people who've ever lived.

[551] And each of them has spent about 10 years learning stuff to keep their civilization going.

[552] And so that's a trillion person years we put into this effort.

[553] A beautiful way to describe all of civilization.

[554] And now we're in danger of throwing that away.

[555] So this is a problem that AI can't solve.

[556] It's not a technical problem.

[557] It's, you know, and if we do our job right, the AI systems will say, you know, the human race doesn't in the long run want to be passengers in a cruise ship.

[558] the human race wants autonomy this is part of human preferences so we the AI systems are not going to do this stuff for you you've got to do it for yourself right I'm not going to carry you to the top of Everest in an autonomous helicopter you have to climb it if you want to get the benefit and so on so but I'm afraid that because we are short -sighted and lazy we're going to override the AI systems and and there's an amazing short story that I recommend to everyone that I talk to about this called The Machine Stops, written in 1909 by E .M. Foster, who wrote novels about the British Empire and sort of things that became costume dramas on the BBC, but he wrote this one science fiction story, which is an amazing vision of the future.

[559] It has basically iPads, it has video conferencing, it has MOOCs.

[560] It has computer -induced obesity.

[561] I mean, literally, it's what people spend their time doing is giving online courses or listening to online courses and talking about ideas, but they never get out there in the real world.

[562] They don't really have a lot of face -to -face contact.

[563] Everything is done online.

[564] So all the things we're worrying about now were described in the story and then the human race becomes more and more dependent on the machine loses knowledge of how things really run and then becomes vulnerable to collapse and so it's a it's a pretty unbelievably amazing story for someone writing in 1909 to imagine all this so there's very few people that represent artificial intelligence more than you Sue Russell if you say it's okay that's very kind.

[565] So it's all my fault.

[566] It's all your fault.

[567] No, right.

[568] You're often brought up as the person, well, Stuart Russell, like the AI person is worried about this.

[569] That's why you should be worried about it.

[570] Do you feel the burden of that?

[571] I don't know if you feel that at all.

[572] But when I talk to people, like from, you talk about people outside of computer science when they think about this.

[573] Steele Russell is worried about AI safety, you should be worried to.

[574] Do you feel the burden of that?

[575] I mean, in a practical sense, yeah, because I get a dozen, sometimes 25 invitations a day to talk about it, to give interviews, to write press articles, and so on.

[576] So in that very practical sense, I'm seeing that people are concerned and really interesting.

[577] about this.

[578] Are you worried that you could be wrong, as all good scientists are?

[579] Of course.

[580] I worry about that all the time.

[581] I mean, that's always been the way that I've worked, you know, is like I have an argument in my head with myself, right?

[582] So I have some idea, and then I think, okay, how could that be wrong?

[583] Or did someone else already have that idea?

[584] So I'll go and, you know, search in as much literature as I can to see whether someone else already thought of that or even refuted it.

[585] So, you know, right now I'm reading a lot of philosophy because, you know, in the form of the debates over utilitarianism and other kinds of moral formulas, shall we say, people have already thought through some of these issues.

[586] But, you know, one of the things I'm not.

[587] seeing in a lot of these debates is this specific idea about the importance of uncertainty in the objective that this is the way we should think about machines that are beneficial to humans.

[588] So this idea of provably beneficial machines based on explicit uncertainty in the objective, you know, it seems to be, you know, my gut feeling is this is the core of it's going to have to be elaborated in a lot of different directions and there are a lot of beneficial yeah but there there i mean it has to be right we can't afford you know hand wavy beneficial yeah uh because there are you know whenever we do hand wavy stuff there are loopholes and the thing about super intelligent machines is they find the loopholes you know just like you know tax evaders uh if you don't write your tax law properly that people will find the loopholes and end up paying no tax.

[589] And so you should think of it this way.

[590] And getting those definitions right, you know, it is really a long process.

[591] You know, so you can define mathematical frameworks and within that framework you can prove mathematical theorems that, yes, this theoretical entity will be provably beneficial to that theoretical entity.

[592] But that framework, may not match the real world in some crucial way.

[593] So the long process of thinking through it, the iterating and so on.

[594] Last question.

[595] You have 10 seconds to answer it.

[596] What is your favorite sci -fi movie about AI?

[597] I would say interstellar has my favorite robots.

[598] Oh, beats Space Odyssey.

[599] Yeah, yeah, yeah.

[600] So Tars, the robots, one of the robots in Interstellar is the way robots should behave.

[601] And I would say ex machina is in some ways the one that makes you think in a nervous kind of way about where we're going.

[602] Well, Stuart, thank you so much for talking today.

[603] Pleasure.