logLoss {Metrics} | R Documentation |
Mean Log Loss
Description
logLoss
computes the average log loss between two numeric vectors.
Usage
logLoss(actual, predicted)
Arguments
actual |
The ground truth binary numeric vector containing 1 for the positive class and 0 for the negative class. |
predicted |
A numeric vector of predicted values, where the values correspond
to the probabilities that each observation in |
See Also
Examples
actual <- c(1, 1, 1, 0, 0, 0)
predicted <- c(0.9, 0.8, 0.4, 0.5, 0.3, 0.2)
logLoss(actual, predicted)
[Package Metrics version 0.1.4 Index]