From 699c8d8fd1112cb1d7801f7073c85c51c96cac1d Mon Sep 17 00:00:00 2001 From: Francesco Martinuzzi Date: Sat, 2 Nov 2024 21:20:42 +0100 Subject: [PATCH] docs: fix broken link in Recurrence docs (#1001) --- src/layers/recurrent.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/recurrent.jl b/src/layers/recurrent.jl index 878c713be..de95b5b59 100644 --- a/src/layers/recurrent.jl +++ b/src/layers/recurrent.jl @@ -86,7 +86,7 @@ automatically operate over a sequence of inputs. !!! tip Frameworks like Tensorflow have special implementation of - [`MultiRNNCell`](https://www.tensorflow.org/api_docs/python/tf/compat/v1/nn/rnn_cell/MultiRNNCell) + [`StackedRNNCells`](https://www.tensorflow.org/api_docs/python/tf/keras/layers/StackedRNNCells) to handle sequentially composed RNN Cells. In Lux, one can simple stack multiple `Recurrence` blocks in a `Chain` to achieve the same.