rethinking-network-pruning
rethinking-network-pruning copied to clipboard
Rethinking the Value of Network Pruning (Pytorch) (ICLR 2019)
Why do the thinet model which in your repo not apply the algorithm in the origin paper?Maybe I didn`t find it ?
after network-slimming,the size of modell are the same as premodel?
hello, @liuzhuang13 @Eric-mingjie ,have you ever do the pruning of mobilenetV2? I try to prune mobilenetV2 with several methods, it seems hard to train the pruned model to convergence in...
updateBN
Hello. I got a question while reproducing your interesting experiment. In section 2 of https://arxiv.org/pdf/1708.06519.pdf, "Scaling Factors and Sparsity-induced Penalty" shows below equation.  Question: g(γ) means L1 norm, but...
count_flops:你的flops计算的代码有问题。
anyone konws what the line128 model.tarin() and line 154 model.eval() in network-slimming/main.py are meant for. i did not find the defination of these two function,can i just delete them,thanks
Hi, thanks for the great work. I have a question about the experiments in predefined structured pruning methods. I am not sure I am understanding the paper correctly. For predefined...
Dear author, I am trying to prune a resnet-56 on cifar10 using network slimming. python resprune.py --dataset cifar10 --depth 56 --percent 0.8 --model ~/results_def/resnet56/baseline/model_best.pth.tar --save ~/results_def/resnet56/pruned80/ Does this mean there...
I am trying to prune simple LeNet5 model using L1-norm pruning and CIFAR10 dataset. The model has 6 kernels in the first layer and 16 in the second convolutional layer....
Traceback (most recent call last): File "main.py", line 166, in train(epoch) File "main.py", line 127, in train avg_loss += loss.data[0] IndexError: invalid index of a 0-dim tensor. Use tensor.item() to...