Skip to content

Commit

Permalink
Named Layers inside Generic Containers (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal authored Sep 1, 2022
1 parent 94b7e99 commit 3018707
Show file tree
Hide file tree
Showing 9 changed files with 690 additions and 527 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# v0.4

## v0.4.19

- Generic Container layers (like `Chain`, `Parallel`, etc.) can now used custom naming for
their internal layers.

## v0.4.17

- Major breakcing change in experimental Recurrent Cell Implementations.
- Major breaking change in experimental Recurrent Cell Implementations.

## v0.4.14
- Deprecate `bias` in favor of `use_bias` for `RNNCell`.
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 <avikpal@mit.edu> and contributors"]
version = "0.4.18"
version = "0.4.19"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
1 change: 1 addition & 0 deletions src/Lux.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ include("core.jl")
include("adapt.jl")
# Layer Implementations
include("layers/basic.jl")
include("layers/containers.jl")
include("layers/normalize.jl")
include("layers/conv.jl")
include("layers/dropout.jl")
Expand Down
Loading

2 comments on commit 3018707

@avik-pal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/67476

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.19 -m "<description of version>" 30187071a0491844161ebcf26fc184e7bad2e38f
git push origin v0.4.19

Please sign in to comment.