Skip to content

Commit 899cc6a

Browse files
committed
Fix bash string
1 parent 338f267 commit 899cc6a

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

pl_examples/run_examples.sh

100644100755
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
set -ex
33

44
dir_path=$(dirname "${BASH_SOURCE[0]}")
5-
args="--trainer.max_epochs=1 " \
6-
"--data.batch_size=32 " \
7-
"--trainer.limit_train_batches=2 " \
8-
"--trainer.limit_val_batches=2 " \
9-
"--trainer.limit_test_batches=2 "\
10-
"--trainer.limit_predict_batches=2"
5+
args="
6+
--data.batch_size=32
7+
--trainer.max_epochs=1
8+
--trainer.limit_train_batches=2
9+
--trainer.limit_val_batches=2
10+
--trainer.limit_test_batches=2
11+
--trainer.limit_predict_batches=2
12+
"
1113

1214
python "${dir_path}/basic_examples/simple_image_classifier.py" ${args} "$@"
13-
python "${dir_path}/basic_examples/backbone_image_classifier.py" ${args} "$@"
14-
python "${dir_path}/basic_examples/autoencoder.py" ${args} "$@"
15+
#python "${dir_path}/basic_examples/backbone_image_classifier.py" ${args} "$@"
16+
#python "${dir_path}/basic_examples/autoencoder.py" ${args} "$@"

0 commit comments

Comments
 (0)