Uniform
Wrapper for numpy.random.uniform() sampler.
numpy.random.uniform()
low (Union[float, np.array of floats], default 0) – Lower bound of the output interval. All values generated will be greater than or equal to low.
low
high (Union[float, np.array of floats], default 1) – Upper bound of the output interval. All values generated will be less than or equal to high.
high
Methods
sample(size)
sample
Draw random samples from a uniform distribution.