Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oppodelldog/a-genetic-algorithm
https://github.com/oppodelldog/a-genetic-algorithm
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oppodelldog/a-genetic-algorithm
- Owner: Oppodelldog
- License: mit
- Created: 2020-04-03T13:46:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T12:23:30.000Z (almost 2 years ago)
- Last Synced: 2024-06-19T20:55:59.621Z (7 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# a genetic algorithm
> written in GoI recently watched some videos on youtube on the topic "genetic algorithm" and decided to
implement the described solution for fun in Go.It's the **Shakespeare Monkey Example**
If you are interested in this topic I recommend the following youtube Playlist:
Jump on **The Coding Train**: https://youtu.be/9zfeTw-uFCw
This is awesome work, I really appreciate that this man offers open-source, code and free video tutorials.
---
## implementation in go
* [population.go](population.go) contains the implementation of the genetic algorithm.
* [cmd/main.go](cmd/main.go) contains the main function and some utilization of the population.Basically that's all. There's a Population interface used by the main function so there is already
a seam for extending, playing around or testing different strategies.