This repository contains 3 examples of genetic algorithm including word guessing game
, emergency unit
, and travelling salesman problem
. It was an activity for Introduction to Artificial Intelligence subject.
The source code for TSP can be found at travelling_salesman.py
. It looks for the best route by computing the optimal route for a given set of cities, aiming to minimize the total distance traveled by a traveling salesman. This implementation utilizes a Genetic Algorithm (GA) approach to find an approximate solution to the Traveling Salesman Problem (TSP).
NUM_AREAS = 10
MAX_GENERATIONS = 5000
POPULATION_SIZE = 10
MUTATION_RATE = 10%
CROSSOVER_RATE = 40%
- Crossover:
Partially Mapped Crossover
- Mutation:
Swap Mutation
- Stopping Function:
5000 Generations
- Chromosome Encoding:
Coordinates, [x, y]
The provided source code (word_guessing.py
) implements a Word Guessing Game using a Genetic Algorithm (GA) approach. In this game, the GA evolves a population of candidate words to approximate a target word specified by the user.
MAX_GENERATION = 5000
MAX_POPULATION = 10
MUTATION_RATE = 10%
CROSSOVER_RATE = 40%
CHARACTER_SET = (a-z)+ | (A-Z)+ | [SPACE]
- Crossover:
Single Point Crossover
- Mutation:
Random Resetting
- Stopping Function:
5000 Generations || Cost = 0
- Chromosome Encoding:
ASCII
This project implements a Genetic Algorithm (GA) to optimize the location of emergency units within a given city grid. The objective is to find the optimal placement of emergency units to minimize emergency response time, considering the frequency of emergencies across different locations within the city.
MAX_GENERATION = 100
POPULATION_SIZE = 10
MUTATION_RATE = 10%
CROSSOVER_RATE = 40%
- Crossover:
Single Point Crossover
- Mutation:
Random Resetting
- Stopping Function:
100 Generations
- Chromosome Encoding:
Coordinates, [x, y]
-
Initialization: Randomly generates an initial population of routes, where each route represents a possible solution to the TSP.
-
Evaluation: Evaluates the fitness of each chromosomes based on their fitness or cost.
-
Parent Selection: Selects chromomes from the current population to be parents based on their fitness or cost. Chromosomes with lower total cost or fintess (means better) are more likely to be selected.
-
Crossover: Combines pairs of parents to create new offsprings. This is done by exchanging segments of the parents.
-
Mutation: Introduces random changes to the offspring routes to maintain genetic diversity in the population.
-
Appending: Appends the mutated offsprings to the population pool, removing the chromosomes with the worst fitness or cost.
-
Termination / Stopping Function: The algorithm terminates when a stopping condition is met, such as reaching a maximum number of generations or finding a satisfactory cost.