Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recurrence layer #2549

Merged
merged 6 commits into from
Dec 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
CarloLucibello committed Dec 13, 2024
commit 48e91bc57ddb6952fb6de633d33e21998843f425
2 changes: 1 addition & 1 deletion test/layers/recurrent.jl
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,10 @@ end
end

@testset "Recurrence" begin
x = rand(Float32, 2, 3, 4)
for rnn in [RNN(2 => 3), LSTM(2 => 3), GRU(2 => 3)]
cell = rnn.cell
rec = Recurrence(cell)
x = rand(Float32, 2, 3, 4)
@test rec(x) ≈ rnn(x)
end
end
Loading