Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Dec 15, 2024
1 parent 92d940a commit 55fe124
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

See also [github's page](https://github.com/FluxML/Flux.jl/releases) for a complete list of PRs merged before each release.

## v0.15.3
* Add `WeightNorm` normalization layer.
## v0.16.0 (15 December 2025)
This release has a single **breaking change**:

## v0.15.0 (December 2024)
- The recurrent cells `RNNCell`, `LSTMCell`, and `GRUCell` forward has been changed to
$y_t, state_t = cell(x_t, state_{t-1})$. Previously, it was $state_t = cell(x_t, state_{t-1})$.

Other highlights include:
* Added `WeightNorm` normalization layer.
* Added `Recurrence` layer, turning a recurrent layer into a layer processing the entire sequence at once.

## v0.15.0 (5 December 2024)
This release includes two **breaking changes**:
- The recurrent layers have been thoroughly revised. See below and read the [documentation](https://fluxml.ai/Flux.jl/v0.15/guide/models/recurrence/) for details.
- Flux now defines and exports its own gradient function. Consequently, using gradient in an unqualified manner (e.g., after `using Flux, Zygote`) could result in an ambiguity error.
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Flux"
uuid = "587475ba-b771-5e3f-ad9e-33799f191a9c"
version = "0.15.2"
version = "0.16.0"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down

0 comments on commit 55fe124

Please sign in to comment.