From: Francois Fleuret Date: Fri, 21 Oct 2016 06:22:27 +0000 (+0200) Subject: Cosmetics. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=dyncnn.git;a=commitdiff_plain;h=51142591389a8119a337813899ae26d682e9f13d Cosmetics. --- 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 ######################################################################