Skip to content

Commit

Permalink
relu tests with finite diff is too unreliable (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal authored Aug 22, 2022
1 parent 497ad60 commit 4e394f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# v0.4

## v0.4.17

- Major breakcing change in experimental Recurrent Cell Implementations.

## v0.4.14
- Deprecate `bias` in favor of `use_bias` for `RNNCell`.
- Add `use_bias` kwarg to `LSTMCell` and `GRUCell`
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Lux"
uuid = "b2108857-7c20-44ae-9111-449ecde12c47"
authors = ["Avik Pal <[email protected]> and contributors"]
version = "0.4.16"
version = "0.4.17"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
2 changes: 1 addition & 1 deletion test/layers/normalize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ end
atol=1.0f-1, rtol=1.0f-1)
end

for act in (relu, sigmoid, tanh)
for act in (sigmoid, tanh)
ln = LayerNorm(bshape, act; affine)
println(ln)
ps, st = Lux.setup(rng, ln)
Expand Down

0 comments on commit 4e394f7

Please sign in to comment.