ml_pipeline/Makefile

26 lines
822 B
Makefile
Raw Normal View History

2022-11-05 07:57:52 -07:00
CONDA_ENV=ml_pipeline
.PHONY: help
2022-11-05 07:57:52 -07:00
all: help
2022-11-05 07:57:52 -07:00
run: ## run the pipeline (train)
python src/pipeline.py \
debug=false
debug: ## run the pipeline (train) with debugging enabled
python src/pipeline.py \
debug=true
2022-10-29 17:19:59 -07:00
data: ## download the mnist data
wget https://pjreddie.com/media/files/mnist_train.csv -O data/mnist_train.csv
wget https://pjreddie.com/media/files/mnist_test.csv -O data/mnist_test.csv
2022-10-29 17:19:59 -07:00
env_import: environment.yml ## import any changes to env.yml into conda env
conda env update -n ${CONDA_ENV} --file $^
env_export: ## export the conda envirnoment without package or name
conda env export | head -n -1 | tail -n +2 > $@
help: ## display this help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
2022-11-05 07:57:52 -07:00