Neural Tangents Versions Save

Fast and Easy Infinite Neural Networks in Python

v0.6.5

4 months ago

Maintenance release:

v0.5.0

2 years ago

Potentially breaking changes:

New features:

v0.4.0

2 years ago

WARNING: Our next major release (v0.5.0) will include significant refactoring, and could break your code if you use internal function like nt.utils.typing, nt.utils.utils, nt.utils.Kernel etc. (public API will remain unchanged). This should be easily fixed by updating the imports, e.g. nt.utils -> nt._src.utils.

This release (v0.4.0):

New feature:

Improvements:

Bugfixes:

Breaking changes:

  • Bump requirements to jax==0.3 and frozendict==2.3.

v0.3.8

2 years ago

New Features:

  • stax.Elementwise - a layer for generic elementwise functions requiring the user to specify only scalar-valued nngp_fn : (cov12, var1, var2) |-> E[fn(x_1) * fn(x_2)]. The NTK computation (thanks to @SiuMath) and vectorization over the underlying Kernel happen automatically under the hood. If you can't derive the nngp_fn for your function, use stax.ElementwiseNumerical. See docs for more details.

Bugfixes:

Full Changelog: https://github.com/google/neural-tangents/compare/v0.3.7...v0.3.8