Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucidrains/fuss-nim
Implementation of FUSS (Fitness Uniform Selection), a selection method proposed by Marcus Hutter himself for maintaining diversity in evolutionary algorithms, in Nim
https://github.com/lucidrains/fuss-nim
diversity-maintenance evolutionary-algorithms genetic-algorithms nim
Last synced: about 2 months ago
JSON representation
Implementation of FUSS (Fitness Uniform Selection), a selection method proposed by Marcus Hutter himself for maintaining diversity in evolutionary algorithms, in Nim
- Host: GitHub
- URL: https://github.com/lucidrains/fuss-nim
- Owner: lucidrains
- License: mit
- Created: 2023-10-01T17:46:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-01T17:53:58.000Z (over 1 year ago)
- Last Synced: 2024-11-04T08:38:11.864Z (3 months ago)
- Topics: diversity-maintenance, evolutionary-algorithms, genetic-algorithms, nim
- Homepage:
- Size: 526 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## FUSS - Nim (wip)
Implementation of FUSS (Fitness Uniform Selection), a selection method proposed by Marcus Hutter himself for maintaining diversity in evolutionary algorithms, in Nim
Basically will be a rewrite of FUSS in C
## Citations
```bibtex
@article{Hutter_2006,
doi = {10.1109/tevc.2005.863127},
url = {https://doi.org/10.1109%2Ftevc.2005.863127},
year = 2006,
month = {oct},
publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},
volume = {10},
number = {5},
pages = {568--589},
author = {M. Hutter and S. Legg},
title = {Fitness uniform optimization},
journal = {{IEEE} Transactions on Evolutionary Computation}
}
```