Visualisations and Jupyter Notebook enabled preference selection widgets for the DESDEO interactive multiobjective optimization library.
Currently features:
- Parallel coordinate plots based on Vega v3.
- Preference selection for NIMBUS (first stage only).
Typically you should install this at the same time as DESDEO, by following the instructions there.
Run:
npm run watch
You will need to refresh your browser, and possibly reload the Jupyter kernel to see some changes.
Each notebook has two versions, one in the desdeo_notebooks
directory and one
in the desdeo_notebooks/output
directory. The version in the prior directory
should be scrubbed of all output and is the canonical copy. Currently they have
have to be kept in sync manually, e.g. by regenerating the output notebook from
the canonical version. When regenerating, make sure to save widget state with
Widgets > Save Notebook Widget State
.
If you are developing using a virtualenv (recommended) you may have trouble widget Javascript from outside the virtualenv getting picked up, meaning you can't test your changes. This is a problem when you have installed desdeo-vis outside the virtualenv either system-wide or per-user. Currently, there's no clear way to isolate this Javascript, so the solution is to uninstall the other versions of desdeo-vis and make sure to only install it inside virtualenvs.
-
Update the version number in
desdeo_vis/_version.py
andpackage.json
, and runnpm install
to update it inpackage-lock.json
too. -
Add an entry to HISTORY.md.
-
Make a release commit.
-
Make a git tag of this commit with
git tag v$VERSION
-
Push -- including the tags with
git push && git push --tags
-
Upload to PyPI with
rm -rf build/ && python setup.py sdist bdist_wheel
andtwine upload dist/*