industrial-optimization-group / Desdeo

Licence: mpl-2.0
An open source framework for interactive multiobjective optimization methods

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Desdeo

Eaopt
🍀 Evolutionary optimization library for Go (genetic algorithm, partical swarm optimization, differential evolution)
Stars: ✭ 718 (+8875%)
Mutual labels:  optimization
Wheels
Performance-optimized wheels for TensorFlow (SSE, AVX, FMA, XLA, MPI)
Stars: ✭ 891 (+11037.5%)
Mutual labels:  optimization
Erlscp
Erlang Supercompiler
Stars: ✭ 23 (+187.5%)
Mutual labels:  optimization
Su2
SU2: An Open-Source Suite for Multiphysics Simulation and Design
Stars: ✭ 731 (+9037.5%)
Mutual labels:  optimization
D912pxy
DirectX9 to DirectX12 API proxy for Guild Wars 2
Stars: ✭ 833 (+10312.5%)
Mutual labels:  optimization
Vs Net
Variable splitting network for accelerated parallel MRI reconstruction
Stars: ✭ 22 (+175%)
Mutual labels:  optimization
Closure Compiler
A JavaScript checker and optimizer.
Stars: ✭ 6,277 (+78362.5%)
Mutual labels:  optimization
Rl Baselines Zoo
A collection of 100+ pre-trained RL agents using Stable Baselines, training and hyperparameter optimization included.
Stars: ✭ 839 (+10387.5%)
Mutual labels:  optimization
Liblaml
A stand-alone pure C++ library for linear algebra and machine learning
Stars: ✭ 7 (-12.5%)
Mutual labels:  optimization
Chama
Python package for sensor placement optimization
Stars: ✭ 23 (+187.5%)
Mutual labels:  optimization
Pyswarms
A research toolkit for particle swarm optimization in Python
Stars: ✭ 742 (+9175%)
Mutual labels:  optimization
React Ssr Optimization
React.js server-side rendering optimization with component memoization and templatization
Stars: ✭ 806 (+9975%)
Mutual labels:  optimization
Owl
Owl - OCaml Scientific and Engineering Computing @ http://ocaml.xyz
Stars: ✭ 919 (+11387.5%)
Mutual labels:  optimization
Nuxt Optimized Images
🌅🚀 Automatically optimizes images used in Nuxt.js projects (JPEG, PNG, SVG, WebP and GIF).
Stars: ✭ 717 (+8862.5%)
Mutual labels:  optimization
React Optimized Image
Easy to use React components for optimized-images-loader / next-optimized-images.
Stars: ✭ 24 (+200%)
Mutual labels:  optimization
Opticss
A CSS Optimizer
Stars: ✭ 716 (+8850%)
Mutual labels:  optimization
Shift Scheduling
Shift Scheduling for workforce
Stars: ✭ 22 (+175%)
Mutual labels:  optimization
Bfgs Neldermead Trustregion
Python implementation of some numerical (optimization) methods
Stars: ✭ 8 (+0%)
Mutual labels:  optimization
Forte
Designing generative structures by interactive sketching
Stars: ✭ 25 (+212.5%)
Mutual labels:  optimization
Mobius Assignment
Staffjoy Suite (V1) Microservice - Shift Assignment Subject To Constraints
Stars: ✭ 23 (+187.5%)
Mutual labels:  optimization

DESDEO README

Available on PyPI Documentation Status Build Status Code style: black

DESDEO is a free and open source Python-based framework for developing and experimenting with interactive multiobjective optimization.

Documentation is available.

Background and publications available on the University of Jyväskylä Research Group in Industrial Optimization web pages.

Try in your browser

You can try a guided example problem in your browser: choose how to deal with river pollution using NIMBUS. You can also browse the other examples.

What is interactive multiobjective optimization?

There exist many methods to solve multiobjective optimization problems. Methods which introduce some preference information into the solution process are commonly known as multiple criteria decision making methods. When using so called interactive methods, the decision maker (DM) takes an active part in an iterative solution process by expressing preference information at several iterations. According to the given preferences, the solution process is updated at each iteration and one or several new solutions are generated. This iterative process continues until the DM is sufficiently satisfied with one of the solutions found.

Many interactive methods have been proposed and they differ from each other e.g. in the way preferences are expressed and how the preferences are utilized when new solutions. The aim of the DESDEO is to implement aspects common for different interactive methods, as well as provide framework for developing and implementing new methods.

Installation

From conda-forge using Conda

This is the recommended installation method, especially for those who are newer to Python. First download and install the Anaconda Python distribution.

Next, run the following commands in a terminal:

conda config --add channels conda-forge
conda install desdeo desdeo-vis

Note: if you prefer not to install the full Anaconda distribution, you can install miniconda instead.

From PyPI using pip

Assuming you have Pip and Python 3 installed, you can install desdeo from PyPI by running the following command in a terminal:

pip install desdeo[vis]

This installs desdeo and desdeo-vis, which you will also want in most cases.

Getting started with example problems

To proceed with this section, you must first install Jupyter notebook. If you're using Anaconda, you already have it!

You can copy the example notebooks to the current directory by running:

python -m desdeo_notebooks

You can then open them using Jupyter notebook by running:

jupyter notebook

After trying out the examples, the next step is to read the full documentation.

Development

Set-up

You should install the git pre-commit hook so that code formatting is kept consistent automatically. This is configured using the pre-commit utility. See the installation instructions. In short, pre-commit hook can be installed as

pip install --upgrade pre-commit
pre-commit install

If you are using pipenv for development, you can install desdeo and its dependencies after obtaining a git checkout like so:

pipenv install -e .[docs,dev,vis]

Tests

Tests use pytest. After installing pytest you can run:

pytest tests

Release process

  1. Make a release commit in which the version is incremented in setup.py and an entry added to HISTORY.md

  2. Make a git tag of this commit with git tag v$VERSION

  3. Push -- including the tags with git push --tags

  4. Upload to PyPI with python setup.py sdist bdist_wheel and twine upload dist/*

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].