Forgot to add weights as a field in Optimparams class
[morpheus.git] / reports / run_accu_cl.sh
1 #!/bin/bash
2
3 #$ -N morpheus
4 #$ -m abes
5 #$ -M benjamin@auder.net
6 #$ -pe make 50
7 #$ -l h_vmem=1G
8 #$ -j y
9 #$ -o .output
10 rm -f .output
11
12 WORKDIR=/workdir2/auder/morpheus/reports
13 cd $WORKDIR
14
15 module load R/3.6.1
16
17 N=10
18 n=1e5
19 nc=50
20
21 for d in 2 5 10 20; do
22 for link in "logit" "probit"; do
23 for weights in "1,1,1" "6,3,1"; do
24 R --slave --args N=$N n=$n nc=$nc d=$d link=$link weights=$weights <accuracy.R >out_${n}_${link}_${d}_${weights} 2>&1
25 done
26 done
27 done
28
29 #for d in 2 5; do
30 # for n in 5000 10000 100000 500000 1000000; do
31 # for link in "logit" "probit"; do
32 # R --slave --args N=$N n=$n nc=$nc d=$d link=$link <accuracy.R >out_$n$link$d 2>&1
33 # done
34 # done
35 #done