for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# encoding=utf8
# This is temporary fix to import module from parent folder
# It will be removed when package is published on PyPI
import sys
sys.path.append('../')
# End of fix
from NiaPy.algorithms.basic import HarmonySearchV1
from NiaPy.task import StoppingTask
from NiaPy.benchmarks import Sphere
# we will run Bat Algorithm for 5 independent runs
algo = HarmonySearchV1()
for i in range(5):
task = StoppingTask(D=10, nGEN=1000, benchmark=Sphere())
best = algo.run(task)
print('%s -> %s' % (best[0], best[1]))
print(algo.getParameters())
# vim: tabstop=3 noexpandtab shiftwidth=3 softtabstop=3