Skip to main content

pyticle

A Python Library for Particle Swarm Intelligence

Build Status

This package implements the Particle Swarm Optimization (PSO) algorithm in pure python. The only thing you need to is installing the package and call it with the right parameters!

PSO is an interactive meta-heuristic algorithm that uses "particles" as a candidates for solutions. The goal is to move the particles towards the global/local minimum in each iteration.

Installation

Simply install this package by running the following command:

pip install pyticle 

Usage

To minimize the 2D function my_func in range [-15, 10] using 100 particles via 80 iterations:

from pyticle.swarm_optimization import SwarmOptimization
optimizer = SwarmOptimization(cost_func=my_func, particle_num=100, omega_start=1, omega_end=0.0,
 coef=[2.0, 2.0], low_bound=-15.0, high_bound=10,
 boundary_strategy='random', var_size=2, max_iter_num=80, elite_rate=0.1)
optimizer.optimize()

Demo

In this section, you can see the results of using this package for two simple 2D benchmarks. To run the benchmarks, run:

from pyticle.demo_run import demo_run
demo_run()

The Sphere Function

Here is the evolution of 100 particles in 100 iterations to find the minimum of the Sphere function:

Here is the changes in the minimum, average, and maximum values of the cost function of all particles over time:

The Ackley Function

Same as the previous example, this is the evolution of 100 particles in 100 iterations to find the minimum of the Ackley function:

Here is the changes in the minimum, average, and maximum values of the cost function of all particles over time:

Contribution

You are very welcome to contribute to this project with your code (as pull-requests), mention the bugs or ask for new features (as GitHub Issues), or just tell your friends about it!

You can also directly contact me by email.  

Release files for pyticle 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyticle 0.0.3
File Size Uploaded
pyticle-0.0.3.tar.gz 7.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pyticle 0.0.3
File Interpreter ABI Platform
pyticle-0.0.3-py3-none-any.whl Python 3 none any Details

Total release size: 16.3 kB

Release files / pyticle-0.0.3.tar.gz

Download URL pyticle-0.0.3.tar.gz
Size 7.5 kB
Tags Source
SHA-256 checksum
How to use checksums
5ac0a42f421e11e07eae24198a90c52b86aa07393b434e3c605053988a620ce1
BLAKE2b-256 checksum
How to use checksums
f9481db7e12610139ded43b00b9805597a61f647118a1f709232853072942c9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

Release files / pyticle-0.0.3-py3-none-any.whl

Download URL pyticle-0.0.3-py3-none-any.whl
Size 8.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
673ccdbe812c4d459faaf31269f46d3a27ead3e524a34b38a41bbf870f093296
BLAKE2b-256 checksum
How to use checksums
e38bde68c21ee688a24a2aa399762c675d45dd0bfe2a73f3c87d97b7df2e80e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

Release history Release notifications | RSS feed

This release

0.0.3 This release

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page