Explain the intuition for the tol paramer in scipy differential evolution
问题 I am using the differential evolution optimizer in scipy and I don't understand the intuition behind the tol argument. Specifically is say in the documentation: tol: float, optional When the mean of the population energies, multiplied by tol, divided by the standard deviation of the population energies is greater than 1 the solving process terminates: convergence = mean(pop) * tol / stdev(pop) > 1 What does setting tol represent from a user perspective? 回答1: Maybe the formula in the