Neighborhood Algorithm Optimization and Ensemble Appraisal
Project description
Python 3 implementation of “neighborhood algorithm” direct-search optimization and Bayesian ensemble appraisal. In short, a nearest-neighbor interpolant based on Voronoi polygons is used to interpolate the misfit (search) and posterior probability (appraisal) to allow efficient sampling and integration for high-dimensional problems. Details on theory and implementation are supplied in the references.
To generate the example figure above, you can run the internal demo, like so:
import neighborhood as nbr
nbr.demo_search(ndim=4, nsamp=10, nresamp=5, niter=500)
Equivalently, you can do the following:
import neighborhood as nbr
num_dim = 4
srch = nbr.Searcher(
objective=nbr.rosenbrock,
limits=[(-1.5, 1.5) for _ in range(num_dim)],
num_samp=10,
num_resamp=5,
maximize=False,
verbose=True
)
srch.update(500)
srch.plot()
Status
Optimization is implemented, ensemble appraisal is in progress.
Testing
This project uses pytest for unit testing. The aim is not to be exhuastive, but to provide reasonable assurances that everything works as advertised. To run, simply call pytest --verbose from somewhere in this package.
Release
Release versions are tagged in the repository, built as distributions, and uploaded to PyPI. The minimal commands to do this are:
# update PyPI-readable README
pandoc --from=markdown --to=rst --output=README.rst README.md
# build with setuptools
python3 setup.py sdist bdist_wheel
# upload to PyPI test server (then check it out)
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# upload to PyPI
twine upload dist/*
# tag release in git repo
git tag -a X.X.X -m "vX.X.X"
git push origin --tags
References
Sambridge, M. (1999). Geophysical inversion with a neighbourhood algorithm - I. Searching a parameter space. Geophysical Journal International, 138(2), 479–494. http://doi.org/10.1046/j.1365-246X.1999.00876.x
Sambridge, M. (1999). Geophysical inversion with a neighborhood algorithm -
Appraising the ensemble. Geophys, J. Int., 138, 727–746. http://doi.org/10.1046/j.1365-246x.1999.00900.x
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
Built Distribution
File details
Details for the file neighborhood-0.1.1.tar.gz
.
File metadata
- Download URL: neighborhood-0.1.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0355ec5e0fe292814caeee3fbdff51bbe18d34f79ae490cd0574bff290b871d3 |
|
MD5 | e0fbe4faf20ace6fbd076f5d8457c2c2 |
|
BLAKE2b-256 | 7f5fa211bd7d7801e3fbe7576b79baa80afa3806cdf49dbf4735a41396913f91 |
File details
Details for the file neighborhood-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: neighborhood-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb4fea44253f0521f2953231e3122fb1358141d1064704093df72d52a82b9a35 |
|
MD5 | 7ce6de9ceab1e13e4c4223ac879960fe |
|
BLAKE2b-256 | 876ad6fb49e1da702779d58940df16834c54bdae1b4f62f0f0b7410d0c54033f |