X-Git-Url: https://git.auder.net/?p=morpheus.git;a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;h=04f15193930552115fca32c754f3e75427616654;hp=0cd877b148468a60c0d5f2e64f71c5b4332bf49d;hb=8dc8da95179d0f0654b5cb9e189117197aec7c55;hpb=0ad4c8de650e9f27ec3754c9cb9b2a03db5aff24 diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh index 0cd877b..04f1519 100644 --- a/reports/run_accu_cl.sh +++ b/reports/run_accu_cl.sh @@ -1,26 +1,24 @@ #!/bin/bash +# Lancement: qsub -o .output -j y run_accu_cl.sh + #$ -N morpheus +#$ -wd /workdir2/auder/morpheus/reports #$ -m abes #$ -M benjamin@auder.net -#$ -pe make 50 +#$ -pe make 10 #$ -l h_vmem=1G -#$ -j y -#$ -o .output rm -f .output -WORKDIR=/workdir2/auder/morpheus/reports -cd $WORKDIR - module load R/3.6.1 -N=10 +N=100 n=1e5 -nc=50 +nc=10 -for d in 2 5 10 20; do +for d in 2 5 10; do for link in "logit" "probit"; do - for weights in "1,1,1" "6,3,1"; do + for weights in "1,1,0"; do R --slave --args N=$N n=$n nc=$nc d=$d link=$link weights=$weights out_${n}_${link}_${d}_${weights} 2>&1 done done