From df2f8a850100f154749eba921d24ac11ab6e4cd1 Mon Sep 17 00:00:00 2001 From: Jonathan Heek Date: Wed, 31 Mar 2021 11:36:54 +0000 Subject: [PATCH] Add missing items in CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac49cc1a8..14c01d821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,13 +35,18 @@ Possible breaking changes: - Bug Fix: Disallow modifying attributes in Modules after they are initialized. - Raise an error when saving a checkpoint which has a smaller step than the latest checkpoint already saved. + - MultiOptimizer now rejects the case where multiple sub optimizers update the + same parameter. Other changes: - Added custom error classes to many Linen errors. See: https://flax.readthedocs.io/en/latest/flax.errors.html - Adds `Module.bind` for binding variables and RNGs to an interactive Module. + - Adds `nn.apply` and `nn.init` for transforming arbitrary functions that take a `linen.Module` as their first argument. - Add option to overwrite existing checkpoints in `save_checkpoint`. - Remove JAX omnistaging check for forward compatibility. + - Pathlib compatibility for checkpoint paths. + - `is_leaf` argument in `traverse_util.flatten_dict` 0.3.2 ------