ml_pipeline_cookiecutter/{{cookiecutter.project_name}}/.env.example

8 lines
384 B
Plaintext
Raw Normal View History

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/