cripple

Results 2 issues of cripple

When I reproduce the performance of plain10 and plain2 on cifar100, I did a lot of experiments and couldn't reach the accuracy of Figure 4(b) in your paper. Therefore, I...

hello,your code loss.py and [center_loss_pytorch](https://github.com/jxgu1016/MNIST_center_loss_pytorch) are similar,but center loss has another implement,https://github.com/KaiyangZhou/pytorch-center-loss/issues/20 ,therefore, can the scheme be modified as follows? ``` class CenterLoss(nn.Module): def __init__(self, num_class=10, num_feature=2): super(CenterLoss, self).__init__() self.num_class...