-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ostojanovic/revision
Revision
- Loading branch information
Showing
39 changed files
with
849 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# data directory | ||
data/ | ||
|
||
# log files | ||
logs/ | ||
|
||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import itertools as it | ||
|
||
diseases = ["campylobacter", "rotavirus", "borreliosis"] | ||
prediction_regions = ["germany", "bavaria"] | ||
|
||
combinations_age_eastwest = [(False,False),(False,True),(True,True)] | ||
combinations = list(it.product(range(len(combinations_age_eastwest)), diseases)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
#!/bin/bash | ||
#$ -N RKI_MCMC | ||
#$ -t 1-6 | ||
#$ -l mem=30G | ||
#$ -t 1-9 | ||
#$ -l mem=14G | ||
#$ -m n | ||
#$ -q ni.q | ||
#$ -l h='!(ramsauer.ikw.uni-osnabrueck.de|vector.cv.uni-osnabrueck.de|righty.ni.uni-osnabrueck.de)' | ||
#$ -wd /net/store/ni/projects/BSTIM/src/ | ||
#$ -e /net/store/ni/projects/BSTIM/logs_backup/e_$TASK_ID.txt | ||
#$ -o /net/store/ni/projects/BSTIM/logs_backup/o_$TASK_ID.txt | ||
#$ -pe default 4 | ||
|
||
echo "Running job ${JOB_ID}, task ${SGE_TASK_ID} on `hostname`." | ||
|
||
mkdir "/tmp/${JOB_ID}_${SGE_TASK_ID}" | ||
|
||
THEANO_FLAGS="base_compiledir=/tmp/${JOB_ID}_${SGE_TASK_ID}/,floatX=float32,device=cpu,openmp=True,mode=FAST_RUN,warn_float64=warn" OMP_NUM_THREADS=8 python3 sample_posterior.py | ||
source /net/store/users/jleugeri/virt/bin/activate | ||
#THEANO_FLAGS="base_compiledir=/tmp/${JOB_ID}_${SGE_TASK_ID}/,floatX=float32,device=cpu,openmp=True,mode=FAST_RUN,warn_float64=warn" OMP_NUM_THREADS=4 python3 sample_posterior.py | ||
THEANO_FLAGS="base_compiledir=/tmp/${JOB_ID}_${SGE_TASK_ID}/,floatX=float32,device=cpu,mode=FAST_RUN,warn_float64=warn" python3 sample_posterior.py |
Oops, something went wrong.