Python Optimization Asynchronous Plumbing.
Project description
POAP provides an event-driven framework for building and combining asynchronous optimization strategies. A typical optimization code written with POAP might look like:
from poap.strategy import FixedSampleStrategy
from poap.strategy import CheckWorkStrategy
from poap.controller import ThreadController
from poap.controller import BasicWorkerThread
# samples = list of sample points ...
controller = ThreadController()
sampler = FixedSampleStrategy(samples)
controller.strategy = CheckWorkerStrategy(controller, sampler)
for i in range(NUM_WORKERS):
t = BasicWorkerThread(controller, objective)
controller.launch_worker(t)
result = controller.run()
print 'Best result: {0} at {1}'.format(result.value, result.params)
The basic ingredients are a controller capable of asking workers to run function evaluations and a strategy for choosing where to sample. The strategies send the controller proposed actions, which the controller then accepts or rejects; the controller, in turn, informs the strategies of relevant events through callback functions.
Most users will probably want to provide their own strategies, controllers, or both.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
POAP-0.1.10.tar.gz
(19.2 kB
view hashes)
Built Distribution
POAP-0.1.10-py2.py3-none-any.whl
(24.2 kB
view hashes)
Close
Hashes for POAP-0.1.10-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8178604a8b60f77d925af95b0f1012f81cfe6cc4765987c4bbf36357e7a47706 |
|
MD5 | 6a8984794d0daaa6ab121bfc405015dc |
|
BLAKE2b-256 | 55e86de9c459017e859d85ca71e7e6dc047a484e923e70002e78000afdac44c2 |