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

This is a general code cleanliness thing: it is [not great style](https://docs.kidger.site/equinox/pattern/) to have two classes that are not instantiable, with one inheriting from the other. In this case, `Adaptive{Avg,Max}Pool{1,2,3}d`...

next
refactor

Integrating with Orbax would be great. I actually have a working `class EquinoxCheckPointHandler(ocp.CheckpointHandler)` that seems to work for generic instances of `eqx.Module`. Would there be interest in finding a way...

question

self.nn = update will raise a error. How to change the weight of self.nn

question

Hello, First of all, thank you for your great work! I noticed that Equinoxs' convolutional layers use _NCHW_ data format, which, according to [Nvidia Tensor Layout](https://docs.nvidia.com/deeplearning/performance/dl-performance-convolutional/index.html#tensor-layout), is not optimal for...

question

When I try to import equinox 0.10.6 in python 3.9.0 I get the following error: ``` >>> import equinox as eqx Traceback (most recent call last): File "", line 1,...

question

Hi Patrick! I'm currently converting a Haiku codebase to use equinox, and there's a _lot_ of boilerplate that tries to construct MLPs before knowing the full size of the input...

question

Do you plan on supporting quantization? Perhaps as offered by AQT: https://github.com/google/aqt

feature

I was looking at how sharing was added into equinox, and was a bit surprised at the approach taken. I had a similar challenge where I had a PyTree with...

question

Hello Patrick, I recently tried to move from torch to jax/equinox (thanks a lot for your contributions both for diffrax and equinox) and i tried to adapt all my code...

question

Hello Patrick, I am doing an implementation of the PPO algorithm for a custom environment and first wanted to test things out with a standard example and I choose CartPole-v1...