reorganize pipeline dir and location of files.

add readmes to all dir.
This commit is contained in:
Matt
2023-01-26 11:49:28 -08:00
parent 0f12b26e40
commit ecc8939517
16 changed files with 100 additions and 217 deletions

View File

@@ -4,17 +4,17 @@ CONDA_ENV=ml_pipeline
all: help
run: ## run the pipeline (train)
python src/pipeline.py \
python src/train.py \
debug=false
debug: ## run the pipeline (train) with debugging enabled
python src/pipeline.py \
python src/train.py \
debug=true
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
env_import: environment.yml ## import any changes to env.yml into conda env
install: 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