Please guys can someone tell me how to Use LogLoss as an Evaluation Metric.
Like how do you Evaluate byour model with LogLoss.
Source code is appreciated
I can't make submission if I don't understand this or is it that the
criterion = nn.CrossEntropyLoss
output = Model(images)
loss = (Output,labels)
Sorry
loss = criterion(Output,labels)
Is this CrossEntropyLoss or LogLoss what we are talking about
Log loss == CrossEntropyLoss
https://stackoverflow.com/questions/50913508/what-is-the-difference-between-cross-entropy-and-log-loss-error/50926471