Spaces:
Sleeping
Sleeping
#SBATCH --partition=gpu # Specify the partition | |
#SBATCH --account=gpu_gres # Specify the account | |
#SBATCH --mem=25000 # Request 10GB of memory | |
#SBATCH --time=10:00:00 # Set the time limit to 1 hour | |
#SBATCH --job-name=SVJtr1 # Name the job | |
#SBATCH --output=jobs/training_1b_output.log # Redirect stdout to a log file | |
#SBATCH --error=jobs/training_1b_error.log # Redirect stderr to a log file | |
#SBATCH --gres=gpu:1 | |
source env.sh | |
export APPTAINER_TMPDIR=/work/gkrzmanc/singularity_tmp | |
export APPTAINER_CACHEDIR=/work/gkrzmanc/singularity_cache | |
nvidia-smi | |
singularity exec -B /t3home/gkrzmanc/ -B /work/gkrzmanc/ --nv docker://dologarcia/gatr:v0 python -m src.train -train scouting_PFNano_signals2/SVJ_hadronic_std3/s-channel_mMed-900_mDark-20_rinv-0.7_alpha-peak_13TeV-pythia8_n-2000 -val scouting_PFNano_signals2/SVJ_hadronic_std2/s-channel_mMed-900_mDark-20_rinv-0.7 -net src/models/GATr/Gatr.py -bs 64 --gpus 0 --run-name Eval07_OC_betaPt_BC --val-dataset-size 1000 --train-dataset-size 1 --num-epochs 1 --attr-loss-weight 0.1 --coord-loss-weight 0.1 --beta-type pt+bc --load-model-weights train/OC_betaPt_BC_train_2024_12_27_22_31_31/step_10000_epoch_8.ckpt | |
# Run the job: | |
# sbatch jobs/training_1b.slurm | |