Skip to content

Commit 9f09b78

Browse files
author
Dhairya Gandhi
committed
doc fix
1 parent b917a32 commit 9f09b78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/losses/functions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ end
207207
208208
# Return how much the predicted distribution `ŷ` diverges from the expected Poisson
209209
# distribution `y`; calculated as `sum(ŷ .- y .* log.(ŷ)) / size(y, 2)`.
210-
REDO
211-
[More information.](https://peltarion.com/knowledge-center/documentation/modeling-view/build-an-ai-model/loss-functions/poisson_loss).
210+
211+
[More information.](https://peltarion.com/knowledge-center/documentation/modeling-view/build-an-ai-model/loss-functions/poisson).
212212
"""
213213
poisson_loss(ŷ, y; agg=mean) = agg(ŷ .- xlogy.(y, ŷ))
214214

0 commit comments

Comments
 (0)