Link Search Menu Expand Document

Installation from pypi

For most applications, the easiest way to install the package is to use pip.

pip install dnn-tip

Manual installation

If you want to change anything in this library, clone the repo, make your changes and then install it using

pip install -e .

Ideally, you want to also run the tests, which needs additional dependencies.

pip install -e .[test]

You can then run the test suite using

pytest tests

If you added a nice feature, or fixed a bug, please consider opening a pull request.