fix project_slug error.

replace ml_pipeline with project_name or module_name from config
This commit is contained in:
publicmatt
2024-04-06 15:48:29 -07:00
parent 727f16df57
commit 6eed08d1ba
43 changed files with 81 additions and 95 deletions

View File

@@ -0,0 +1,7 @@
MODEL__IN_CHANNELS=1
MODEL__NUM_CLASSES=10
DATA__TRAIN_PATH=/path/to/{{cookiecutter.project_name}}/data/mnist_train.csv
DATA__TEST_PATH=/path/to/{{cookiecutter.project_name}}/data/mnist_test.csv
PATHS__APP=/path/to/{{cookiecutter.project_name}}/{{cookiecutter.module_name}}/
PATHS__ROOT=/path/to/{{cookiecutter.project_name}}/
PATHS__DATA=/path/to/{{cookiecutter.project_name}}/data/