Skip to main content

Fraunhofer IWES optimization tools in Python

Project description

iwopy

Fraunhofer IWES optimization tools in Python

IWOPY Logo

Overview

The iwopy package is in fact a meta package that provides interfaces to other open-source Python optimization packages out there. Currently this includes

iwopy can thus be understood as an attempt to provide the best of all worlds when it comes to solving optimization problems with Python. This has not yet been achieved, since above list of accessable optimization packages is obviously incomplete, but it's a start. All the credit for implementing the invoked optimizers goes to the original package providers.

The basic idea of iwopy is to provide abstract base classes, that can be concretized for any kind of problem by the users, and the corresponding solver interfaces. However, also some helpful problem wrappers and an original optimizer are provided in addition:

  • Problem wrapper LocalFD: Calculates derivatives by finite differences
  • Problem wrapper RegularDiscretizationGrid: Puts the problem on a Grid
  • Optimizer GG: Greedy Gradient optimization with constraints

All calculations support vectorized evaluation of a complete population of parameters. This is useful for heuristic approaches like genetic algorithms, but also for evaluating gradients. It can lead to a vast speed-up and should be invoked whenever possible. Check the examples (or the API) for details.

Documentation: https://fraunhoferiwes.github.io/iwopy

Source code: https://github.com/FraunhoferIWES/iwopy

PyPi reference: https://pypi.org/project/iwopy/

Anaconda reference: https://anaconda.org/conda-forge/iwopy

Citation

Please cite the JOSS paper IWOPY: Fraunhofer IWES optimization tools in Python

DOI

Bibtex:

@article{Schulte2024,
   doi = {10.21105/joss.06014},
   url = {https://doi.org/10.21105/joss.06014},
   year = {2024},
   publisher = {The Open Journal},
   volume = {9},
   number = {102},
   pages = {6014},
   author = {Jonas Schulte},
   title = {IWOPY: Fraunhofer IWES optimization tools in Python},
   journal = {Journal of Open Source Software}
}

Requirements

The supported Python versions are:

  • Python 3.9
  • Python 3.10
  • Python 3.11
  • Python 3.12
  • Python 3.13

Installation via pip

Virtual Python environment

We recommend working in a Python virtual environment and install iwopy there. Such an environment can be created by

python -m venv /path/to/my_venv

and afterwards be activated by

source /path/to/my_venv/bin/activate

Note that in the above commands /path/to/my_venv is a placeholder that should be replaced by a path to a (non-existing) folder of your choice, for example ~/venv/iwopy.

All subsequent installation commands via pip can then be executed directly within the active environment without changes. After your work with iwopy is done you can leave the environment by the command deactivate.

Standard users

As a standard user, you can install the latest release via pip by

pip install iwopy

This in general corresponds to the main branch at github. Alternatively, you can decide to install the latest pre-release developments (non-stable) by

pip install git+https://github.com/FraunhoferIWES/iwopy@dev#egg=iwopy

Notice that the above default installation does not install the third-party optimization packages. iwopy will tell you in an error message that it is missing a package, with a hint of installation advice. You can avoid this step by installing all supported optimzer packages by installing those optoinal packages by addig [opt]:

pip install iwopy[opt]

or

pip install git+https://github.com/FraunhoferIWES/iwopy@dev#egg=iwopy[opt]

Developers

The first step as a developer is to clone the iwopy repository by

git clone https://github.com/FraunhoferIWES/iwopy.git

Enter the root directory by

cd iwopy

Then you can either install from this directory via

pip install -e .

Notice that the above default installation does not install the third-party optimization packages. iwopy will tell you in an error message that it is missing a package, with a hint of installation advice. You can avoid this step by installing all supported optimzer packages by installing those optoinal packages by addig [opt]:

pip install -e .[opt]

Installation via conda

Preparation (optional)

It is strongly recommend to use the libmamba dependency solver instead of the default solver. Install it once by

conda install conda-libmamba-solver -n base -c conda-forge

We recommend that you set this to be your default solver, by

conda config --set solver libmamba

Standard users

The iwopy package is available on the channel conda-forge. You can install the latest version by

conda install -c conda-forge iwopy

Developers

For developers using conda, we recommend first installing iwopy as described above, then removing only the iwopy package while keeping the dependencies, and then adding iwopy again from a git using conda develop:

conda install iwopy conda-build -c conda-forge
conda remove iwopy --force
git clone https://github.com/FraunhoferIWES/iwopy.git
cd iwopy
conda develop .

Concerning the git clone line, we actually recommend that you fork iwopy on GitHub and then replace that command by cloning your fork instead.

Testing

For testing, please clone the repository and install the required dependencies (flake8, pytest, pygmo, pymoo):

git clone https://github.com/FraunhoferIWES/iwopy.git
cd iwopy
pip install .[test]

If you are a developer you might want to replace the last line by

pip install -e .[test]

for dynamic installation from the local code base.

The tests are then run by

pytest tests

Contributing

Please feel invited to contribute to iwopy! Here is how:

  1. Fork iwopy on github.
  2. Create a branch (git checkout -b new_branch)
  3. Commit your changes (git commit -am "your awesome message")
  4. Push to the branch (git push origin new_branch)
  5. Create a pull request here

Support

For trouble shooting and support, please

  • raise an issue here,
  • or start a discussion here,
  • or contact the contributers.

Thanks for your help with improving iwopy!

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

iwopy-0.4.0.tar.gz (71.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iwopy-0.4.0-py3-none-any.whl (89.8 kB view details)

Uploaded Python 3

File details

Details for the file iwopy-0.4.0.tar.gz.

File metadata

  • Download URL: iwopy-0.4.0.tar.gz
  • Upload date:
  • Size: 71.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for iwopy-0.4.0.tar.gz
Algorithm Hash digest
SHA256 fb4ab639fb52e72644a745209126fa1b42865a43abc7f1b8d26f13745b3169d3
MD5 1b80d3cba250c6515dcea9c17b6001a5
BLAKE2b-256 3016a6c5d47b0e301ad8fd07d0f1c86b42053d0a8206121b288efd5339a21125

See more details on using hashes here.

Provenance

The following attestation bundles were made for iwopy-0.4.0.tar.gz:

Publisher: publish.yml on FraunhoferIWES/iwopy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iwopy-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: iwopy-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 89.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for iwopy-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3c911be4db4b49ca094bdc8e7cd77c217ff9349beaf8600692803f576cb2af83
MD5 800cb98abf7abb16de4742c091607972
BLAKE2b-256 a4f64a6a04f89b442af8a0909a4fb803bc243cfdaff2737d3f6fe3d97baefd32

See more details on using hashes here.

Provenance

The following attestation bundles were made for iwopy-0.4.0-py3-none-any.whl:

Publisher: publish.yml on FraunhoferIWES/iwopy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page