David Yan

Results 2 issues of David Yan

For the dilated ResNets (resnet50-dilated, resnet101-dilated, etc), the same pretrained weights as the non-dilated ResNets are used. Even though only the last two layers are different (so all earlier layers...

Hi, I've been going over your implementation of label smoothing for cross-entropy, and I don't understand why, in this code in [cross_entropy.py](https://github.com/eladhoffer/utils.pytorch/blob/master/cross_entropy.py): ``` eps_sum = smooth_eps / num_classes eps_nll =...