cupy.random.choice#
- cupy.random.choice(a, size=None, replace=True, p=None)[source]#
Returns an array of random values from a given 1-D array.
Each element of the returned array is independently sampled from
aaccording topor uniformly.Note
Currently
pis not supported whenreplace=False.- Parameters:
a (1-D array-like or int) – If an array-like, a random sample is generated from its elements. If an int, the random sample is generated as if
awascupy.arange(n)replace (boolean) – Whether the sample is with or without replacement.
p (1-D array-like) – The probabilities associated with each entry in
a. If not given the sample assumes a uniform distribution over all entries ina.
- Returns:
An array of
avalues distributed according topor uniformly.- Return type:
See also
numpy.random.choice()