File size: 406 Bytes
ba3ecf1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash
#PBS -N KHALIL_sbert_training
#PBS -l select=1:ncpus=20:mem=180gb:ngpus=1
#PBS -q gpu_1w
#PBS -o logs/output_2.log
#PBS -e logs/error_2.log
# === Load modules & activate conda ===
module use /app/common/modules
module load anaconda3-2024.10
source activate sbert_khalil
# === Move to working directory ===
cd /home/skiredj.abderrahman/khalil/sbert_training/third_training/
python continue.py
|