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

Docs tweaks #17

Merged
merged 3 commits into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RecurrentLayers"
uuid = "78449bcf-6750-4b78-9e82-63d4a1ccdf8c"
authors = ["Francesco Martinuzzi"]
version = "0.1.2"
version = "0.1.3"

[deps]
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
Expand Down
1 change: 1 addition & 0 deletions docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ pages=[
"Cells" => "api/cells.md",
"Cell Wrappers" => "api/wrappers.md",
],
"Roadmap" => "roadmap.md"
]
22 changes: 22 additions & 0 deletions docs/src/roadmap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Roadmap
This page documents some planned work for RecurrentLayers.jl.
Future work for this library includes additional cells such as:

- FastRNNs and FastGRUs (current focus) [arxiv](https://arxiv.org/abs/1901.02358)
- Unitary recurrent neural networks [arxiv](https://arxiv.org/abs/1611.00035)
- Modern recurrent neural networks such as [LRU](https://arxiv.org/abs/2303.06349)
and [minLSTM/minGRU](https://arxiv.org/abs/2410.01201)
- Quasi recurrent neural networks [arxiv](https://arxiv.org/abs/1611.01576)

Additionally, some cell-independent architectures are also planned,
that expand the ability of recurrent architectures and could theoretically take
any cell:

- Clockwork rnns [arxiv](https://arxiv.org/abs/1402.3511)
- Phased rnns [arxiv](https://arxiv.org/abs/1610.09513)
- Segment rnn [arxiv](https://arxiv.org/abs/2308.11200)
- Fast-Slow rnns [arxiv](https://arxiv.org/abs/1705.08639)

An implementation of these ideally would be,
for example `FastSlow(RNNCell, input_size => hidden_size)`.
More details on this soon!
Loading