Newer
Older

Sebastian Endres
committed
source .env.sh
function run_muted {
echo "$@"
poetry run "$@" >/dev/null
}

Sebastian Endres
committed
poetry run "$@"

Sebastian Endres
committed
run ./plot_pairplot.py \
--no-interactive \
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
"${RESULT_SIM}" \
"${RESULT_REAL}"
run_muted ./long_term_evaluation.py \
--testcase=G \
"--output=${IMG_PATH}/long_term_evaluation_G.${FORMAT}" \
"${QIR_RESULTS}/logs"
run_muted ./compare_results.py \
--plot \
"--output=${IMG_PATH}/compare_G_orig_own.${FORMAT}" \
"--label1=Marten Seemann" \
"--label2=Local" \
"${RESULT_ORIG}" \
"${RESULT_SIM}" \
G

Sebastian Endres
committed
run ./plot_stats.py \
--no-interactive \
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
--plot-type=boxplot \
"${RESULT_SIM}" \
"${RESULT_REAL}"

Sebastian Endres
committed
run ./plot_stats.py \
--no-interactive \
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
--plot-type=swarm \
--measurement "${NEW_MEASUREMENTS[@]}" \
"--prop=${prop}" \
"${RESULT_SIM}" \
"${RESULT_REAL}"
run ./plot_stats.py \
--no-interactive \
"--prop=${prop}" \

Sebastian Endres
committed
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
--plot-type=kdes \

Sebastian Endres
committed
"${RESULT_SIM}" \
"${RESULT_REAL}"

Sebastian Endres
committed
run ./plot_stats.py \
--no-interactive \

Sebastian Endres
committed
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
--plot-type=heatmap \

Sebastian Endres
committed
"${RESULT_SIM}" \
"${RESULT_REAL}"

Sebastian Endres
committed
run ./plot_stats.py \
--no-interactive \

Sebastian Endres
committed
"--img-path=${IMG_PATH}" \
"--img-format=${FORMAT}" \
--plot-type=ridgeline \

Sebastian Endres
committed
"${RESULT_SIM}" \
"${RESULT_REAL}"
echo "Don't forget to plot using ./plot_real_experiments.py!"