For example, I would like to find the best fitness score for a list of
input values like:
inputs = {
'param1': {'min': 1, 'max': 10},
'param2': {'min': 50, 'max': 100},
'param3': {'min': 1000, 'max': 10000},
}
Currently I to set the min range to 1, and the max to 10,000, then try
to filter out values that exceed the min/max range for each param in
the fitness function, but it seems like this is a really slow way to
do
it.
Does anyone have some suggestions on how I could do this more
efficiently?