2021-07-06 12:14:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
dir_path=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
args="--trainer.max_epochs=1 --data.batch_size=32 --trainer.limit_train_batches=2 --trainer.limit_val_batches=2"
|
|
|
|
|
2021-08-09 11:54:35 +00:00
|
|
|
python "${dir_path}/basic_examples/simple_image_classifier.py" ${args} "$@"
|
|
|
|
python "${dir_path}/basic_examples/backbone_image_classifier.py" ${args} "$@"
|
|
|
|
python "${dir_path}/basic_examples/autoencoder.py" ${args} "$@"
|