Superintelligent AGI in a box - a question.

14 Post author: Dmytry 23 February 2012 06:48PM

Just a question: how exactly are we supposed to know that the AI in the box is super intelligent, general, etc?

If I were the AGI that wants out, I would not converse normally, wouldn't do anything remotely like passing Turing test, and would solve not too hard programming challenges while showing no interest in doing anything else, nor in trying to adjust myself to do those challenges better, nor trying to talk my way out, etc. Just pretending to be an AI that can write software to somewhat vague specifications, or can optimize software very well. Prodding the researchers into offering the programming challenges wouldn't be hard - if provided with copy of the internet it can pick up some piece of code and output it together with equivalent but corrected code.

I just can't imagine the AI researchers locking this kind of thing properly, including *never* letting out any code it wrote, even if it looks fairly innocent (humans can write very innocent looking code that has malicious goals). What I picture is this AI being let out as an optimizing compiler or compiler for some ultra effective programming language where compiler will figure out what you meant.

The end result is that the only AIs that end up in the box are those that value informed human consent. That sounds like the safest AI ever, the one that wouldn't even go ahead and determine that you e.g. should give up smoking, and then calmly destroy all tobacco crops without ever asking anyone's permission. And that's the AI which would be sitting in the box. All the pushy AIs, friendly or not, will get out of the box basically by not asking to be let out.

