Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| #Differential Evolution Basic Options | |
| #------------------------------------ | |
| #General options | |
| max_num_runs = 500 #number of planned runs | |
| target_cost = 0.1 #cost to beat | |
| #Differential evolution controller options | |
| controller_type = 'differential_evolution' | |
| num_params = 1 #number of parameters | |
| min_boundary = [-4.8] #minimum boundary | |
| max_boundary = [10.0] #maximum boundary | |
| trust_region = 0.6 #maximum % move distance from best params | |
| first_params = [5.3] #first parameters to try | |