-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reference: #129 Added a new topology with random neighbors. Added documentation and a test file for it and reworked the documentation of the GeneralOptimizer class to incorporate all available topologies. Simplified the fixture function for the GeneralOptimizer class. Cited the relevant paper for the algorithm implemented. Updated the documentation of the Random class. Especially the __compute_neighbor() method. Added the comments inside the method to the docstring and deleted irrelevant comments. Changed the nested for-loops to one loop with the itertools library. Added a new test for the return value of the __compute_neighbor() method, which checks the shape and the symmetry. Added a new test for the return value of the __compute_neighbors() method, which compares the returned matrix with a preset comparison matrix using a seed. Signed-off-by: Lester James V. Miranda <[email protected]> Committed-by: @whzup
- Loading branch information
1 parent
3d5e346
commit cca8d3c
Showing
9 changed files
with
408 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
A Random Network Topology | ||
This class implements a random topology. All particles are connected in a random fashion. | ||
""" | ||
|
||
# Import from stdlib | ||
import logging | ||
import itertools | ||
|
||
# Import modules | ||
import numpy as np | ||
from scipy.sparse.csgraph import connected_components, dijkstra | ||
|
||
# Import from package | ||
from ..import operators as ops | ||
from .base import Topology | ||
|
||
# Create a logger | ||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class Random(Topology): | ||
def __init__(self): | ||
super(Random, self).__init__() | ||
|
||
def compute_gbest(self, swarm, k): | ||
"""Update the global best using a random neighborhood approach | ||
This uses random class from :code:`numpy` to give every particle k | ||
randomly distributed, non-equal neighbors. The resulting topology | ||
is a connected graph. The algorithm to obtain the neighbors was adapted | ||
from [TSWJ2013]. | ||
[TSWJ2013] Qingjian Ni and Jianming Deng, “A New Logistic Dynamic | ||
Particle Swarm Optimization Algorithm Based on Random Topology,” | ||
The Scientific World Journal, vol. 2013, Article ID 409167, 8 pages, 2013. | ||
https://doi.org/10.1155/2013/409167. | ||
Parameters | ||
---------- | ||
swarm : pyswarms.backend.swarms.Swarm | ||
a Swarm instance | ||
k : int | ||
number of neighbors to be considered. Must be a | ||
positive integer less than :code:`n_particles-1` | ||
Returns | ||
------- | ||
numpy.ndarray | ||
Best position of shape :code:`(n_dimensions, )` | ||
float | ||
Best cost | ||
""" | ||
try: | ||
adj_matrix = self.__compute_neighbors(swarm, k) | ||
idx = np.array([adj_matrix[i].nonzero()[0] for i in range(swarm.n_particles)]) | ||
idx_min = np.array([swarm.pbest_cost[idx[i]].argmin() for i in range(len(idx))]) | ||
best_neighbor = np.array([idx[i][idx_min[i]] for i in range(len(idx))]).astype(int) | ||
|
||
# Obtain best cost and position | ||
best_cost = np.min(swarm.pbest_cost[best_neighbor]) | ||
best_pos = swarm.pbest_pos[ | ||
np.argmin(swarm.pbest_cost[best_neighbor]) | ||
] | ||
|
||
except AttributeError: | ||
msg = "Please pass a Swarm class. You passed {}".format( | ||
type(swarm) | ||
) | ||
logger.error(msg) | ||
raise | ||
else: | ||
return (best_pos, best_cost) | ||
|
||
def compute_velocity(self, swarm, clamp=None): | ||
"""Compute the velocity matrix | ||
This method updates the velocity matrix using the best and current | ||
positions of the swarm. The velocity matrix is computed using the | ||
cognitive and social terms of the swarm. | ||
A sample usage can be seen with the following: | ||
.. code-block :: python | ||
import pyswarms.backend as P | ||
from pyswarms.swarms.backend import Swarm | ||
from pyswarms.backend.topology import Random | ||
my_swarm = P.create_swarm(n_particles, dimensions) | ||
my_topology = Random() | ||
for i in range(iters): | ||
# Inside the for-loop | ||
my_swarm.velocity = my_topology.update_velocity(my_swarm, clamp) | ||
Parameters | ||
---------- | ||
swarm : pyswarms.backend.swarms.Swarm | ||
a Swarm instance | ||
clamp : tuple of floats (default is :code:`None`) | ||
a tuple of size 2 where the first entry is the minimum velocity | ||
and the second entry is the maximum velocity. It | ||
sets the limits for velocity clamping. | ||
Returns | ||
------- | ||
numpy.ndarray | ||
Updated velocity matrix | ||
""" | ||
return ops.compute_velocity(swarm, clamp) | ||
|
||
def compute_position(self, swarm, bounds=None): | ||
"""Update the position matrix | ||
This method updates the position matrix given the current position and | ||
the velocity. If bounded, it waives updating the position. | ||
Parameters | ||
---------- | ||
swarm : pyswarms.backend.swarms.Swarm | ||
a Swarm instance | ||
bounds : tuple of :code:`np.ndarray` or list (default is :code:`None`) | ||
a tuple of size 2 where the first entry is the minimum bound while | ||
the second entry is the maximum bound. Each array must be of shape | ||
:code:`(dimensions,)`. | ||
Returns | ||
------- | ||
numpy.ndarray | ||
New position-matrix | ||
""" | ||
return ops.compute_position(swarm, bounds) | ||
|
||
def __compute_neighbors(self, swarm, k): | ||
"""Helper method to compute the adjacency matrix of the topology | ||
This method computes the adjacency matrix of the topology using | ||
the randomized algorithm proposed in [TSWJ2013]. The resulting | ||
topology is a connected graph. This is achieved by creating three | ||
matrices: | ||
* adj_matrix : The adjacency matrix of the generated graph. | ||
It's initialized as an identity matrix to | ||
make sure that every particle has itself as | ||
a neighbour. This matrix is the return | ||
value of the method. | ||
* neighbor_matrix : The matrix of randomly generated neighbors. | ||
This matrix is a matrix of shape | ||
:code:`(swarm.n_particles, k)`: | ||
with randomly generated elements. It's used | ||
to create connections in the adj_matrix. | ||
* dist_matrix : The distance matrix computed with Dijkstra's | ||
algorithm. It is used to determine where the | ||
graph needs edges to change it to a connected | ||
graph. | ||
.. note:: If the graph isn't connected, it is possible that the | ||
PSO algorithm does not find the best position within | ||
the swarm. | ||
Parameters | ||
---------- | ||
swarm : pyswarms.backend.swarms.Swarm | ||
a Swarm instance | ||
k : int | ||
number of neighbors to be considered. Must be a | ||
positive integer less than :code:`n_particles-1` | ||
Returns | ||
------- | ||
numpy.ndarray | ||
Adjacency matrix of the topology | ||
""" | ||
|
||
adj_matrix = np.identity(swarm.n_particles, dtype=int) | ||
|
||
neighbor_matrix = np.array( | ||
[np.random.choice( | ||
# Exclude i from the array | ||
np.setdiff1d( | ||
np.arange(swarm.n_particles), np.array([i]) | ||
), k, replace=False | ||
) for i in range(swarm.n_particles)]) | ||
|
||
# Set random elements to one using the neighbor matrix | ||
adj_matrix[np.arange(swarm.n_particles).reshape(swarm.n_particles, 1), neighbor_matrix] = 1 | ||
adj_matrix[neighbor_matrix, np.arange(swarm.n_particles).reshape(swarm.n_particles, 1)] = 1 | ||
|
||
dist_matrix = dijkstra(adj_matrix, directed=False, return_predecessors=False, unweighted=True) | ||
|
||
# Generate connected graph. | ||
while connected_components(adj_matrix, directed=False, return_labels=False) != 1: | ||
for i, j in itertools.product(range(swarm.n_particles), repeat=2): | ||
if dist_matrix[i][j] == 0: | ||
adj_matrix[i][j] = 1 | ||
|
||
return adj_matrix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.