Mercurial > ift6266
annotate scripts/launch_generate100.py @ 208:acb942530923
Completely rewrote my series module, now based on HDF5 and PyTables (in a separate directory called 'tables_series' for retrocompatibility of running code). Minor (inconsequential) changes to stacked_dae.
author | fsavard |
---|---|
date | Fri, 05 Mar 2010 18:07:20 -0500 |
parents | fd1b5237e49e |
children | 17c72763d574 |
rev | line source |
---|---|
136
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
2 |
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
3 import os |
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
4 dir1 = "/data/lisa/data/ift6266h10/" |
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
5 |
203
fd1b5237e49e
Actual script used to launch images generation on 4 machines
boulanni <nicolas_boulanger@hotmail.com>
parents:
157
diff
changeset
|
6 mach = "brams0c.iro.umontreal.ca,brams02.iro.umontreal.ca,brams03.iro.umontreal.ca,maggie22.iro.umontreal.ca" |
fd1b5237e49e
Actual script used to launch images generation on 4 machines
boulanni <nicolas_boulanger@hotmail.com>
parents:
157
diff
changeset
|
7 |
136
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
8 for i,s in enumerate(['valid','test']): |
157
221799d79188
Ajouté seed 100 à 207 aux ensembles de données générés
boulanni <nicolas_boulanger@hotmail.com>
parents:
136
diff
changeset
|
9 for j,c in enumerate([0.3,0.5,0.7,1]): |
136
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
10 l = str(c).replace('.','') |
203
fd1b5237e49e
Actual script used to launch images generation on 4 machines
boulanni <nicolas_boulanger@hotmail.com>
parents:
157
diff
changeset
|
11 os.system("dbidispatch --condor --os=fc4,fc7,fc9 --machine=%s ./run_pipeline.sh -o %sdata/P%s_%s_data.ft -p %sdata/P%s_%s_params -x %sdata/P%s_%s_labels.ft -f %s%s_data.ft -l %s%s_labels.ft -c %socr_%s_data.ft -d %socr_%s_labels.ft -m 0.3 -z 0.1 -a 0.1 -b 0.25 -g 0.25 -s %d -y %d" % (mach, dir1, l, s, dir1, l, s, dir1, l, s, dir1, s, dir1, s, dir1, s, dir1, s, [20000,80000][i], 200+i*4+j)) |
136
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
12 |
4a78c9b83fee
Added script to launch the ~108 data generation jobs with dbidispatch
boulanni <nicolas_boulanger@hotmail.com>
parents:
diff
changeset
|
13 for i in range(100): |
203
fd1b5237e49e
Actual script used to launch images generation on 4 machines
boulanni <nicolas_boulanger@hotmail.com>
parents:
157
diff
changeset
|
14 os.system("dbidispatch --condor --os=fc4,fc7,fc9 --machine=%s ./run_pipeline.sh -o %sdata/P07_train%d_data.ft -p %sdata/P07_train%d_params -x %sdata/P07_train%d_labels.ft -f %strain_data.ft -l %strain_labels.ft -c %socr_train_data.ft -d %socr_train_labels.ft -m 0.7 -z 0.1 -a 0.1 -b 0.25 -g 0.25 -s 819200 -y %d" % (mach, dir1, i, dir1, i, dir1, i, dir1, dir1, dir1, dir1, 100+i)) |