Open
Description
Currently the only way to ensure reproducible results of the EValueEstimator
is calling np.random.seed()
before creating it. However, this np.random.xxx
API is deprecated and superseded by using an explicit Generator
.
To reflect this change in numpy
, EValueEstimator
should accept a Generator
to ensure reproducibility.