Scipy interface to NLOPT
Project description
SpiNopt: a Scipy optimization interface to NLOPT
For optimization, everyone starts out with the Scipy optimization library, but, at some point, you might want to try something else. NLOPT is a great library, but can be quite a hassle rewrite your code to use it.
This package provides a Scipy interface to the NLOPT optimization library. It's aim is not to provide a complete ecosystem which different solvers are available, but merely a way to quickly connect the NLOPT solvers, once you already have something set up with Scipy, or are familiar with how to set something up with Scipy.
Basic example
import numpy as np
from spinopt import NLOptimizer
dim = 3
# Define objective in this way
def my_easy_func(x, grad):
if grad.size > 0:
grad[:] = 2 * (x - np.arange(len(x)))
x = x - np.arange(len(x))
return x.dot(x)
# Define constraints Scipy style
A = np.ones((1, dim))
b = np.ones((1, 1))
constraints = [{"type": "eq", "jac": lambda w: A, "fun": lambda w: A.dot(w) - b.squeeze()}]
# Initialize optimizer
x0=np.zeros(dim)
opt = NLOptimizer(my_easy_func, x0, constraints=constraints)
# Optimize
res = opt.minimize()
assert res.success
assert np.allclose(res.x, np.arange(dim), atol=1e-5)
Installation
To install from PyPI:
pip install spinopt
To install the latest development version from github:
pip install git+https://github.com/mvds314/spinopt.git
Development
For development purposes, clone the repo:
git clone https://github.com/mvds314/spinopt.git
Then navigate to the folder containing setup.py and run
pip install -e .
to install the package in edit mode.
Run unittests with pytest.
Related software
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file spinopt-24.7.0.tar.gz.
File metadata
- Download URL: spinopt-24.7.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0306dd5a909e58d4112b8d7c410d9f659b07bd47c81d916ce1857a040eb448fa
|
|
| MD5 |
9dd9259df0cbf3855cf1a5b8f6cbbbc8
|
|
| BLAKE2b-256 |
a9e786dd6083631e38a58420b88516da9364abf3af37793436f9af8836522c36
|
File details
Details for the file spinopt-24.7.0-py2.py3-none-any.whl.
File metadata
- Download URL: spinopt-24.7.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe54d191cdca43df828187342fd3163ac4bceb2252ff024a7258893e66539205
|
|
| MD5 |
8652c09e1ed4b84b773851254741bd0c
|
|
| BLAKE2b-256 |
ab080bac65120e5e76ace146ce6c2113a14a6e1b60e2e5d706423074a33b9e29
|