liuzhuang13 / DenseNet

Densely Connected Convolutional Networks, In CVPR 2017 (Best Paper Award).
BSD 3-Clause "New" or "Revised" License
4.73k stars 1.07k forks source link

Median of best test error or test error after training? #34

Open Queequeg92 opened 6 years ago

Queequeg92 commented 6 years ago

Hi, guys. In your paper, you compared your results with some other methods. Did you report the median of best test error during training or median of test error after training? What is the common way to report results? Besides, why did not you report the results using both data augmentation and dropout?

liuzhuang13 commented 6 years ago
  1. In our paper, we only report test error of one training pass (no median), after training finishes.
  2. For other methods, we copy the results from their papers. Mostly they just report in the same way as ours.
  3. We didn't use data augmentation and dropout at the same time. When there is data augmentation, there is no dropout, when there is dropout, there is no data augmentation.
Queequeg92 commented 6 years ago

Thanks for your reply.