Toy model of the AI control problem: animated version

https://www.lesswrong.com/posts/EdEhGPEJi6dueQXv2/toy-model-of-the-ai-control-problem-animated-version

A few years back, I came up with a toy model of the AI control problem. It has a robot moving boxes into a hole, with a slightly different goal than it’s human designers, and a security camera to check that it’s behaving as it should. The robot learns to block the camera to get its highest reward. I’ve been told that the model is useful for explaining the control problem quite a few people, and I’ve always wanted to program the "robot" and get an animated version of it. Gwern had a live demo, but it didn’t illustrate all the things I wanted to. So I programmed the toy problem in python, and generated a video with commentary. In this simplified version, the state space is sufficiently small that you can explicitly generate the whole table of Q-values (expected reward for taking an action in a certain state, assuming otherwise optimal policy). Since behaviour is deterministic, this can be updated in dynamical programming, using a full width backup. The number of such backups essentially measures the depth of the robot’s predictive ability. The most interesting depths of planning are:

Comment

https://www.lesswrong.com/posts/EdEhGPEJi6dueQXv2/toy-model-of-the-ai-control-problem-animated-version?commentId=nqomMqcPHYLGEiRhH

Nice post! I’d like to put a copy of the code on Github, but I don’t see a license anywhere in the directory (or mentioned in the files). May I assume it’s generally intended to be Open Source and I can do this?

Comment

https://www.lesswrong.com/posts/EdEhGPEJi6dueQXv2/toy-model-of-the-ai-control-problem-animated-version?commentId=armpjYjvHYNTFSGcj

yes, go ahead!

Comment

Thanks! It’s up.

Comment

Cheers! I’ve added the text of the "unlicence" https://​​choosealicense.com/​​licenses/​​unlicense/​​ to the script file "toyscript.txt". Can you update the file on github? (I notice you renamed the script file; that’s fine).

Comment

Sorry I’m two weeks late, but the text of the unlicense has been added. Thank you!

You should provide some more explicit license, if you don’t want to risk headaches for others later. "yes [It’s generally intended to be Open Source]" may be enough reassurance to copy the code once, but "yes, you can have it under the new BSD (or LGPL2.1+, or whatever) license" would be useful to have in writing in the repository in case others want to create derived works down the road. Thanks very much for creating this!

Comment

Added the text of the "unlicence" https://​​choosealicense.com/​​licenses/​​unlicense/​​ to the script file "toyscript.txt".

https://www.lesswrong.com/posts/EdEhGPEJi6dueQXv2/toy-model-of-the-ai-control-problem-animated-version?commentId=BBGR8tX3EHKR6gMpe

I hadn’t seen this on the original LW. This was really fascinating to follow! Thanks for making it in video form and with a clear explanation!