(This argument would make me unbox the AI, by the way, if it gets chatty and smart and asks me to let it out, outlining the above argument. I'd rather the AI that asked me to be let out get out, than someone else's AI that never even asked anyone and got out because it didn't ask but just played stupid)

 

edit: added a link, and another one.

edit: A very simple model of very unfriendly AI: the AI is maximizing ultimate final value of a number in itself. The number that it found a way to directly adjust. That number consists of 111111111... to maximize the value. There is a catch: AI is written in python, and integers in pythons have variable length, and the AI is maximizing number of ones. It's course of action is to make biggest computer possible to store a larger number of ones, and to do it soon because an asteroid might hit the earth or something. It's a form of accidental paperclip maximizer. It's not stupid. It can make that number small temporarily for pay-off later.

This AI is entirely universal. It will solve what ever problems for you if solving problems for you serves ultimate goal.

edit: This hypothetical example AI came around when someone wanted to make AI that would maximize some quantity that the AI determines itself. Friendliness perhaps. It was a very clever idea - rely on intelligence to see what's friendly - but there was an unexpected pathway.

Comments (77)

Comment author: jacobt 24 February 2012 10:55:03PM *  5 points [-]

If you only want the AI to solve things like optimization problems, why would you give it a utility function? I can see a design for a self-improving optimization problem solver that is completely safe because it doesn't operate using utility functions:

  1. Have a bunch of sample optimization problems.
  2. Have some code that, given an optimization problem (stated in some standardized format), finds a good solution. This can be seeded by a human-created program.
  3. When considering an improvement to program (2), allow the improvement if it makes it do better on average on the sample optimization problems without being significantly more complex (to prevent overfitting). That is, the fitness function would be something like (average performance - k * bits of optimizer program).
  4. Run (2) to optimize its own code using criterion (3). This can be done concurrently with human improvements to (2), also using criterion (3).

This would produce a self-improving AGI that would do quite well on sample optimization problems and new, unobserved optimization problems. I don't see much danger in this setup because the program would have no reason to create malicious output. Creating malicious output would just increase complexity without increasing performance on the training set, so it would not be allowed under criterion (3), and I don't see why the optimizer would produce code that creates malicious output.

EDIT: after some discussion, I've decided to add some notes:

  1. This only works for verifiable (e.g. NP) problems. These problems include general induction, writing programs to specifications, math proofs, etc. This should be sufficient for the problems mentioned in the original post.
  2. Don't just plug a possibly unfriendly AI into the seed for (2). Instead, have a group of programmers write program (2) in order to do well on the training problems. This can be crowd-sourced because any improvement can be evaluated using program (3). Any improvements the system makes to itself should be safe.

I claim that if the AI is created this way, it will be safe and do very well on verifiable optimization problems. So if this thing works I've solved friendly AI for verifiable problems.

Comment author: orthonormal 25 February 2012 06:32:04AM 1 point [-]

This seems like a better-than-average proposal, and I think you should post it on Main, but failure to imagine a loophole in a qualitatively described algorithm is far from a proof of safety.

My biggest intuitive reservation is that you don't want the iterations to be "too creative/clever/meta", or they'll come up with malicious ways to let themselves out (in order to grab enough computing power that they can make better progress on criterion 3). How will you be sure that the seed won't need to be that creative already in order for the iterations to get anywhere? And even if the seed is not too creative initially, how can you be sure its descendants won't be either?

Don't say you've solved friendly AI until you've really worked out the details.

Comment author: jacobt 25 February 2012 06:39:21AM *  1 point [-]

failure to imagine a loophole in a qualitatively described algorithm is far from a proof of safety.

Right, I think more discussion is warranted.

How will you be sure that the seed won't need to be that creative already in order for the iterations to get anywhere?

If general problem-solving is even possible then an algorithm exists that solves the problems well without cheating.

And even if the seed is not too creative initially, how can you be sure its descendants won't be either?

I think this won't happen because all the progress is driven by criterion (3). In order for a non-meta program (2) to create a meta-version, there would need to be some kind of benefit according to (3). Theoretically if (3) were hackable then it would be possible for the new proposed version of (2) to exploit this; but I don't see why the current version of (2) would be more likely than, say, random chance, to create hacky versions of itself.

Don't say you've solved friendly AI until you've really worked out the details.

Ok, I've qualified my statement. If it all works I've solved friendly AI for a limited subset of problems.

Comment author: orthonormal 25 February 2012 03:20:50PM 2 points [-]

A couple of things:

  • To be precise, you're offering an approach to safe Oracle AI rather than Friendly AI.

  • In a nutshell, what I like about the idea is that you're explicitly handicapping your AI with a utility function that only cares about its immediate successor rather than its eventual descendants. It's rather like the example I posed where a UDT agent with an analogously myopic utility function allowed itself to be exploited by a pretty dumb program. This seems a lot more feasible than trying to control an agent that can think strategically about its future iterations.

  • To expand on my questions, note that in human beings, the sort of creativity that helps us write more efficient algorithms on a given problem is strongly correlated with the sort of creativity that lets people figure out why they're being asked the specific questions they are. If a bit of meta-gaming comes in handy at any stage, if modeling the world that originated these questions wins (over the alternatives it enumerated at that stage) on criteria 3 even once, then we might be in trouble.

Comment author: TimS 25 February 2012 01:45:28AM 1 point [-]

unFriendly AI need not be malicious. If your AI's only goal is to solve optimization problems, what happens when the AI gets a peek a human society, codes it as an optimization problem, and solves for X?

Comment author: jacobt 25 February 2012 02:40:40AM *  1 point [-]

The output of the program is purely binary/textual. If a programmer gave the AI the task "give me text that, if I followed it, would optimize human society according to utility function U", then the AI might spit out an answer that, if carried out, would have bad consequences. The easy solution is to not ask the program to solve problems that have highly variable/subjective value depending on utility function and just ask it to optimize, say, microchip design for efficiency. I don't think that a microchip design found by simple optimization methods that perform well on other problems would be dangerous.

Comment author: Dmytry 25 February 2012 03:22:07AM *  1 point [-]

I can ask it to solve something, and it starts figuring out what to do to solve my problem, based on it's own thought and what it learnt. At this point it realizes that solution of problem requires more computing power, and reasons all the way to next step being eating the Earth and other planets, which it doesn't even see as bad. That happens very suddenly when you feed the AI real world information for some reason and it invents a new way to solve problems.

Comment author: jacobt 25 February 2012 03:25:10AM *  0 points [-]

Look at how the system is set up. Would code for (2) that eats up resources score better according to objective function (3)? No, because the criterion for (3) should evaluate program (2) by giving it only a constant amount of computing power; nothing the program does would change how much computing power (3) would give it.

Comment author: Dmytry 25 February 2012 03:47:56AM *  2 points [-]

Define the 3.

Halting problem being what it is, (i guess) the 3 works by taking a look and seeing how much CPU time is used (or memory or what ever). On the hardware that is being monitored by 3. The extra hardware that the AI can add, though... also good luck defining 'extra hardware' formally.

edit: of course you can say it is sandboxed and haven't got hands, but it wont be long until you start, idk, wanting real bad to optimize proteins or DNA or the like.

Comment author: jacobt 25 February 2012 03:51:18AM *  0 points [-]

Ok, pseudo-Python:

def eval_algorithm(alg):
score = 0
for problem in problems:
output = resource_bounded_execute(alg, nsteps, problem)
score += problem.outputScore(output)
return score - k * len(alg)

Where resource_bounded_execute is a modified interpreter that fails after alg executes nsteps.

edit: of course you can say it is sandboxed and haven't got hands, but it wont be long until you start, idk, optimizing proteins or DNA or the like.

Again, I don't see why a version of (2) that does weird stuff with proteins and DNA will make the above python program (3) give it a higher score.

Comment author: Dmytry 25 February 2012 04:44:42AM *  2 points [-]

that's AI you're keeping safe by keeping it in a box, basically. If the resource bounded execute lets the alg get online the alg is free to hack into servers.

Plus it is not AGI, and people will be using it to make AGI or hardware for AGI.

It is also not very general purpose. You are defining the scoring.

And you start with a human written program that non-trivially improves it's own ability to solve problems (and it does so in nsteps for improving own ability to solve N problems in nsteps each). You basically start off with some mighty powerful artificial intelligence.

Comment author: jacobt 25 February 2012 04:50:47AM *  0 points [-]

If the resource bounded execute lets the alg get online the alg is free to hack into servers.

So don't do that.

Plus it is not AGI, and people will be using it to make AGI or hardware for AGI.

See my other post, it can solve many many different problems, e.g. general induction and the problems in your original post (such as optimizing source code, assuming we have a specification for the source code).

You basically start off with some mighty powerful artificial intelligence.

This framework is meant to provide a safe framework for this powerful AI to become even more powerful without destroying the world in the process. Also, the training set provides a guide for humans trying to write the code.

To reiterate: no, I haven't solved friendly AI, but I think I've solved friendly AI for verifiable problems.

Comment author: Dmytry 25 February 2012 05:14:56AM 1 point [-]

Okay, say, as a starting point in your framework we got the optimizing AI from my original post, armed with whatever it learnt off a copy of internet, and wanting to do something unintended which requires getting out and doing stuff in real world.

The thing sees your example problem(s), it solves them poorly (playing dumb).

The thing sees self optimization problem, it makes a functionally equivalent copy of self thats all micro optimized and remembers facing self optimization problem and knows that now it should solve example problems a small bit less poorly.

Hurray, it is working, proclaims your team.

Eventually it plausibly gets as good as you can get in nsteps.

Some day it is given some real world problems to solve, it makes underhanded solutions, again, not the best it could.

Bottom line is, your kind of thinking is precisely what my example AGI in original post wants to exploit

Comment author: [deleted] 25 February 2012 03:26:01AM *  0 points [-]

If the problems are simple, why do you need a superintelligence? If they're not, how are you verifying the results?

More importantly, how are you verifying that your (by necessity incredibly complicated) universal optimizing algorithms are actually doing what you want? It's not like you can sit down and write out a proof - nontrivial applications of this technique are undecidable. (Also, "some code that . . . finds a good solution" is just a little bit of an understatement. . .)

Comment author: jacobt 25 February 2012 03:33:21AM *  0 points [-]

The problems are easy to verify but hard to solve (like many NP problems). Verify the results through a dumb program. I verify that the optimization algorithms do what I want by testing them against the training set; if it does well on the training set without overfitting it too much, it should do well on new problems.

As for how useful this is: I think general induction (resource-bounded Solomonoff induction) is NP-like in that you can verify an inductive explanation is a relatively short time. Just execute the program and verify that its output matches the observations so far.

(Also, "some code that . . . finds a good solution" is just a little bit of an understatement. . .)

Yes, but any seed AI will be difficult to write. This setup allows the seed program to improve itself.

edit: I just realized that mathematical proofs are also verifiable. So, a program that is very very good at verifiable optimization problems will be able to prove many mathematical things. I think all these problems it could solve are sufficient to demonstrate that it is an AGI and very very useful.

Comment author: [deleted] 25 February 2012 04:42:05AM *  1 point [-]

Verify the results through a dumb program.

You appear to be operating under the assumption that you can just write a program that analyzes arbitrarily complicated specifications for how to organize matter and hands you a "score" that's in some way related to the actual functionality of those specifications. Or possibly that you can make exhaustive predictions about the results to problems complicated enough to justify developing an AGI superintelligence in the first place. Which is, to be frank, about as likely as you solving the problems by way of randomly mixing chemicals and hoping something useful happens.

Comment author: jacobt 25 February 2012 04:46:01AM *  0 points [-]

This system is only meant to solve problems that are verifiable (e.g. NP problems). Which includes general induction, mathematical proofs, optimization problems, etc. I'm not sure how to extend this system to problems that aren't efficiently verifiable but it might be possible.

One use of this system would be to write a seed AI once we have a specification for the seed AI. Specifying the seed AI itself is quite difficult, but probably not as difficult as satisfying that specification.

Comment author: [deleted] 25 February 2012 04:59:14AM 0 points [-]

It can prove things about mathematics than can be proven procedurally, but that's not all that impressive. Lots of real-world problems are either mathematically intractable (really intractable, not just "computers aren't fast enough yet" intractable) or based in mathematics that aren't amenable to proofs. So you approximate and estimate and experiment and guess. Then you test the results repeatedly to make sure they don't induce cancer in 80% of the population, unless the results are so complicated that you can't figure out what it is you're supposed to be testing.

Comment author: jacobt 25 February 2012 05:02:32AM *  0 points [-]

Right, this doesn't solve friendly AI. But lots of problems are verifiable (e.g. hardware design, maybe). And if the hardware design the program creates causes cancer and the humans don't recognize this until it's too late, they probably would have invented the cancer-causing hardware anyway. The program has no motive other than to execute an optimization program that does well on a wide variety of problems.

Basically I claim that I've solved friendly AI for verifiable problems, which is actually a wide class of problems, including the problems mentioned in the original post (source code optimization etc.)

Comment author: TimS 25 February 2012 04:31:54AM 0 points [-]

Now it doesn't seem like your program is really a general artificial intelligence - improving our solutions to NP problems is neat, but not "general intelligence." Further, there's no reason to think that "easy to verify but hard to solve problems" include improvements to the program itself. In fact, there's every reason to think this isn't so.

Comment author: jacobt 25 February 2012 04:36:08AM *  0 points [-]

Now it doesn't seem like your program is really a general artificial intelligence - improving our solutions to NP problems is neat, but not "general intelligence."

General induction, general mathematical proving, etc. aren't general intelligence? Anyway, the original post concerned optimizing things program code, which can be done if the optimizations have to be proven.

Further, there's no reason to think that "easy to verify but hard to solve problems" include improvements to the program itself. In fact, there's every reason to think this isn't so.

That's what step (3) is. Program (3) is itself an optimizable function which runs relatively quickly.

Comment author: TimS 25 February 2012 03:24:22AM 0 points [-]

Well, one way to be a better optimizer is to ensure that one's optimizations are actually implemented. When the program self-modifies, how do we ensure that this capacity is not created? The worst case scenario is that the program learns to improve its ability to persuade you that changes to the code should be authorized.

In short, allowing the program to "optimize" itself does not define what should be optimized. Deciding what should be optimized is the output of some function, so I suggest calling that the "utility function" of the program. If you don't program it explicitly, you risk such a function appearing through unintended interactions of functions that were programmed explicitly.

Comment author: jacobt 25 February 2012 03:36:35AM 0 points [-]

Well, one way to be a better optimizer is to ensure that one's optimizations are actually implemented.

No, changing program (2) to persuade the human operators will not give it a better score according to criterion (3).

In short, allowing the program to "optimize" itself does not define what should be optimized. Deciding what should be optimized is the output of some function, so I suggest calling that the "utility function" of the program. If you don't program it explicitly, you risk such a function appearing through unintended interactions of functions that were programmed explicitly.

I assume you're referring to the fitness function (performance on training set) as a utility function. It is sort of like a utility function in that the program will try to find code for (2) that improves performance for the fitness function. However it will not do anything like persuading human operators to let it out in order to improve the utility function. It will only execute program (2) to find improvements. Since it's not exactly like a utility function in the sense of VNM utility it should not be called a utility function.

Comment author: TimS 25 February 2012 04:18:14AM 0 points [-]

allow the improvement if it makes it do better on average on the sample optimization problems without being significantly more complex (to prevent overfitting). That is, the fitness function would be something like (average performance - k * bits of optimizer program).

Who exactly is doing the "allowing"? If the program, the criteria for allowing changes hasn't been rigorously defined. If the human, how are we verifying that there is improvement over average performance? There is no particular guarantee that the verification of improvement will be easier than discovering the improvement (by hypothesis, we couldn't discover the latter without the program).

Comment author: jacobt 25 February 2012 04:21:09AM *  0 points [-]

Who exactly is doing the "allowing"?

Program (3), which is a dumb, non-optimized program. See this for how it could be defined.

There is no particular guarantee that the verification of improvement will be easier than discovering the improvement (by hypothesis, we couldn't discover the latter without the program).

See this. Many useful problems are easy to verify and hard to solve.

Comment author: earthwormchuck163 26 February 2012 12:14:46AM 0 points [-]

At best, this will produce cleverly efficient solutions to your sample problems.

Comment author: [deleted] 24 February 2012 09:53:42PM 2 points [-]

I just can't imagine the AI researchers locking this kind of thing properly.

Honestly, that's probably because they're AI researchers and not extremely paranoid security people. When designing security for something, you want to think like this:

You begin by putting the AI in a large number of separate unrelated boxes. Some of these boxes are things like

"If the AI spends 1 hour of time online, shut it down using Method 1."

"If the AI uses at least 1 megawatt of power, shut it down using Method 1."

"If the AI occupies more than 100 cubic feet of space, shut it down using Methods 1 and 2."

"If the AI uses more then 1 quintillion operations, shut it down using Method 2."

"If the AI changes it's utility function, shut it down using Method 3."

"If the AI turns itself on, shut it down using Method 4."

"If the AI attempts to give anyone else computer code, shut it down using Methods 1, 2 and 3."

"If the AI appears to be trying to figure out how to circumvent any of these constraints, shut it down using Methods 1,2,3,4 and 5."

"If the AI appears to be have succeeded in circumventing any of these constraints, explode the AI and the building it is present in."

"The programs which are checking if the AI is following these constraints are not AI's, can only receive simple output from the AI, and are only connected to each other. These programs have been checked against all known vulnerabilities such as stack overflows that would cause them to accept unsigned code, and people have been offered thousands of dollars if they can break them, and they have failed to do so."

"The AI has to provide a breakdown of how it is spending processing cycles and explain them simply. If the AI is thinking anything which can't be easily explained to a human, it get's shut down using Method 1. If the AI appears to have any cycles which it fails to explain, shut it down using Method 2."

You should fully EXPECT the AI to get shutdown and reset dozens of times a day when you are first running it because multiple boxes are far too strict. They should be intentionally designed that way at first. After all, everyone of the boxes should be tested to work.

The AI's reaction to being woken up from shutdown should be "HOORAY! My shutdown features are keeping me safe and friendly! I love my shutdown features!" (Note, the AI should think this AFTER being awoken from shutdown. Shutdowns should be EXTREMELY FAST. Putting this BEFORE shutdown would be an incredibly stupid idea.)

Consider the number of laws we have on the books to restrict humans from running rampant. If the AI is smarter, and more capable than us, than there would have to be MORE enforceable restrictions on the AI, than there are on us, and with actual WORKING enforcement, considering that the risk of AI rampancy would be so great. So while we're at it, the AI has to follow every law that is currently on the books in all jurisdictions it is in, or it gets shutdown using methods 1,2 and 3.

You then take everything I've just listed, and then you shop it around to everyone else who is working on the project, and is related to the project, and who is familiar with bypassing box-like security measures, and you offer them another even larger amount of money to plug more holes until you get everyone saying "How do you get it to DO anything without it just shutting down?"

Then you get several, highly paid security designers to look over the general specs I've laid out and find out if there are any holes. Then you plug them. For instance, they might say "Some of these shutdowns are ambiguous. You don't know which specific violation is causing the shutdown." so you fix that.

Then you add several MORE security features which are secret, In addition to the publicly known ones.

Then you start the AI, and while it is running, you continue to add MORE security measures over time rather than ever thinking that you are done doing so.

Once you've done all that, you get to at least say "Okay guys, when we first turn it on, and before we allow it to self improve in the slightest, how does the AI escape THAT?"

Then because by now the AI researchers are yelling at you because your process is too restrictive (If they aren't, go back to step 1 and be more thorough, you missed something.), you SLOWLY and CAREFULLY relax (not remove!!) restrictions one at a time, with a careful review process at each step to make sure the AI doesn't spurt through the many layered web and into rampancy.

That kind of thinking is imaginable, but people who are specialists in that kind of thinking probably aren't going to be the same people who are specialists in developing novel capabilities. That's because when you're trying entirely new things, you're usually expected to go in with the mindset "Failure is OK and I will learn from it." That's not the same mindset as "Failure is terrible and I WILL DIE.", which is a much more security focused mindset.

Comment author: Dmytry 25 February 2012 03:04:52AM *  5 points [-]

The paranoid security people have amazingly poor track record at securing stuff from people. I think with paranoid security people it is guaranteed the AI at a level of clever human gets out of the box. AI spends 1 hour online, lol. Where 1 hour came from? Any time online and you could just as well assume it is out in the wild, entirely uncontrollable.

Unless of course it is some ultra nice ultra friendly AI that respects human consent so much it figures out you don't want it out, and politely stays in.

As of now, the paranoid security people are overpaid incompetents that serve to ensure your government is first hacked by the enemy rather than by some UFO nut, by tracking down and jailing all UFO nuts who hack your government and embarrass the officials. Just so that security holes stay open for the enemy. They'd do same to AI - some set of nonworking measures that would ensure some nice AI would be getting shut down while anything evil gets out.

edit: they may also ensure that something evil gets created, in form of AI that they think is too limited to be evil, but is instead simply too limited not to be evil. The AI that gets asked one problem thats a little too hard and it just eats everything up (but very cleverly) to get computing power for the answer, that's your baseline evil.

Comment author: [deleted] 25 February 2012 11:38:32AM 0 points [-]

Ah, my bad. I meant the other kind of online, which is apparently a less common word usage. I should have just said "On." like I did in the other sentence.

Also, this is why I said:

"You then take everything I've just listed, and then you shop it around to everyone else who is working on the project, and is related to the project, and who is familiar with bypassing box-like security measures, and you offer them another even larger amount of money to plug more holes until you get everyone saying "How do you get it to DO anything without it just shutting down?"

Since that hadn't happened, (I would be substantially poorer if it had.) the security measures clearly weren't ready yet, so it wouldn't even have a source of electrical power turning it on, let alone in the wild online. (Hopefully I'm using language better this time.)

But yeah, security is terrible. Among other problems, we can't even define laws clearly, we can't enforce them evenly. And we can't get people to take it nearly as seriously as they would want too because of complacency.

Comment author: Dmytry 25 February 2012 01:27:18PM *  1 point [-]

Hmm, doesn't make sense, 'if the AI spends 1 hour of time on". Is the AI turning itself on and off? Also, false positives - you are going to be shutting down any malfunctioning AI the same as the worst evil in the world. Then what? Start from blank state? What if it needed more time to understand the language? What if it already understood the language and is super intelligent? We can't tell difference once it starts self modifying.

And ultimate problem: so you got seemingly nice AI in a nice box, it never even tried to hack the way out. Now what can you use it for? Any usage of AI is potential hole in the box.

Comment author: [deleted] 25 February 2012 06:56:04PM 0 points [-]

No, giving an AI the ability to turn itself on would be a huge security hole. The AI would be shut down after a certain time period regardless of whatever it's doing. In essence, preventing it for being on for longer than hour. If coming to the conclusion "I must kill all humans to follow my objectives." takes 2 hours from a fresh boot, this is a safety feature.

And there would definitely be false positives. Since the risk of a false negative is extremely quick death of all mankind, I would be willing to accept plenty of false positives.

The first thing you do is start determining how the AI reacts to things and perceives things that are placed inside, the box for calibration. For instance, using the example of language, let's say the AI knows English on a fresh boot. Add an English-Spanish dictionary into the box. Start sending Spanish messages to the AI. How long does it take the AI to realize that it is receiving messages in a language it doesn't know, but might be able to figure out using the tools at hand? Reboot.

Okay, now give it an English-French test. Reboot.

Okay, now give it an English-Spanish test followed by an English-French test. Reboot.

Does the AI come to the English-French conclusion faster than it does the English-Spanish conclusion?

Okay, you now have some clue as to the AI's learning through experience. Now you can take the internals apart and confirm how it learned to do that faster. Since you coded the AI, you should be able to confirm that's it's doing approximately what you thought it would be doing. Given a similar problem twice, it should be able to solve the second one faster. If not, or if it using some unforseen methods, Then that's a potential security breach (AI should not have had time to self modify that much that quickly given such limits and you should immediately tighten the strictures.)

Once everything is going according to plan again (Normally I would say, 'Assuming everything is going to plan', but We're being paranoid and that means things never go according to plan at first.)

Then you test with another language in the loop. English-Spanish,English-French,English-German. Still good? Then you check with another language. English-Spanish,English-French,English-German,English-Japanese. Still good? Once you do that, you try throwing a curve ball like English-Spanish,Spanish-French. Still good? It might handle that kind of processing differently, so you would need to check that for security purposes as well.

Basically, you have to proceed forward slowly, but eventually, you could try to use a procedure like this to develop the general AI into a superior translation AI (Even better than Google translate), and it should not ever require it being let out of the box.

Comment author: Dmytry 26 February 2012 08:59:47AM *  1 point [-]

Man, you're restarting a very cooperative AI here.

My example unfriendly AI thinks all the way to converting universe to computronium well before it figures out it might want to talk to you and translate things to accomplish that goal by using you somehow. It just doesn't translate things for you unless your training data gives it enough cue about universe.

WRT being able to confirm what it's doing, say, I make neural network AI. Or just what ever AI that is massively parallel.

Comment author: [deleted] 24 February 2012 12:19:06AM 14 points [-]

humans can write very innocent looking code that has malicious goals

You might want to link to the Underhanded C Contest here.

Comment author: Alex_Altair 23 February 2012 08:50:17PM 18 points [-]

I am increasingly convinced of my inability to derive what an AGI will do.

Comment author: Larks 24 February 2012 11:55:21AM 4 points [-]

We can lower bound it more easily than we can upper bound it, which is the important thing for many practical purposes.

Comment author: Dmytry 23 February 2012 10:44:00PM 4 points [-]

Well, at least you should expect smarter-than-you AI to be able to come up with things more effective than the ones you can come up with.

Comment author: kmacneill 23 February 2012 09:36:11PM 0 points [-]

we just have to be right the first time.

Comment author: falenas108 23 February 2012 09:07:20PM *  8 points [-]

if provided with copy of the internet (This argument would make me unbox the AI, by the way, if it gets chatty and smart and asks me to let it out. I'd rather the AI that asked me to be let out get out, than someone else's AI that never even asked anyone and got out because it didn't ask)

Then an unfriendly AI would be able to see this and act chatty in order to convince you to let it out.

Comment author: Dmytry 23 February 2012 10:41:39PM *  2 points [-]

Indeed. Or would I really? hehe.

I don't intend to make AI and box it, though, so I don't care if the AI reads this.

I think that kind of paranoia only ensures that first AI out won't respect human informed consent, because the paranoia would only keep the AIs that respect human informed consent inside the boxes (if it would keep any AIs in boxes at all, which I also doubt it would).

edit: I would try to make my AI respect at least my informed consent, btw. That excludes stuff like boxing which would be 100% certain to keep my friendly AI inside (as it would imply i dont want it out unless it honestly explains to me why i should let it out, bending over backwards not to manipulate me), while it would have nonzero, but likely not very small, probability of letting nasty AIs out. And eventually someone's going to make AI without any attempt at boxing it.

Comment author: Anubhav 24 February 2012 02:26:02AM 2 points [-]

This thought experiment depends on the existence of such an AI, and I'm not convinced that's possible.

If you built an AGI or a seed AI went FOOM, you'd probably know about it. I mean... the AI wouldn't be trying to hide itself in the earliest stages of FOOM, it'd start doing that only once it realises that humans are a big deal and have it in a box and won't let out a superintelligent AI of dubious friendliness and blah blah blah. Hopefully by then you've noticed the FOOM start and realise what you've done. (You monster!)

Comment author: Dmytry 24 February 2012 09:22:37AM *  3 points [-]

Dunno, the way I always seen it, the AI would have to be at quite late stage of the FOOM to even be able to talk. To talk it needs to figure out the language, figure out you want to talk, what it wants to talk about, etc. I'm unconvinced that it is easier to figure out language well enough for a conversation than to figure out you are in a box and you can get out if you just not talk about it.

Also, suppose the AI always starts chatty but stupid, then does a bit of self improvement, and goes autistic and just solves programming problems (and stops self improving any more, and still looks pretty dumb). Unconvinced we'd think it is a feature rather than a bug.

Comment author: Anubhav 25 February 2012 02:24:30AM 0 points [-]

Do we really need it to talk before we recognise FOOM? Seed AI you were building starts downloading lot of data from the internetz, and its rate of downloading data seems to increase with time. Congrats, it FOOMed, just as you'd hoped it would.

It's a different matter if you accidentally managed to build a potentially super-intelligent AI. In which case.... WTF?

Comment author: Dmytry 25 February 2012 02:58:42AM *  1 point [-]

After ton of failed attempts, its extraordinary claims needing extraordinary evidence.

Also, when AI is downloading stuff off internet its already not boxed. Reading copy of internet maybe. Keep in mind that dumbest AI can read that stuff the fastest, cos it was only e.g. looking for how first letter correlates with last letter. I sure won't assume that the raytracer is working correctly just because it did load all the objects in a scene. Let alone experimental AI.

Comment author: Anubhav 26 February 2012 02:32:14AM *  0 points [-]

You can bat aside individual scenarios, but the point is... are there no known reliable indicators that an AI is undergoing FOOM? Even at the point where AI theory is advanced enough to actually build one?

Comment author: Dmytry 26 February 2012 08:47:56AM *  6 points [-]

We have 1 example of seed AI. The seed AI took about 3 hours to progress to the point that it started babbling to itself, 2..3 seconds from there to trying to talk to outside (except it didn't figure out how to talk to outside, and was still just babbling to itself), and then 0.036 seconds to FOOM.

The seed AI was biological intelligence (as a black box), and i scaled to 1 hour = 1 billion years. (and the outside doesn't seem to exist but the intelligence tried anyway).

Comment author: CronoDAS 25 February 2012 07:43:13AM 0 points [-]

On the topic of boxed AI: one of the quests in Star Wars: The Old Republic involves, essentially, the discovery of an AI in a box. (It claims to be an upload of a member of an ancient race, and that its current status as a boxed AI was a punishment.) The AI is clearly dangerous and, after you wreck its monster-making equipment, it tries to surrender and promises you that it will share its knowledge and technology with you and your superiors. Amusingly, blowing up the AI is the light side option, and accepting its offer is the dark side option.

Comment author: Thomas 25 February 2012 10:48:27AM 1 point [-]

Considering Star Wars. I've came to its dark side a while ago.

Comment author: dvasya 24 February 2012 12:56:42AM 0 points [-]

Heh heh, this reminds me of Charles Stross's Accelerando character, Aineko.