I need the option to assign random state or seed values to get stable results. I don't think there is such an option.
Unfortunately, my attempts to fix the general seed that I have listed below did not solve the problem.
import random
random.seed(1)
from numpy.random import seed
seed(1)
What can be done about it? Do you have any advice?
thanks in advance