Skip to content

Commit

Permalink
Fix typo in LRP developer documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Oct 17, 2023
1 parent 98dbf3b commit 9a98f97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/lrp/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ and writing relevances $R^k$ into the pre-allocated array `Rs`:
```julia
for k in length(model):-1:1
# └─ loop over layers in reverse
lrp!(Rs[k], rules[k], layers[k], modified_layers[i], as[k], Rs[k+1])
lrp!(Rs[k], rules[k], layers[k], modified_layers[k], as[k], Rs[k+1])
# └─ Rᵏ: modified in-place └─ aᵏ └─ Rᵏ⁺¹
end
```
Expand Down

0 comments on commit 9a98f97

Please sign in to comment.