Presenter: Dr. Matthia Sabatelli
Date: September 30th, 2024
Agenda:
Motivation & General Principles
Genetic Algorithms
Genetic Programming
Practical Applications
1960s: Development began by John Holland, considered the father of Algorithmic Evolution.
1980s: Successful applications emerged.
1990s: Evolution led to Genetic Programming.
Current Status: GAs are less popular despite their capability to solve specific classes of problems.
Learning Mechanism: Simulates evolution and falls under search techniques.
Search Type: Categorized as Global Search Heuristics that explore solution spaces through mutation and recombination rather than a systematic search.
Initial Problem & Guess Generation:
Generate a set of potential solutions.
Evaluation:
Solutions are assessed based on performance.
Recombination:
Successful solutions interact to produce new solutions.
Iteration:
Process repeats until a satisfactory solution is found or a stopping criterion is met.
Evolution's efficiency in nature applied to AI.
Ability to search through complex hypothesis spaces.
Easy parallelization, leveraging powerful hardware.
Learning Problem: Defines the problem to be solved.
Fitness Function: Evaluates how well solutions perform (denoted as f(x)).
Initial Pool of Solutions: e.g., programs that can play chess.
Evolution Strategy: Method for modifying solutions based on evaluation outcomes.
Objective: Maximize the number of ones in a binary string (e.g., from 1011010110 to 1111111111).
Initial Generation G1:
Randomly generated solutions, e.g., {0101100001, 1100010001, 1111110000, 1010101111, 0000000010}.
Evaluation:
Count ones in each string to score solutions (e.g., 3 ones for 0010100001).
Selection of Fittest: Retain only the best solutions for the next generation.
Creation of New Solutions:
Perform mating/crossover between fittest participants to create new candidates.
Definition: Produces new offspring from parent solutions by sharing bits.
Types:
Single-Point Crossover: Exchange portions of two parent strings.
Two-Point Crossover: More complex mating strategy involving two positions for crossover.
Outcome: Generates children that inherit characteristics from both parents, enhancing diversity and potential solution quality.
Definition: Introduces random alterations to a solution to maintain genetic diversity within a population.
Importance: Prevents premature convergence to local optima.
Definition: An extension of Genetic Algorithms where individuals are computer programs, not just binary strings.
Representation: Programs are represented as trees where functions are nodes and arguments are child nodes.
e.g., Expression: sin(x) + px^2 + y represented as a functional program tree.
Genetic Operators: Utilizes the same genetic operators but applies to program structures, making evaluation computationally intensive. e.g. crossover and mutation the most common ones
Applications of Genetic Algorithms and Programming span various domains due to their adaptability to complex optimization problems.
Easy to understand and implement.
Suitable for multi-objective optimization.
Capable of distributed learning across tasks.
No guaranteed convergence to the global optimum.
Evaluation function can be computationally expensive.
Requires careful tuning of multiple implementation parameters.
Need for effective termination criteria.
The study of Genetic Algorithms and their applications continues to evolve, with ongoing research into their efficiency and effectiveness in solving complex problems.