-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff95400
commit 6795bc4
Showing
14 changed files
with
61 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# based on https://fluxml.ai/Flux.jl/stable/guide/models/recurrence/ | ||
struct StackedRNN{L,S} | ||
layers::L | ||
states::S | ||
end | ||
|
||
Flux.@layer StackedRNN | ||
|
||
""" | ||
StackedRNN(rlayer, (input_size, hidden_size), args...; | ||
num_layers = 1, kwargs...) | ||
Constructs a stack of recurrent layers given the recurrent layer type. | ||
Arguments: | ||
- `rlayer`: Any recurrent layer such as [MGU](@ref), [RHN](@ref), etc... or | ||
[RNN](@extref), [LSTM](@extref), etc... | ||
- `input_size`: Defines the input dimension for the first layer. | ||
- `hidden_size`: defines the dimension of the hidden layer. | ||
- `num_layers`: The number of layers to stack. Default is 1. | ||
- `args...`: Additional positional arguments passed to the recurrent layer. | ||
- `kwargs...`: Additional keyword arguments passed to the recurrent layers. | ||
Returns: | ||
A `StackedRNN` instance containing the specified number of RNN layers and their initial states. | ||
""" | ||
function StackedRNN(rlayer, (input_size, hidden_size)::Pair, args...; | ||
num_layers::Int = 1, | ||
kwargs...) | ||
layers = [] | ||
for (idx,layer) in enumerate(num_layers) | ||
in_size = idx == 1 ? input_size : hidden_size | ||
push!(layers, rlayer(in_size => hidden_size, args...; kwargs...)) | ||
end | ||
states = [initialstates(layer) for layer in layers] | ||
|
||
return StackedRNN(layers, states0) | ||
end | ||
|
||
function (stackedrnn::StackedRNN)(inp::AbstracArray) | ||
for (layer, state) in zip(stackedrnn.layers, stackedrnn.states) | ||
inp = layer(inp, state0) | ||
end | ||
return inp | ||
end |