Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 819 Bytes

README.md

File metadata and controls

49 lines (31 loc) · 819 Bytes

Pipeline

Flowmotion's ML pipeline

Setup

  • Install pip modules
pip install -r requirements.txt

Usage

Running the ML PIpeline:

  1. Run Pipeline
python pipeline.py

Contributing

Before pushing, ensure that you:

  1. Format & Lint code
black . && isort . && ruff .
  1. Run unit tests.
pytest -m "not integration"
  1. Run integration tests. Requires GCP credentials.
pytest -m integration

A makefile is provided to make this easier. Just make.