megengine.random.uniform¶
- uniform(low=0, high=1, size=None)¶
Random variable with uniform distribution \(U(low, high)\).
- Parameters
- Returns
tensor. The random variable with uniform distribution.
- Return type
Return type
Examples
>>> import megengine.random as rand >>> x = rand.uniform(size=(2, 2)) >>> x.numpy() array([[0.28603864, 0.3156649 ], [0.42066026, 0.9805052 ]], dtype=float32)