Skip to main content

No project description provided

Project description

SLPso - Social Learning Particle Swarm Optimization

License Python 3.10

SLPso is a Python library that implements the Social Learning Particle Swarm Optimization (SL-PSO) algorithm for scalable optimization problems.

About the Algorithm

This library used this article as a basis:

A Social Learning Particle Swarm Optimization Algorithm for Scalable Optimization Authors: Ran Cheng and Yaochu Jin Journal: Information Sciences, Volume 291, Pages 43-60, Year 2015 DOI: 10.1016/j.ins.2014.08.039 URL to the Paper: Read the full paper

If you use the SLPso library in your research, please consider citing this library.

Reveal quote

SLPso - Social Learning Particle Swarm Optimization [Software]. (2023). Available at: https://github.com/vsg-root/slpso.

About SL-PSO

The Social Learning Particle Swarm Optimization is a population-based optimization algorithm inspired by the behavior of a swarm of particles. It leverages social interactions to enhance exploration of the search space and convergence to optimal solutions in scalable optimization problems.

Important Note

It is crucial to highlight that this library's performance did not match the results reported in the referenced paper. The following results were obtained through extensive experiments, each run 30 times for different dimensions, with 100 particles, and a total of 200,000 fitness evaluations for each experiment.

Installation

To get started with SLPso, you can install it via pip:

pip install slpso

Try your first SL-PSO program

>>> import numpy as np
>>> from slpso.slpso import SLPSO

>>> def custom_objective_function(positions: np.ndarray) -> np.ndarray:
    """
    The custom objective function to be minimized.

    Args:
        positions (np.ndarray): An array of particle positions.

    Returns:
        np.ndarray: An array of fitness values.
    """
>>>     return np.sum(positions ** 2, axis=1)

>>> lower_bound = -30.0  # Set the lower bound
>>> upper_bound = 30.0   # Set the upper bound

>>> slpso_optimizer = SLPSO(custom_objective_function,
                            seed=1,
                            lower_bound=lower_bound,
                            upper_bound=upper_bound,
                            show_progress=False)

>>> global_best_position, global_best_value = slpso_optimizer.optimize()
>>> print("Global Best Position:", global_best_position)
>>> print("Global Best Value:", global_best_value)

Note: This library is not affiliated with or endorsed by the original researchers. It is an independent implementation of the SL-PSO algorithm for the convenience of users interested in applying it to their optimization problems. Please do not confuse this library with the work of the original authors.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

slpso-0.1.2.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

slpso-0.1.2-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file slpso-0.1.2.tar.gz.

File metadata

  • Download URL: slpso-0.1.2.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.9 Linux/6.2.6-76060206-generic

File hashes

Hashes for slpso-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a719978e5aee9c939636cb9d1968575ac94aa1468a0822f8f705a2e161bfaa23
MD5 32251bf5e68563bf4c20a5bbac2b0c63
BLAKE2b-256 464765d2c1eaf17440e40e8311a4e37b3266a6b1917013af384829c5d5089fa1

See more details on using hashes here.

File details

Details for the file slpso-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: slpso-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.9 Linux/6.2.6-76060206-generic

File hashes

Hashes for slpso-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cfabd6158cf7e053e871c178445a3acfce7354920df78819186a7f5ee917faed
MD5 f3e0ed72bfbfb59c2fb62dd8938f5f9e
BLAKE2b-256 05b1775745054e9f3a944f6d5914e808333b21730dbffcf12bd7b53b3347b8e0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page