1 / 57

Hybrid Systems

Hybrid Systems. Hybridization. Integrated architectures for machine learning have been shown to provide performance improvements over single representation architectures.

fai
Download Presentation

Hybrid Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Hybrid Systems

  2. Hybridization • Integrated architectures for machine learning have been shown to provide performance improvements over single representation architectures. • Integration, or hybridization, is achieved using a spectrum of module or component architectures ranging from those sharing independently functioning components to architectures in which different components are combined in inherently inseparable ways.

  3. Hybridization Research Neural Expert System Neural Network training with a genetic algorithm Fuzzy Case Based System Neural Network hidden layer complexification with a GA Evolution of Neural Network game Players

  4. Evolving Neural Networks and Competitive Co-evolution Blondie and Mankala

  5. Mancala The board is initialized with 3 markers in each of six bowls. One side and one empty bowl belong to each player. The two end bowls are initially empty and the object is for each player to accumulate markers their bowl. At each turn a player chooses a bowl and distributes he seeds into the bowls immediately in the counter-clockwise direction. There is a capturing rule and a rule for making a sequence of moves and the game ends when one side of the board is empty the winner holding the greatest number of markers.

  6. Planning Ahead Four pieces -- marbles or stones -- are placed in each of the 12 holes. Each player has a 'store' to the right side of the Mancala board. The game begins with one player picking up all of the pieces in any one of the holes on his side. Moving counter-clockwise, the player deposits one of the stones in each hole until the stones run out. If you run into your own store, deposit one piece in it. If you run into your opponent's store, skip it. If the last piece you drop is in your own store, you get a free turn. If the last piece you drop is in an empty hole on your side, you capture that piece and any pieces in the hole directly opposite. Always place all captured pieces in your store. The game ends when all six spaces on one side of the Mancala board are empty. The player who still has pieces on his side of the board when the game ends captures all of those pieces.Count all the pieces in each store. The winner is the player with the most pieces. Try to plan two or three moves into the future.

  7. Competitive Co-evolution Fitness is based on direct competition among individuals selected from two independently evolving populations

  8. The Problem • Conventional intelligent gaming systems rely on rule-based systems or heuristic functions with look ahead to challenge opponents. • However such systems that do not incorporate learning lose the interest of players who find quickly ways to beat them. • Game developers are currently developing integrated techniques that combine neural networks with evolutionary programming to enable products with self-improving strategies.

  9. Gaming Agents • Entertainment software is using competitively co-evolving populations of neural nets to evolve entertainment agents that can adapt their characters or learn to play competitively in games to extend the novelty of intelligent board games and other products [Fog1, Fog2, Ros]. • In such co-evolving system the fitness measure is determined by the outcome of competitions between individuals in the competition

  10. Gaming Agents • Hard to devise strategies to keep players interested in games • Players are at different levels • Players improve and get bored • Typically have not got a set of examples

  11. Evolving Weights

  12. Crossover in weight optimisation

  13. Mutation in weight optimisation

  14. Evolving the network topology A crossover operator randomly chooses a row index and simply swaps the Corresponding rows between two parents creating two offspring. A mutation operator flips a bit in the chromosome with a specified probability

  15. NEAT ALGORITHM • NeuroEvolution of Augmenting Topologies (NEAT) improved genetic algorithms by making including complexification and speciation in the algorithm • Alignment during crossover through synapsis • Speciation protects complexification

  16. Co-evolution and Game Playing • Can an ANN be used in the gaming situation? • What set of examples can be used?

  17. Problems • Adding up the score in all competitions may cause the extinction of important types that are not widely present in the populations thus diminishing overall diversity. • As genetic material transforms lack of diversity may result in newer individuals that gradually lose the ability to defeat older and perhaps weaker opponents from previous generations. • To promote diversity authors have developed methods to compute fitness that lessens the possibility of extinction.

  18. Exercise: Compute fitness in a tournament A 1 in Px/Oy indicates that PX beat OY

  19. Fitness Sharing • Under fitness sharing rare individuals (that can defeat opponents that few others can defeat) receive a greater fitness that simply adding up scores. • More prevalent types have their fitness shared among a larger number of individuals and thus score lower.

  20. Fitness Sharing • Using fitness sharing if a competitor i defeats all opponents j in set X then the fitness of competitor i is computed using • where Nj is the total number of competitors defeating opponent j.

  21. Opponent Sampling • Choosing opponents wisely will reduce the number of competitions. • Because information is available about the performance of each opponent at each generation ways exist to choose smaller number of opponents without losing performance. • As with competitors selecting the best individuals may result in a lack of diversity in the opponents. • This can be achieved by again choosing opponents with maximal shared fitness.

  22. Elitism A finite population has a very short memory. A genotype must be successful almost every generation to stay in the population. Once gone it can be dicult to rediscover. In using the GA for static optimization problems this is not very signicant because old genotypes were strictly worse according to the fitness measure. In competitive coevolution such old genotypes might have become successful again. And losing them from the population allows the opposing population to be successful with new types that would lose against old extinct genotypes. The result is that progress towards the optimum is no longer guaranteed.

  23. Hall of Fame In competitive coevolution we have two distinct reasons to save individuals. One reason is to contribute genetic material to future generations this is important in any evolutionary algorithm. Selection serves this purpose Elitism serves this purpose directly by making complete copies of top individuals. The second reason to save individuals is for purposes of testing. To ensure progress we may want to save individuals for an arbitrarily long time and continue testing against them. To this end we introduce the hall of fame which extends elitism in time for purposes of testing. The best individual from every generation is retained for future testing. Hosts are tested against both current parasites and a sample of the hall of fame. Successful new innovations can not overspecialize. They are required to be robustly successful against old parasites.

  24. Design of Blondie24 • Checkers neural network • Values for input nodes • Red – positive • White – negative • Empty – zero • Piece differential Slides from Adam Duffy and Josh Hill

  25. “A player’s move was determined by evaluating the presumed quality of the resulting future positions. The evaluation function was structured as an artificial neural network comprising an input layer, three internal processing (hidden) layers, and an output node (Figure 2). The first internal processing layer was designed to indicate the spatial characteristics of the checkerboard without indicating explicitly how such knowledge might be applied. The remaining internal and output neurons operated based on the dot product of the evolvable weighted connections between nodes and the activation strength that was emitted by each preceding node. Each node used a hyperbolic tangent (tanh, bounded by + and - 1) with an evolvable bias term. In addition, the sum of all entries in the input vector was supplied directly to the output node, constituting a measure of the relative piece differential”, (see Chellapilla and Fogel, website)

  26. Updating the weights

  27. Design of Blondie24 • Connections between squares • Subsections

  28. Refined Architecture

  29. Design of Blondie24 • Search methods • Minimax with Alpha-Beta Pruning • Iterative deepening • Hash table of previously evaluated positions (maximum of 270,000)

  30. Minimax Searching A strategy to determine good moves in computer game playing by choosing the move that minimizes the loss the player can expect to incur, under the assumption that the player's opponent is adopting the same strategy (and hence trying to cause the maximum loss). The possible gain or loss for a sequence of moves is usually assessed using a static evaluation function applied to the state of play at the end of the sequence.

  31. Initial population of 30 • Each neural network plays 5 games as red • +1 for a win • 0 for a draw • -2 for a loss • Top 15 kept, lowest 15 eliminated • Copy top 15 and mutate the weights

  32. Blondie24: Advantages • Can learn new strategies • Doesn’t have human biases

  33. Blondie24: Disadvantages • Long time • Doesn’t make use of expert knowledge

  34. Tests • Played games on zone.com • 165 games total (84 as red, 81 as white)

  35. Results • zone.com rating: 2045.85 • In top 500 of over 120,000 • Better than 99.61% of registered players

  36. Chinook • Primary feature - piece count • Looks for certain features • Over 40,000 opening lines of play • Every ending with <= 8 pieces • Higher value to positions with more pieces • Rated 2,814 at retirement in 1996

  37. Other applications • Industry, medicine, and defense • Pattern recognition • Cancer

More Related