X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;h=39ef3176e3d735a94b99f5193b68b2b2342e65d6;hb=2b3a6af5c55ac121405e3a8da721626ddf46b28b;hp=04f15193930552115fca32c754f3e75427616654;hpb=8dc8da95179d0f0654b5cb9e189117197aec7c55;p=morpheus.git diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh index 04f1519..39ef317 100644 --- a/reports/run_accu_cl.sh +++ b/reports/run_accu_cl.sh @@ -1,33 +1,23 @@ #!/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 10 -#$ -l h_vmem=1G +#$ -pe make 50 rm -f .output +#$ -o .output +#$ -j y module load R/3.6.1 N=100 -n=1e5 -nc=10 +nc=50 -for d in 2 5 10; do - for link in "logit" "probit"; 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 +for n in "5000" "10000" "100000" "500000" "1000000"; do + for d in 2 5 10; do + for link in "logit" "probit"; do + R --slave --args N=$N n=$n nc=$nc d=$d link=$link out_${n}_${link}_${d} 2>&1 done done done - -#for d in 2 5; do -# for n in 5000 10000 100000 500000 1000000; do -# for link in "logit" "probit"; do -# R --slave --args N=$N n=$n nc=$nc d=$d link=$link out_$n$link$d 2>&1 -# done -# done -#done