From a25f36708751ce0c994ae035149e4fe5f0317660 Mon Sep 17 00:00:00 2001 From: Alex Klibisz <8015228+alexklibisz@users.noreply.github.com> Date: Wed, 29 Nov 2023 08:31:43 -0800 Subject: [PATCH] Use base64 -w instead of -b --- Taskfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 8c63e54e4..eb8feac92 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -56,7 +56,7 @@ tasks: - venv/bin/python run.py --dataset fashion-mnist-784-euclidean --algorithm elastiknn-l2lsh --runs 3 --count 100 --parallelism 1 --force --local - mkdir -p $RESULTS_DIR - venv/bin/python plot.py --dataset fashion-mnist-784-euclidean --count 100 --output $RESULTS_DIR/plot.png | venv/bin/python ../parse_results.py > $RESULTS_DIR/results.md - - base64 -b 0 -i $RESULTS_DIR/plot.png > $RESULTS_DIR/plot.b64 + - base64 -w 0 -i $RESULTS_DIR/plot.png > $RESULTS_DIR/plot.b64 - cat $RESULTS_DIR/results.md annbRunOfficialFashionMnist: