GCN-CBO

class gob.optimizers.particles.common_noise.GCN.GCN_CBO.GCN_CBO(bounds, n_particles=200, iter=1000, dt=0.1, lam=1, epsilon=0.01, beta=1, sigma=5.1, alpha=1, sigma_noise=1, independent_noise=True, verbose=False)[source]

Bases: CPP_Optimizer

Interface for the Geometric Common Noise CBO optimizer.

Parameters:
  • bounds (ndarray) – The bounds of the search space.

  • n_particles (int) – The number of particles.

  • iter (int) – The number of iterations.

  • dt (float) – The time step.

  • lam (float) – The attraction parameter.

  • epsilon (float) – The smooth-heaviside parameter.

  • beta (float) – The inverse temperature.

  • sigma (float) – The standard deviation of the Gaussian noise.

  • alpha (float) – The coefficient to decrease the step size.

  • sigma_noise (float) – The kernel bandwidth for the common noise.

  • independent_noise (bool) – Whether to use independent noise for each particle.

  • verbose (bool) – Whether to print information about the optimization process.