jiecaoyu / XNOR-Net-PyTorch

PyTorch Implementation of XNOR-Net
472 stars 119 forks source link

For ImageNet dataset, how to use test daset to test the model? #81

Closed wakeelephant closed 4 years ago

wakeelephant commented 4 years ago

int the article ,only use train and val dataset, two have labels, but for test dataset, there has no labels, that is to say, has not classified, so do not use DataLoader, so how can we use test ? thanks. @jiecaoyu

jiecaoyu commented 4 years ago

We usually only test the validation dataset. Accuracy numbers reported in most research papers is for the validation dataset.

wakeelephant commented 4 years ago

ok.Thanks. @jiecaoyu