/numalogic

Collection of operational time series ML models and tools

Primary LanguagePythonApache License 2.0Apache-2.0

numalogic

Build codecov black

Numa logic is a collection of operational ML models and tools.

Installation

pip install numalogic

Develop locally

  1. Install Poetry:
    curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
    
  2. To activate virtual env:
    poetry shell
    
  3. To install all dependencies: ( listed on pyproject.toml)
    make setup
    
  4. To install dependencies:
    poetry install
    
  5. To run tests with coverage:
    make test
    
  6. To format code style using black:
    make format