Files
ml_pipeline_cookiecutter/{{cookiecutter.project_name}}/.env.example
publicmatt 6eed08d1ba fix project_slug error.
replace ml_pipeline with project_name or module_name from config
2024-04-06 15:48:29 -07:00

8 lines
384 B
Plaintext

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/