A toolkit for doing parameter surveys
Project description
paramsurvey
paramsurvey is a set of tools for creating and executing parameter surveys.
paramsurvey has a pluggable parallel backend. The supported backends at present
are python's multiprocessing module, and computing cluster software ray
. An mpi
backend is planned.
Example
import paramsurvey
from paramsurvey.examples import sleep_worker
paramsurvey.init(backend='multiprocessing') # or 'ray', if you installed it
psets = [{'duration': 0.3}] * 5
results = paramsurvey.map(sleep_worker, psets, verbose=2)
for r in results:
print(repr(r))
prints, in addition to some debugging output, a result from each of the 5 sleep_worker calls.
Philosophy
Installing
$ pip install paramsurvey
$ pip install paramsurvey[ray]
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
paramsurvey-0.2.1.tar.gz
(21.2 kB
view details)
File details
Details for the file paramsurvey-0.2.1.tar.gz
.
File metadata
- Download URL: paramsurvey-0.2.1.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a29d7da7e4789b247e3c903b9cb3bbe5bb7c7cd39135ba6246d27c1bd76413e |
|
MD5 | 2c631ff8a28976fee0d1185c557196c0 |
|
BLAKE2b-256 | a31944aa8cad651c6e96f811bfc15ad402fc261c1d4580c2d9962c06ec495738 |