├── .gitignore ├── LICENSE ├── README.md ├── brute_force_fn.py ├── cma_es_fn.py ├── data.py ├── environment.yml ├── figure.png ├── helper_fn.py ├── main.py ├── map_elites_fn.py ├── model.py ├── natural_niches_fn.py └── plotting.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/README.md -------------------------------------------------------------------------------- /brute_force_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/brute_force_fn.py -------------------------------------------------------------------------------- /cma_es_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/cma_es_fn.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/data.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/environment.yml -------------------------------------------------------------------------------- /figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/figure.png -------------------------------------------------------------------------------- /helper_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/helper_fn.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/main.py -------------------------------------------------------------------------------- /map_elites_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/map_elites_fn.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/model.py -------------------------------------------------------------------------------- /natural_niches_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/natural_niches_fn.py -------------------------------------------------------------------------------- /plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/natural_niches/HEAD/plotting.ipynb --------------------------------------------------------------------------------