DESDEO is a free and open source Python-based framework for developing and experimenting with interactive multiobjective optimization.
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.
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.
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.
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.
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.
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 use pytest. After installing pytest you can run:
pytest tests
-
Make a release commit in which the version is incremented in setup.py and an entry added to HISTORY.md
-
Make a git tag of this commit with
git tag v$VERSION
-
Push -- including the tags with
git push --tags
-
Upload to PyPI with
python setup.py sdist bdist_wheel
andtwine upload dist/*