the programming game
play

The Programming Game An Alternative to GP for Expression Search - PowerPoint PPT Presentation

The Programming Game An Alternative to GP for Expression Search DAASE/COW Open Workshop Tuesday 23rd April 2013 David R White SICSA Research Fellow University of Glasgow A Confession DAASE and Genetic Programming An Alternative Program


  1. The Programming Game An Alternative to GP for Expression Search DAASE/COW Open Workshop Tuesday 23rd April 2013 David R White SICSA Research Fellow · University of Glasgow

  2. A Confession

  3. DAASE and Genetic Programming An Alternative Program Search Method Two Experiments Wrap-Up

  4. DAASE and Genetic Programming An Alternative Program Search Method Two Experiments Wrap-Up

  5. Observation “There have been exciting recent breakthroughs in the use of genetic programming to re-design aspects of systems to fix bugs, to migrate to new platforms and languages and to optimise non-functional properties.” Harman et al., Dynamic Adaptive Search Based Software Engineering, ESEM 2012.

  6. Genetic Programming as a Hyper-Heuristic

  7. The Demands of DAASE ◮ Dynamic, online, run-time optimisation. ◮ Continuous adaptation.

  8. Anytime Algorithms Evolutionary Algorithms are often viewed as anytime algorithms: Quality Algorithm 1 Algorithm 2 Time

  9. Anytime Algorithms Evolutionary Algorithms are often viewed as anytime algorithms: Quality Algorithm 1 Algorithm 2 Time . . . but I would argue that they are somewhat imperfect anytime algorithms. Especially GP.

  10. Why GP is not so Anytime ◮ Bloat ◮ Parameter Setting ◮ Difficulty of Allocating Computational Budget ◮ Notions of Progress and Coverage

  11. Why GP is not so Anytime ◮ Bloat ◮ Parameter Setting ◮ Difficulty of Allocating Computational Budget ◮ Notions of Progress and Coverage How well do we understand a GP search? How can we hope to control it? (“Insight”)

  12. Steal from Artificial Intelligence Research

  13. DAASE and Genetic Programming An Alternative Program Search Method Two Experiments Wrap-Up

  14. Monte Carlo Tree Search

  15. Game Tree

  16. Sampling 29 possible moves for White here.

  17. Programming is a One-Player Game

  18. Tristan Cazenave’s Work Nested Monte-Carlo Expression Discovery, Cazenave, ECAI 2010. Monte-Carlo Expression Discovery, International Journal on Artificial Intelligence Tools, Cazenave, 22 (1) 2013.

  19. A Stack Machine Stack using Reverse Polish notation. atoms { +, *, -, /} + a sqrt b * root {a, b} Each atom added is a move through the game tree.

  20. Building the Game Tree 1. Selection 2. Expansion 3. Sampling 4. Update

  21. Python Implementation uct ( max evals , terms , nonterms , ucb constant , max nodes , s c o r e f ) : def root = TreeNode ( None , terms , nonterms , None , ucb constant , 1 , 0 , max nodes ) i xrange ( max evals ) : f o r i n root . e x p l o r e d : i f break stac k = E x p r e s s i o n S t a c k ( max nodes ) l e a f = t r e e p o l i c y ( root , terms , nonterms , ucb constant , stack , max nodes ) s c o r e = p l ay ou t ( stack , terms , nonterms , s c o r e f ) backup ( l e a f , s c o r e ) return root def t r e e p o l i c y ( node , terms , nonterms , ucb constant , stack , max nodes ) : while stac k . l e a v e s > 0: i f not node . a l l a t o m s t r i e d ( ) : n e w c h i l d = expand ( node , stack , terms , nonterms , ucb constant , max nodes ) stac k . push ( n e w c h i l d . node atom ) i f stac k . l e a v e s == 0: n e w c h i l d . e x p l o r e d = True n e w c h i l d . p o s s i b l e a t o m s = [ ] return n e w c h i l d e l s e : node = b e s t c h i l d ( node ) stac k . push ( node . node atom ) return node

  22. Python Implementation (Cont.) def expand ( node , stack , terms , nonterms , ucb constant , e x p r s i z e , max nodes ) : atom = node . next atom ( ) e l e a v e s = stack . l e a v e s + atom . a r i t y − 1 e s i z e = l e n ( stack . e x p r e s s i o n )+1 c = TreeNode ( atom , terms , nonterms , node , ucb constant , e l e a v e s , e s i z e , max nodes ) node . a d d c h i l d ( c ) return c def backup ( node , s c o r e ) : while node i s not None : node . v i s i t s = node . v i s i t s + 1 node . sum scores = node . sum scores + s c o r e i f node . a l l a t o m s t r i e d ( ) : done = True f o r c i n node . c h i l d r e n : done = done and c . e x p l o r e d node . e x p l o r e d = done node = node . parent

  23. A Simple Example Symbolic regression with the language { + , ∗ , a , b } .

  24. Example Game Tree Construction Step 1 Step 2 Step 3 Step 4 [null], 3, 0.5 [null], 1, 0.1 [null], 2, 0.4 [null] [+], 1, 0.1 [*], 1, 0.3 [+], 1, 0.1 + + * + * a [a], 1, 0.1 [+], 1, 0.1 [*], 1, 0.3 score = 0.1 a a a b [null], 3, 0.5 score = 0.3 score = 0.1 Step 5 Step 6 [null], 5, 1.0 [null], 4, 0.5 [+], 1, 0.1 [b], 1, 0.1 [+], 1, 0.1 + a b [b], 1, 0.1 * + * a b [a], 1, 0.1 [*], 1, 0.3 [*], 2, 0.8 [a], 1, 0.1 score = 0 b + [*,+], 1, 0.5 a b score = 0.5

  25. Balancing Exploration and Exploitation Choose child with highest UCT score. � S c 2 ln n c + K n c n p S c total score for playouts involving this node. n c number of visits to this node. n p number of visits to the parent of this node. K constant

  26. DAASE and Genetic Programming An Alternative Program Search Method Two Experiments Wrap-Up

  27. The Target Problem Find an equation using the numbers { 1 . . . 10 } exactly once and the arithmetic operators +,-,/,* so that the result is as close to 737 as possible.

  28. Target Problem: Results Comparing Median Best Fitness on the Target Problem 1.0 + o o + o o GP + o + Nested x UCT + o 0.8 o + 0.6 Fitness Score o x + 0.4 o o x + + x 0.2 o + + + o + x + x x x x x x 0.0 o o o o + x o x + + o x o + x o x x o x x + + x x + 1e+01 1e+03 1e+05 Evaluations (log scale)

  29. Prime Generation Find an equation that generates unique prime numbers when fed with the natural numbers as input. The function set is +,-,*,/ and the terminal set is { 1 . . . 10 } and all the prime numbers under 100.

  30. Prime Problem: Results Comparing Median Best Fitness on the Prime Problem 50 o GP + Nested x UCT 40 + + + + x 30 Fitness Score + 20 + 10 + + x + x x x x + x + + + + x + x x x x x o + o x x o + + o x o + x o x o x o o o o o o o o o o o o o + x 0 1e+01 1e+03 1e+05 Evaluations (log scale)

  31. Advantages of MCTS Concise Solutions. Game Tree is Human-Readable. Parallelisation.

  32. Relevant Previous Work Real-time Games UCT for Tactical Assault Planning in Real-Time Strategy Games, Balla and Fern, ICAI 2009. Scheduling Problems Monte-Carlo Tree Search in Production Management Problems, Chaslot et al., Benelux Conference on AI, 2006. (includes a comparison to EAs) Feature Selection Feature Selection as a One-Player Game, Gaudel and Sebag, ML 2010.

  33. DAASE and Genetic Programming An Alternative Program Search Method Two Experiments Wrap-Up

  34. What next? A better paper! Further adapting MCTS for program search. e.g. use of grammars to introduce typing. Application to challenging problems.

  35. Acknowledgements Tristan Cazenave Juan E. Tapiador

  36. Further Reading Highly recommended: A Survey of Monte Carlo Tree Search Methods, Browne et al., IEEE Trans. on Computational Intelligence and AI in Games, 2012.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend