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 all, I am building a multi-physics solver using JAX and equinox, where I want to merge multiple dataclasses inherited from eqx.Module. If I am using standard Python classes, the...

question

This may not be the medium for petty user bugs, but I am not able to find any help on general forums. I am not sure what is causing the...

question

I'm trying to 1. Utilize the init/apply design pattern. 2. Vmap a module twice (where the module uses batchnorm) in order to handle inputs of shape `[n_samples, batch_dim, feature_dim]` instead...

question

This is in reference to issue [659](https://github.com/patrick-kidger/equinox/issues/659). I modified BatchNorm to have two approaches `"batch"` and `"ema"`. `"batch"` just uses the batch statistics during training time. If approach is not...

Hi all, I've create Equinox modules and I want to process them with `jax.lax.scan`, but I don't see any `equinox.filter_scan`. Is there a particular reason for that ? Here's some...

question

Hi Patrick, I am trying to use sequential to make my code clean, and I run into an issue when I try to get gradients I put a simple example...

question

Greetings Patrick, I was wondering, what are your thoughts when it comes to Graph Neural Networks? Would a GNNlayer be implemented as a module for Equinox or an advanced example...

documentation

For users that are interested/regularly investigate the source code, having a method to go from docs to associated source code is very helpful (this is what I am talking about:...

documentation

What is the recommended way to train an ensemble model like the one in the documentation? I have re-produced the model here and would appreciate some help with this. ```...

question

I love `equinox` and `jaxtyping` and would like to figure out a nice way to annotate stacked or batched `eqx.Modules` but so far I've failed. For example, I'll often do...

feature