Skip to content

Commit

Permalink
use correct random function
Browse files Browse the repository at this point in the history
  • Loading branch information
zeotuan committed Oct 12, 2024
1 parent 51c8e0d commit e343223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quinn/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def randn(
if not isinstance(variance, Column):
variance = F.lit(variance)

return F.rand(seed) * F.sqrt(variance) + mean
return F.randn(seed) * F.sqrt(variance) + mean


def div_or_else(
Expand Down

0 comments on commit e343223

Please sign in to comment.