| optimizer_pso | R Documentation |
Creates a Particle Swarm Optimization optimizer object.
optimizer_pso(
pop_size = 30,
max_iter = 100,
w = 0.7,
c1 = 1.5,
c2 = 1.5,
velocity_clamp = NULL
)
pop_size |
Population size. |
max_iter |
Maximum number of iterations. |
w |
Inertia weight. |
c1 |
Cognitive acceleration coefficient. |
c2 |
Social acceleration coefficient. |
velocity_clamp |
Optional maximum absolute velocity. If |
An object of class "met_optimizer".
Kennedy, J., and Eberhart, R. (1995). Particle Swarm Optimization. Proceedings of ICNN'95 - International Conference on Neural Networks, 4, 1942–1948. doi:10.1109/ICNN.1995.488968
optimizer_pso()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.