Skip to content
Snippets Groups Projects
Commit 3420c751 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[doc] Update baseline results

parent a2c1b973
No related branches found
No related tags found
No related merge requests found
Pipeline #40341 passed
File moved
File moved
File moved
......@@ -15,14 +15,22 @@ function run() {
cmd+=("-vv" "--device=${device}" ${1} ${2})
cmd+=("--batch-size=${3}" "--output-folder=${OUTDIR}/${1}/${2}")
[ $# -gt 4 ] && cmd=(jman submit "--name=$(basename ${OUTDIR})-${1}-${2}" "--memory=24G" "--queue=${5}" -- "${cmd[@]}")
mkdir -pv ${OUTDIR}/${1}/${2}
"${cmd[@]}"
[ $# -gt 4 ] && cmd=(jman submit "--log-dir=${OUTDIR}/${1}/${2}" "--name=$(basename ${OUTDIR})-${1}-${2}" "--memory=24G" "--queue=${5}" -- "${cmd[@]}")
if [ $# -le 4 ]; then
# executing locally, capture stdout and stderr
("${cmd[@]}" | tee "${OUTDIR}/${1}/${2}/stdout.log") 3>&1 1>&2 2>&3 | tee "${OUTDIR}/${1}/${2}/stderr.log"
else
"${cmd[@]}"
fi
}
# run/submit all baselines
# comment out from "sgpu/gpu" to run locally
# comment out from "cuda:0" to run on CPU
# comment out from "sgpu/gpu" to run locally
run m2unet drive 16 #cuda:0 #sgpu
run hed drive 8 #cuda:0 #sgpu
run driu drive 8 #cuda:0 #sgpu
......
......@@ -61,7 +61,6 @@ modifying one of our configuration resources.
experiment
training
models
evaluation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment