Skip to content

Commit b0a4193

Browse files
author
Alexander Ororbia
committed
bug-fix to log-gaussian func
1 parent 009ab50 commit b0a4193

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ngclearn/utils/distribution_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def log_gaussian_generator(shape: Sequence[int], dKey: jax.Array | None = None)
182182
dKey, subKey = jax.random.split(dKey, 2)
183183

184184
matrix = jax.random.lognormal(
185-
dkey,
185+
dKey,
186186
sigma=sigma,
187187
shape=shape,
188188
dtype=params.get("dtype", jax.numpy.float32)

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy>=1.26.4
22
scikit-learn>=1.6.1
3-
scipy>=1.15.2
4-
matplotlib>=3.10.1
3+
scipy>=1.14.1
4+
matplotlib>=3.9.4
55
# patchify # patchify has issues with pip installation
66
jax>=0.4.28
77
jaxlib>=0.4.28

0 commit comments

Comments
 (0)