Comment by WithinReason
1 month ago
These layers are residual layers, so what a layer does is:
x = x + layer(x)
so it's not too surprising that they can be used recurrently
1 month ago
These layers are residual layers, so what a layer does is:
x = x + layer(x)
so it's not too surprising that they can be used recurrently
Ah! Thank you