From f026be49aaa193cd00ee995c35ecbda25f45bb82 Mon Sep 17 00:00:00 2001 From: Robin Meersman Date: Fri, 28 Nov 2025 09:57:54 +0100 Subject: [PATCH] feat: job script --- CNN-model/job.pbs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CNN-model/job.pbs diff --git a/CNN-model/job.pbs b/CNN-model/job.pbs new file mode 100644 index 0000000..dc6509e --- /dev/null +++ b/CNN-model/job.pbs @@ -0,0 +1,15 @@ +#!/bin/bash + + +#PBS -l gpus=1 +#PBS -l walltime=03:00:00 +#PBS -m abe + +module load PyTorch/2.1.2-foss-2023a-CUDA-12.1.1 +module load Optuna/3.5.0-foss-2023a + +cd $PBS_O_WORKDIR + +source training_env/bin/activate + +python main_cnn.py --method train \ No newline at end of file