We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94a7e75 commit 82d6c97Copy full SHA for 82d6c97
tools/strand_prediction/CRISPRstrand/utils.py
@@ -1,4 +1,10 @@
1
import numpy as np
2
+
3
+# disable tensorflow multi-threading
4
+import tensorflow as tf
5
+tf.config.threading.set_inter_op_parallelism_threads(1)
6
+tf.config.threading.set_intra_op_parallelism_threads(1)
7
8
#import matplotlib.pyplot as plt
9
from keras.models import load_model as lm
10
0 commit comments