Gödel machine

A Gödel machine is a self-improving computer program that solves problems in an optimal way. It uses a recursive self-improvement protocol in which it rewrites its own code when it can prove the new code provides a more optimal strategy.[1][2] The machine was invented by Jürgen Schmidhuber (first proposed in 2003[3]), but is named after Kurt Gödel who inspired the mathematical theories.[4]

The Gödel machine is often discussed when dealing with issues of meta-learning, also known as "learning to learn." Applications include automating human design decisions and transfer of knowledge between multiple related tasks, and may lead to design of more robust and general learning architectures.[5] Though theoretically possible, no full implementation has existed before.[6]

The Gödel machine is often compared with Marcus Hutter's AIXI, another formal specification for an artificial general intelligence.[7] Schmidhuber points out that the Gödel machine could start out by implementing AIXI as its initial sub-program, and self-modify after it finds proof that another algorithm for its search code will be more optimal.

Limitations

Traditional problems solved by a computer only require one input and provide some output. Computers of this sort had their initial algorithm hardwired.[8] This doesn't take into account the dynamic natural environment, and thus was a goal for the Gödel machine to overcome.

The Gödel machine has limitations of its own, however. Any formal system that encompasses arithmetic is either flawed or allows for unprovable but true statements[3] Hence even a Gödel machine with unlimited computational resources must ignore those self-improvements whose effectiveness it cannot prove.[3]

It has been argued that, regardless of advancements in self-referential universal problem solvers, minds cannot be explained as machines.[9] This has become a topic of debate in the field of artificial General Intelligence.

Variables of interest

There are three variables that are particularly useful in the run time of the Gödel machine.[3]

A typical utility function follows the pattern u(s, Env) : S × E → R. This can be seen below:

Utility Function

Instructions used by proof techniques

The nature of the six proof-modifying instructions below makes it impossible to insert an incorrect theorem into proof, thus trivializing proof verification.[3]

get-axiom(n)

Appends the n-th axiom as a theorem to the current theorem sequence. Below is the initial axiom scheme:

apply-rule(k, m, n)

Takes in the index k of an inference rule (such as Modus tollens, Modus ponens), and attempts to apply it to the two previously proved theorems m and n. The resulting theorem is then added to the proof.

delete-theorem(m)

Deletes the theorem stored at index m in the current proof. This helps to mitigate storage constraints caused by redundant and unnecessary theorems. Deleted theorems can no longer be referenced by the above apply-rule function.

set-switchprog(m, n)

Replaces switchprog S pm:n, provided it is a non-empty substring of S p.

check()

Verifies whether the goal of the proof search has been reached. A target theorem states that given the current axiomatized utility function u (Item 1f), the utility of a switch from p to the current switchprog would be higher than the utility of continuing the execution of p (which would keep searching for alternative switchprogs).[3] This is demonstrated in the below image:

Description of the decoded check() function for the Godel Machine

state2theorem(m, n)

Takes in two arguments, m and n, and attempts to convert the contents of Sm:n into a theorem.

Example applications

Time-limited NP-hard optimization

The initial input to the Gödel machine is the representation of a connected graph with a large number of nodes linked by edges of various lengths. Within given time T it should find a cyclic path connecting all nodes. The only real-valued reward will occur at time T. It equals 1 divided by the length of the best path found so far (0 if none was found). There are no other inputs. The by-product of maximizing expected reward is to find the shortest path findable within the limited time, given the initial bias.[3]

Fast theorem proving

Prove or disprove as quickly as possible that all even integer > 2 are the sum of two primes (Goldbach’s conjecture). The reward is 1/t, where t is the time required to produce and verify the first such proof.[10]

Maximizing expected reward with bounded resources

A cognitive robot that needs at least 1 liter of gasoline per hour interacts with a partially unknown environment, trying to find hidden, limited gasoline depots to occasionally refuel its tank. It is rewarded in proportion to its lifetime, and dies after at most 100 years or as soon as its tank is empty or it falls off a cliff, and so on. The probabilistic environmental reactions are initially unknown but assumed to be sampled from the axiomatized Speed Prior, according to which hard-to-compute environmental reactions are unlikely. This permits a computable strategy for making near-optimal predictions. One by-product of maximizing expected reward is to maximize expected lifetime.[3]

See also

References

  1. Mahmud, M. M. Hassan (2008). Universal Transfer Learning. ProQuest. pp. 16–18. ISBN 9780549909880.
  2. Anderson, Michael L.; Tim Oates (Spring 2007). "A review of recent research in metareasoning and metalearning". AI Magazine. 28 (1): 7.
  3. 1 2 3 4 5 6 7 8 Schmidhuber, J¨urgen (December 2006). Gödel Machines: Self-Referential ¨ Universal Problem Solvers Making Provably Optimal Self-Improvements (PDF). Retrieved 10 November 2014.
  4. "Gödel machine".
  5. Schaul, Tom; Schmidhuber, Juergen (2010). "Metalearning". Scholarpedia. p. 4650. doi:10.4249/scholarpedia.4650. Retrieved 10 November 2014.
  6. "A Family of Gödel Machine Implementations". Lecture Notes in Computer Science: 275–280. doi:10.1007/978-3-642-22887-2_29. Retrieved 13 November 2014.
  7. "Wiki Less Wrong". http://wiki.lesswrong.com/. Retrieved 10 November 2014. External link in |website= (help)
  8. Schmidhuber, Jürgen (5 March 2009). "Ultimate Cognition à la Gödel" (PDF). Cognitive Computation. pp. 177–193. doi:10.1007/s12559-009-9014-y. Retrieved 13 November 2014.
  9. Lucas, J. R. (25 February 2009). "Minds, Machines and Gödel". Philosophy. p. 112. doi:10.1017/S0031819100057983. Retrieved 13 November 2014.
  10. Schmidhuber, Jürgen (5 March 2009). "Ultimate Cognition à la Gödel". Cognitive Computation. pp. 177–193. doi:10.1007/s12559-009-9014-y.
This article is issued from Wikipedia - version of the 7/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.