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 146 equinox issues
Sort by recently updated
recently updated
newest added

Hey Patrick, I was wondering if there was a way to set the default behavior for the filter functions in some global manner? I am currently building an [fully differentiable...

Corresponding issue: https://github.com/patrick-kidger/equinox/issues/175 - Added `use_ceil` parameter to `Pool` - Added a check to make sure garbage values are not pooled if `padding > kernel/2`.

Corresponds to discussion : https://github.com/patrick-kidger/equinox/issues/136 - Adds `_ordered_tree_map` - Some doc fixes to highlight cases of deserialisation.

Hi, Is it possible to support torch's `ceil_mode` like functionality in Pooling? There is a possible* one sided padding for each dimension as a result of using `ceil` instead of...

feature

Hi, I wanted to check if it is possible for the two operations to produce identical results. I found that `jnp.isclose` assertion fails on the output when comparing `torch` vs...

question

Currently the docstrings for `Module` subclasses don't display the default argument values when using `?`. Not sure if there is an automated way to display this, or to update all...

documentation

Hi, Is there a recommended way to partially load weights to a new model ? At the moment I have an inept solution which uses the fact that `fc` attribute...

feature
question

Hi, Most of the `nn.Modules` ([MLP](https://github.com/patrick-kidger/equinox/blob/a89d5b486d13588caffc095f172a2ec39fd68278/equinox/nn/composed.py#L26)) use `static_fields` for, well seemingly static attributes. In the documentation it is stated that `static_field` should be used rarely. Is there a do's and...

question