Skip to content

Commit 55f781b

Browse files
committed
Fix typo
1 parent 10f72fd commit 55f781b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/literate/example.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ img = preprocess(img_raw); # array of size (224, 224, 3, 1)
3131

3232
# ## Calling the analyzer
3333
# We can now select an analyzer of our choice
34-
# and call [`analyze`](@ref) to get an explaination `expl`:
34+
# and call [`analyze`](@ref) to get an explanation `expl`:
3535
analyzer = LRPZero(model)
3636
expl, out = analyze(img, analyzer);
3737

38-
# Finally, we can visualize the explaination through heatmapping:
38+
# Finally, we can visualize the explanation through heatmapping:
3939
heatmap(expl)
4040

4141
#md # !!! tip "Neuron selection"
42-
#md # To get an explaination with respect to a specific output neuron (e.g. class 42) call
42+
#md # To get an explanation with respect to a specific output neuron (e.g. class 42) call
4343
#md # ```julia
4444
#md # expl, out = analyze(img, analyzer, 42)
4545
#md # ```

0 commit comments

Comments
 (0)