Is there a way to exclude all the stochastics within SciANN so that we get results that can be easily reproduced?
So far I tried
import tensorflow as tf
from numpy.random import seed
import random
_seed = 0
seed(_seed)
random.seed(_seed)
tf.random.set_seed(_seed)
tf.compat.v1.set_random_seed(_seed)
but I am getting different results each time I run the training.