Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 955 Bytes

File metadata and controls

31 lines (18 loc) · 955 Bytes

Genetic-Algorithms

1 Basic Algorithm implementation

Basic implementation of a genetic algorithm.

Implementation

Goal: find a given string.

Execution:

python genetic_algorithm_example.py with arguments:

  • -p Population size e.g. -p 100
  • -g goal-string e.g. -g string_to_find
  • -m mutation-rate e.g. -m 0.01 Logo

Explanation:

TODO

2 Multi Neural Network Weight Optimization with Genetic Algorithm

Implementation

3 Genetic Algorithm on Neural Network Architecture and Hyperparameter Optimization

Implementation