18 lines
342 B
Python
18 lines
342 B
Python
"""
|
|
global parameters and settings for the
|
|
neuroevolutionary system.
|
|
"""
|
|
|
|
# default if not otherwise specified
|
|
INIT_POPULATION_ID: str = "test"
|
|
|
|
EFF: float = 0.05
|
|
SURVIVAL_PERCENTAGE: float = 0.5
|
|
SPECIE_SIZE_LIMIT: int = 10
|
|
INIT_SPECIE_SIZE: int = 10
|
|
|
|
GENERATION_LIMIT: int = 1000
|
|
EVALUATIONS_LIMIT: int = 100_000
|
|
FITNESS_GOAL: float = 6000
|
|
|