Remove weights from reports scripts + first naive attempt to optimize computeW
[morpheus.git] / reports / run_accu_cl.sh
... / ...
CommitLineData
1#!/bin/bash
2
3# Lancement: qsub -o .output -j y run_accu_cl.sh
4
5#$ -N morpheus
6#$ -wd /workdir2/auder/morpheus/reports
7#$ -m abes
8#$ -M benjamin@auder.net
9#$ -pe make 10
10#$ -l h_vmem=1G
11rm -f .output
12
13module load R/3.6.1
14
15N=100
16n=1e5
17nc=50
18
19for d in 2 5 10; do
20 for link in "logit" "probit"; do
21 R --slave --args N=$N n=$n nc=$nc d=$d link=$link <accuracy.R >out_${n}_${link}_${d}_${weights} 2>&1
22 done
23done