We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b917a32 commit 9f09b78Copy full SHA for 9f09b78
src/losses/functions.jl
@@ -207,8 +207,8 @@ end
207
208
# Return how much the predicted distribution `ŷ` diverges from the expected Poisson
209
# 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).
+
+[More information.](https://peltarion.com/knowledge-center/documentation/modeling-view/build-an-ai-model/loss-functions/poisson).
212
"""
213
poisson_loss(ŷ, y; agg=mean) = agg(ŷ .- xlogy.(y, ŷ))
214
0 commit comments