Parcourir la source

multi run script

Jérôme BUISINE il y a 3 ans
Parent
commit
7b37ee926c
1 fichiers modifiés avec 28 ajouts et 0 suppressions
  1. 28 0
      run_surrogate_rendering.sh

+ 28 - 0
run_surrogate_rendering.sh

@@ -0,0 +1,28 @@
+#! /bin/bash
+
+# default param
+ILS=100000
+LS=100
+SS=50
+LENGTH=30
+POP=100
+ORDER=2
+TRAIN_EVERY=20
+
+
+output="rendering-attributes-ILS_${ILS}-POP_${POP}-LS_${LS}-SS_${SS}-SO_${ORDER}-SE_${TRAIN_EVERY}"
+DATASET="rnn/data/datasets/features-selection-rendering-scaled/features-selection-rendering-scaled"
+
+for POP in {20,60,100};
+do
+    for ORDER in {2,3};
+    do
+        for LS in {100,500,1000};
+        do
+            output="rendering-attributes-ILS_${ILS}-POP_${POP}-LS_${LS}-SS_${SS}-SO_${ORDER}-SE_${TRAIN_EVERY}"
+            echo "Run optim attributes using: ${output}"
+            python find_best_attributes_surrogate.py --data ${DATASET} --start_surrogate ${SS} --length 30 --ils ${ILS} --ls ${LS} --pop ${POP} --order ${ORDER} --train_every ${TRAIN_EVERY}  --output ${output}
+        done
+    done
+done
+