Skip to content

Instantly share code, notes, and snippets.

@frankhart2018
Created September 1, 2020 19:24
Show Gist options
  • Save frankhart2018/3cee63273f1e32ed4e5092d1c787ebe2 to your computer and use it in GitHub Desktop.
Save frankhart2018/3cee63273f1e32ed4e5092d1c787ebe2 to your computer and use it in GitHub Desktop.
Pygeneses grid search
from pygeneses.hypertune import HyperTune
tuner = HyperTune(model_class='PrimaVita',
hyperparameters=['initial_energy', 'max_age', 'kill_type'],
values=[[100, 200], [10, 50, 90], ['difference', 'random']],
stop_at=2000)
tuner.hypertuner()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment