equinox icon indicating copy to clipboard operation
equinox copied to clipboard

Elegant easy-to-use neural networks + scientific computing in JAX. https://docs.kidger.site/equinox/

Results 159 equinox issues
Sort by recently updated
recently updated
newest added

Hi Patrick, I am building a repository of image classification models with Equinox as a personal project. I have added ResNet and LeNet so far and plan to add more....

show and tell

Equinox's `filter_*` functions are very helpful functions. It would be great if there were`filter_jacfwd` and `filter_jacrev` functions. For my specific use case, I am using `eqx.filter_value_and_grad(fn)(model, ...)`. As far as...

feature

Hello! I have a question. I am using equinox for a project here: https://github.com/mjo22/cryojax. My Modules are very nested, and in general I am interested in using grad and vmap...

question

Hi, I really enjoy using equinox, but sometimes, when I am trying to process high-dimensional data with `jax.vmap` it can be a quite slow. Therefore, I was wondering, if it...

question

Hi, not sure if this is really a bug or intended, but it's not possible to pass an `eqx.Module` as carry in a `jax.lax.scan`. Here is the MVP: ```python import...

question

In the following code: ```python from beartype import beartype import equinox as eqx from jaxtyping import Array, Float @beartype class MyClass(eqx.Module): x: Float[Array, ""] def fn(self, y: bool) -> Float[Array,...

question

When attempting to use the `Lambda` layer in Equinox, it appears that the `__init__` method's parameters are not being correctly resolved. This results in a 'too many arguments' error during...

question

Hi Patrick! Thanks for the great work with the library. I'm just getting started out in JAX after years of PyTorch and have a question regarding composable `LSTMCells` in equinox....

question

I have a code where using jax.jit like this works: `@partial(jax.jit, static_argnums=1)` But `@eqx.filter_jit` in the same place causes jax.clear_caches to crash with either Segmentation fault or sometimes with `double...