A training pipeline to SPIRA project.
SPIRA-training is built using Python and uses Docker for containerization.
To run the project on the host machine, poetry is required.
It's suggested to run the project with Docker. Alternatively, install poetry, then install the project packages:
# at the root
poetry install
To execute the project, run:
# at the root
make app
Alternatively, execute:
# at the root
poetry run python src/spira_training/main.py
To execute the tests, run:
# at the root
make unit-tests
Alternatively, execute:
# at the root
poetry run pytest