Skip to main content

Bat algorithm implementation

Project description

Bat Algorithm in Python

Objective

The main objective is to create an implementation of bat algorithm in Python programming language.

Installation

pip install BatAlgorithm

Example

The following example presents a simple use of bat algorithm. Fun() denotes the objective function that may be changed by the user. Control parameters should be defined within BatAlgorithm() constructor. Order of parameters is as follows: BatAlgorithm(D, NP, N_Gen, A, r, Qmin, Qmax, Lower, Upper, function) where:

  • D denotes dimension of the problem,
  • NP denotes population size,
  • N_Gen denotes number of generations (iterations),
  • A parameter denotes loudness,
  • r parameter denotes pulse rate,
  • Qmin parameter denotes frequency minimum,
  • Qmax parameter denotes frequency maximum,
  • Lower denotes lower bound,
  • Upper denotes upper bound and
  • function passes objective function.

CODE EXAMPLE:

import random
from BatAlgorithm import *

def Fun(D, sol):
    val = 0.0
    for i in range(D):
        val = val + sol[i] * sol[i]
    return val

# For reproducive results
#random.seed(5)

for i in range(10):
    Algorithm = BatAlgorithm(10, 40, 1000, 0.5, 0.5, 0.0, 2.0, -10.0, 10.0, Fun)
    Algorithm.move_bat()

Bugs

Bugs and extension should be send via Github.

Authors

Iztok Fister Jr. and Marko Burjek

References

Yang, X.-S. "A new metaheuristic bat-inspired algorithm." Nature inspired cooperative strategies for optimization (NICSO 2010). Springer Berlin Heidelberg, 2010. 65-74.

Fister, I. Jr., Fister, I., Yang, X.-S., Fong, S., Zhuang, Y. "Bat algorithm: Recent advances." IEEE 15th International Symposium on Computational Intelligence and Informatics (CINTI), IEEE, 2014. 163-167.

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

BatAlgorithm-0.3.1.tar.gz (3.0 kB view details)

Uploaded Source

File details

Details for the file BatAlgorithm-0.3.1.tar.gz.

File metadata

  • Download URL: BatAlgorithm-0.3.1.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for BatAlgorithm-0.3.1.tar.gz
Algorithm Hash digest
SHA256 7dfb034272700fba8c9f77102fb5929ca838a938d2a2098283f1d167b293b7cc
MD5 d8e3e0f9938c39359cd6bd89a02537d4
BLAKE2b-256 a6c22912eea1d744bb60603ad7060f3719863114b96d43d97996540d50bfd6f9

See more details on using hashes here.

Supported by

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