PowerPlay: A General Learning Framework
PowerPlay is a very simple, very general architecture for an AI agent. It uses:
- Self-modification
- Auto-generated problems
- Some decidable notion of “regression”
With these at its disposal, the algorithm is very simple:
Search for, then perform, a self-modification which: 1. Is not a regression 2. Allows us to solve a problem we previously couldn’t
PowerPlay
In the original definition of PowerPlay by Jürgen Schmidhuber, the agent keeps a list of the previously-unsolvable problem used to justify (2), and uses the solvability of this list as its regression check.
This is a very weak notion of regression, and maintaining the list has linear memory cost.
Generalisations
Other regression mechanisms are possible, especially in the presence of dependent types.
For example, we can model our agent’s current problem-solver using the following types:
Type.
Parameter Problem : Type.
Parameter Solution : Problem -> option (Solution p). Definition Solver := forall (p : Problem),
This leads to a natural, symmetric definition of valid self-modifications:
None.
Definition Solves (s : Solver) (p : Problem) := s p <>
Definition AsGoodAs (s1 s2 : Solver) := forall p, Solves s2 p -> Solves s1 p.
let s' := apply s m in
Definition Improvement (s : Solver) (m : Mod) := AsGoodAs s' s /\ ~(AsGoodAs s s')
These two AsGoodAs
propositions
implement the two conditions of an acceptable modification.
Note that, since we derive the regression checks from the Solvers, this approach doesn’t require any memory overhead. It also provides a much stronger guarantee: no solvable Problem can ever become unsolvable.
I believe this is more desirable than the weak guarantee of the original PowerPlay, although implementations need to be aware of this strength, for example if they want to include resource bounds in their Problems.
More Information
I’ve implemented these ideas in Coq and there is further explanation in these blog posts: