Closed certik closed 1 year ago
The issue was that encoder returned a list, and np.append() expects a Jax array, not a list as arguments.
np.append()
This patch makes it work with both NumPy and Jax.
Fixes #9.
This is ready.
The issue was that encoder returned a list, and
np.append()
expects a Jax array, not a list as arguments.This patch makes it work with both NumPy and Jax.
Fixes #9.