From 51142591389a8119a337813899ae26d682e9f13d Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Fri, 21 Oct 2016 08:22:27 +0200 Subject: [PATCH] Cosmetics. --- run.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/run.sh b/run.sh index c6f2690..890c2e0 100755 --- a/run.sh +++ b/run.sh @@ -55,8 +55,8 @@ fi # Train the model (~30h on a GTX1080) if [[ ! -f "${DYNCNN_RESULT_DIR}"/epoch_01000_model ]]; then - ./dyncnn.lua --heavy --dataDir="${DYNCNN_DATA_DIR}" \ - --resultFreq=100 \ + ./dyncnn.lua --heavy --dataDir "${DYNCNN_DATA_DIR}" \ + --resultFreq 100 \ --resultDir "${DYNCNN_RESULT_DIR}" \ --nbEpochs 1000 fi @@ -65,11 +65,11 @@ fi # Create the images of internal activations for n in 2 12; do - ./dyncnn.lua --heavy --dataDir=./data/10p-mg/ \ - --learningStateFile="${DYNCNN_RESULT_DIR}"/epoch_01000_model \ - --resultDir="${DYNCNN_RESULT_DIR}" \ + ./dyncnn.lua --heavy --dataDir ./data/10p-mg/ \ + --learningStateFile "${DYNCNN_RESULT_DIR}"/epoch_01000_model \ + --resultDir "${DYNCNN_RESULT_DIR}" \ --noLog \ - --exampleInternals=${n} + --exampleInternals ${n} done ###################################################################### -- 2.20.1