facebookarchive / fb.resnet.torch

Torch implementation of ResNet from http://arxiv.org/abs/1512.03385 and training scripts
Other
2.29k stars 664 forks source link

Can trainer also report accuracy? #123

Closed panovr closed 8 years ago

panovr commented 8 years ago

The trainer can report top-1 error and top-5 error. Because some literature just give classification accuracy, so can trainer also report accuracy?

colesbury commented 8 years ago

Just do 100 - top-1 error?

panovr commented 8 years ago

Got it, Thanks!