Under the project folder
$ pip install .
- Environment variable
MODEL_SAVE_DIR
will be the training output directory
USAGE: dong_mnist_example [OPTIONS]
OPTIONS:
--data-module TEXT
--data-class TEXT
--model-module TEXT
--model-class TEXT
--config-module TEXT
--config-func TEXT
--do-tune: flag for applying hyperparameter tuning or not
--tune-module TEXT
--tune-class TEXT
$ dong_mnist_example --config-module default
Which uses default modules. And here is the equivalent command
$ dong_mnist_example --data-module default --data-class DefaultData --model-module default --model-class DefaultModel --config-module default --config-func get_config
$ dong_mnist_example --do-tune
Which uses default modules. And here is the equivalent command
$ dong_mnist_example --do-tune --data-module default --data-class DefaultData --model-module default --model-class DefaultModel
Team Libgirl([email protected])
Licensed under the Apache License 2.0 License.