From 133ef59af38d6eae42b06b3485e730e449f85eb2 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 8 Aug 2022 16:33:05 +0100 Subject: [PATCH] fixup --- rainfallwrangler/slurm-jsonl2tfrecord.job | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rainfallwrangler/slurm-jsonl2tfrecord.job b/rainfallwrangler/slurm-jsonl2tfrecord.job index cdfd719..473183e 100755 --- a/rainfallwrangler/slurm-jsonl2tfrecord.job +++ b/rainfallwrangler/slurm-jsonl2tfrecord.job @@ -42,5 +42,5 @@ cd ../aimodel || { echo "Error: Failed to cd to ai model directory"; exit 1; }; conda run -n py38 pip install -r requirements.txt; cd ../rainfallwrangler || { echo "Error: Failed to cd back to rainfallwrangler directory"; exit 1; }; echo ">>> Converting dataset .jsonl.gz → .tfrecord.gz"; -/usr/bin/env time -v src/index.mjs jsonl2tfrecord --verbose --source "${INPUT}" --target "${OUTPUT}"; +conda run -n py38 /usr/bin/env time -v src/index.mjs jsonl2tfrecord --verbose --source "${INPUT}" --target "${OUTPUT}"; echo ">>> exited with code $?";