Numa logic is a collection of operational ML models and tools.
pip install numalogic
- Install Poetry:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
- To activate virtual env:
poetry shell
- To install all dependencies: ( listed on pyproject.toml)
make setup
- To install dependencies:
poetry install
- To run tests with coverage:
make test
- To format code style using black:
make format