https://github.com/hurlenko/memetic-algorithm
Simple implementation of Memetic Algorithm written in python3
https://github.com/hurlenko/memetic-algorithm
Last synced: 10 months ago
JSON representation
Simple implementation of Memetic Algorithm written in python3
- Host: GitHub
- URL: https://github.com/hurlenko/memetic-algorithm
- Owner: hurlenko
- License: mit
- Created: 2019-02-22T11:20:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T11:21:16.000Z (over 7 years ago)
- Last Synced: 2025-04-11T18:23:09.816Z (about 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 16
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memetic Algorithm
Simple implementation of Memetic Algorithm written in python3. Memetic algorithms (MAs) represent one of the recent growing areas of research in evolutionary computation. The term MA is now widely used as a synergy of evolutionary or any population-based approach with separate individual learning or local improvement procedures for problem search.
## Usage
- Install dependencies
```bash
pip install numpy
```
- Tweak constants in `ma.py`, fitness function, number of iterations etc.
- Run
```python
python ma.py
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details