-
Notifications
You must be signed in to change notification settings - Fork 0
/
norm_0.001.sh
41 lines (36 loc) · 1.1 KB
/
norm_0.001.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash
# Grid engine options (lines prefixed with #$)
# -N euclidean+normalised-sigma-0.001
# Runtime limit of 47 hours:
#$ -l h_rt=47:00:00
#
# Set working directory to the directory where the job is submitted from:
#$ -cwd
#
# Request one GPU in the gpu queue:
#$ -q gpu
#$ -pe gpu-a100 1
#
# Request 32 GB system RAM
# the total system RAM available to the job is the value specified here multiplied by
# the number of requested GPUs (above)
#$ -l h_vmem=32G
# Initialise the environment modules and load CUDA version 11.0.2
. /etc/profile.d/modules.sh
module load cuda/12.1
# Activate the conda environment
module load anaconda
source activate weighted-gnn-pavel
# Experiment E1: Burger's equation (0.5, 0, 0)
# 2096 trajectories
# Base Resoultion: 100
# Super Resolution: 200
# Temporal Resolution: 250
# Learning Rate: 1e-4
# Weight Decay: 1e-8
# Epochs: 20
# Batch Size: 16
# Hidden size: 164
# Maximum unrolling: 2
# Neighbours: 6
python experiments/train.py --device=cuda:0 --experiment=E1 --neighbors=6 --unrolling=2 --sigma=0.001 --lr=1e-4 --smoothing=euclidean+normalised --print_interval=50 --log=True