Skip to content
Snippets Groups Projects
Commit 0faabe5c authored by Mario Sänger's avatar Mario Sänger
Browse files

Re-enable multi-core tf execution for development purposes

parent 23c9c793
No related merge requests found
...@@ -26,7 +26,8 @@ rn.seed(12345) ...@@ -26,7 +26,8 @@ rn.seed(12345)
# non-reproducible results. # non-reproducible results.
# For further details, see: https://stackoverflow.com/questions/42022950/which-seeds-have-to-be-set-where-to-realize-100-reproducibility-of-training-res # For further details, see: https://stackoverflow.com/questions/42022950/which-seeds-have-to-be-set-where-to-realize-100-reproducibility-of-training-res
session_conf = tf.ConfigProto(intra_op_parallelism_threads=1, inter_op_parallelism_threads=1) #session_conf = tf.ConfigProto(intra_op_parallelism_threads=1, inter_op_parallelism_threads=1)
session_conf = tf.ConfigProto(intra_op_parallelism_threads=0, inter_op_parallelism_threads=0)
from keras import backend as K from keras import backend as K
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment