Inox

Latest version: v0.7.1

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 8

0.9.0

This is a big update. The highlight here is the new `equinox.internal` namespace, which contains a slew of advanced features.

These are only "semi public". These are deliberately not in the main documentation, and exist primarily for the benefit of downstream libraries like [Diffrax](http://github.com/patrick-kidger/diffrax). But you may still have fun playing with them.

Features
- `equinox.internal.`
- Autodiff:
- `nondifferentiable`: will raise an error at trace-time if you attempt to differentiate it.
- `nondifferentiable_backward`: will raise an error at trace-time if you attempt to reverse-mode differentiate it.
- Debug tooling:
- `announce_jaxpr`: will call a custom callback whenever it is traced/transformed in a jaxpr. `print(<transform stack>)` is the default callback.
- Runtime errors:
- `error_if`: can raise runtime errors. (Works on CPU; doesn't work on TPU. GPU support may be flaky.)
- `branched_error_if`: can raise one of multiple errors, depending on a traced value.
- Floating point manipulation:
- `nextafter`: returns the next floating point number. Unlike `jnp.nextafter`, it is differentiable.
- `prevbefore`: returns the previous floating point number. Is differentiable.
- MLIR sub-graphs:
- `noinline`: used to mark that a subcomputation should be placed in a separate computation graph, e.g. to avoid compiling the same thing multiple times if it is called repeatedly. Can also be used to iteratively recompile just parts of a computation graph, if the sub/super-graph is the only thing that changes.
- Omega:
- `ω`: nice syntax for tree arithmetic. For example `(x**ω + y**ω).ω == tree_map(operator.add, x, y)`. Like [tree-math](https://github.com/google/tree-math) but with nicer syntax.
- Custom primitives:
- `filter_primitive_{def, jvp, transpose, batching, bind}`: Define rules for custom primitive that accept arbitrary PyTrees; not just JAX arrays.
- `create_vprim`: Autodefines batching rules for higher-order primitives, according to `transform(vmap(prim)) == vmap(transform(prim))`.
- String handling:
- `str2jax`: turns a string into a JAX'able object.
- Unvmap'ing:
- `unvmap_{any, all, max}`: apply reductions whilst ignoring the batch dimension.
- New filtered transformations: `eqx.{filter_jvp,filter_custom_jvp}`

Bugfixes / backward incompatibilities
- `eqx.nn.GRUCell` will now use its bias term. (Previously it was never adding this.)
- `eqx.filter_eval_shape` will no longer promote array-likes to arrays, in either its input or its output.
- `eqx.tree_equal` now treats JAX arrays and NumPy arrays as equal.

Misc
- Improved compilation speed of `eqx.filter_vmap`.

New Contributors
* jondeaton made their first contribution in https://github.com/patrick-kidger/equinox/pull/204
* IsaacBreen made their first contribution in https://github.com/patrick-kidger/equinox/pull/215

**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.8.0...v0.9.0

0.8.0

The ongoing march of small tweaks progresses.

Main changes this release:
- `eqx.{is_array,is_inexact_array}` now return `True` for `np.ndarray`s rather than `False`. This is technically a breaking change, hence the new minor version bump. Rationale in 202.
- We now use [`jaxtyping`](https://github.com/google/jaxtyping). Hurrah!

Other changes:
* make sequential module immutable by jenkspt in https://github.com/patrick-kidger/equinox/pull/195
* Add support for asymmetric padding in Conv and ConvTransposed. by Gurvan in https://github.com/patrick-kidger/equinox/pull/197

New Contributors
* Gurvan made their first contribution in https://github.com/patrick-kidger/equinox/pull/197

**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.7.1...v0.8.0

0.7.1

Autogenerated release notes as follows:

What's Changed
* Fixed `NotImplementedError` when computing gradients of `stateful` models by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/191
* fix attention with mask and add tests by uuirs in https://github.com/patrick-kidger/equinox/pull/190

New Contributors
* uuirs made their first contribution in https://github.com/patrick-kidger/equinox/pull/190

**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.7.0...v0.7.1

0.7.0

- Multiple bugfixes for differentiating through, and serialising, `eqx.experimental.BatchNorm`.
- This is the reason for the version bump: if you are using `eqx.experimental.{BatchNorm,SpectralNorm,StateIndex}` then the serialisation format has changed.
- Feature: `use_ceil` added to all pooling layers.

---

Autogenerated release notes as follows:

What's Changed
* Add len and iter methods to nn.Sequential by jenkspt in https://github.com/patrick-kidger/equinox/pull/174
* Add attention functions and tests by jenkspt in https://github.com/patrick-kidger/equinox/pull/181
* Fixed BatchNorm not de/serialising correctly by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/172
* Ordered tree map by paganpasta in https://github.com/patrick-kidger/equinox/pull/170
* added use_ceil to pooling by paganpasta in https://github.com/patrick-kidger/equinox/pull/176
* Dev by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/184


**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.6.0...v0.7.0

0.6.0

- Refactor: the serialisation format for `eqx.experimental.{BatchNorm,SpectralNorm,StateIndex}` under `eqx.tree_{de,}serialise_leaves` has been tweaked slightly to avoid an edge-case crash. [This is the reason for the minor version bump to 0.6.0, as this is technically a (very minor) compatibility break.]
- Refactor: changed from `jax.tree_map` to `jax.tree_util.tree_map` to remove all the deprecation warnings JAX has started giving.
- Feature: added `eqx.nn.Lambda` (for use with `eqx.nn.Sequential`)
- Feature: added `eqx.default_{de,}serialise_filter_spec` (for use `eqx.tree_{de,}serialise_leaves).
- Bugfix: fixed `BatchNorm` crashing under `jax.grad`.
- Documentation: lots of tidy-ups and improvements.

---

Autogenerated release notes as follows:

What's Changed
* Doc tweak by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/141
* Fix GroupNorm channels argument and docstring by jenkspt in https://github.com/patrick-kidger/equinox/pull/148
* make `Sequential` indexable and add tests by jenkspt in https://github.com/patrick-kidger/equinox/pull/153
* replace tree_* with tree_util.tree_* to avoid jax warning messages by amir-saadat in https://github.com/patrick-kidger/equinox/pull/156
* Extend deserial filter by paganpasta in https://github.com/patrick-kidger/equinox/pull/145
* added lambda_layer to composites by paganpasta in https://github.com/patrick-kidger/equinox/pull/158
* Tweaked docs for Lambda by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/159
* Tweaked intro docs to improve readability of filtering by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/160
* Batch norm grad crash fix by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/162
* added outputs to the StateIndex example by paganpasta in https://github.com/patrick-kidger/equinox/pull/164
* Fixed crash when serialising StateIndices without saved state by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/167
* v0.6.0 by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/169

New Contributors
* jenkspt made their first contribution in https://github.com/patrick-kidger/equinox/pull/148
* amir-saadat made their first contribution in https://github.com/patrick-kidger/equinox/pull/156

**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.5.6...v0.6.0

0.5.6

Autogenerated release notes as follows:

What's Changed
* Adaptive avg pool 1d by paganpasta in https://github.com/patrick-kidger/equinox/pull/129
* `{Avg,Max}Pool{1,2,3}D` -> `{Avg,Max}Pool{1,2,3}d`. Removed wrong stride default. by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/135
* Tweaked AdaptivePool by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/139
* Adds adaptive pooling by patrick-kidger in https://github.com/patrick-kidger/equinox/pull/140

New Contributors
* paganpasta made their first contribution in https://github.com/patrick-kidger/equinox/pull/129

**Full Changelog**: https://github.com/patrick-kidger/equinox/compare/v0.5.5...v0.5.6

Page 5 of 8

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.