REVIEW 4 major objections 5 minor 2 cited by
Electrostatic Force Regularization for Neural Structured Pruning
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that adding an electrostatic-force penalty to the training loss drives some convolutional filters' weights to zero and preserves others, so the network can be pruned at arbitrary ratios without retraining or architecture…
desk verdict A Coulomb-style pruning story that fails on its own math: the derivation is invalid and the update rule is just weighted L2 shrinkage, though the experimental setup is more substantial than the theory. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the electrostatic force penalty $F_{e,n,l} = k_e |q_{1,l}| |q_{n,l}| / r_{n,l}^2$, with $q_{n,l} = \mathrm{sgn}(n,l) \|W_{n,l}\|_1$ and $r_{n,l} = |q_{1,l} - q_{n,l}|$. The source filter $q_1$ is the layer's largest-$\ell^1$-norm filter. The paper's claimed mechanism is the gradient update $w \leftarrow w - \epsilon(\nabla_w J + \alpha_e k_e |q_1| r^{-2} w)$, which supposedly drives same-sign filters to zero and opposite-sign filters to larger magnitudes. This penalty is what couples weight optimization with filter-importance ranking.
What would settle it
Train one convolutional layer on MNIST with the electrostatic regularizer and plot the fraction of repelled-filter $\ell^1$-norms that reach machine-precision zero over epochs. Independently, differentiate $F_{e,n,l}$ with respect to a weight and compare the result with the update rule in the paper: if the analytic gradient is not proportional to the weight itself (or if repelled norms plateau far from zero), the claimed mechanism fails.
Extended reading notes
Core claim
The paper's central claim is that a Coulomb-style penalty added to the training objective reorganizes a convolutional layer's filters into two populations: filters whose charge matches the source filter (the filter with the largest $\ell^1$-norm) feel a repulsive force and their weights shrink toward zero, while filters of opposite charge feel an attractive force and keep non-zero weights. Concretely, the regularized loss is $\tilde{J} = \sum J + \alpha_e F_e$ with $F_{e,n,l} = k_e |q_{1,l}| |q_{n,l}| / r_{n,l}^2$, where charges are the product of filter sign and $\ell^1$-norm and $r$ is the absolute difference of charges. The authors claim that after training with this objective, deleting the repelled filters by $\ell^1$-norm ranking yields a pruned network with minimal accuracy loss, without architecture changes and without an extensive fine-tuning stage. They present the method as the first application of electrostatic charge concepts to DCNN training for pruning, and report competitive results on MNIST, CIFAR, and ImageNet across ResNet and VGG architectures.
Load-bearing premise
The pruning mechanism rests on the claim that minimizing the penalty term pushes repelled filters' weights to zero and attracted filters' weights to larger magnitudes; if the effective gradient does not have that direction, the clean separation of disposable and informative filters does not follow.
Editorial extensions
If this is right
- A single training run yields a model that can be pruned at multiple ratios without retraining, because the regularization already separates disposable from informative filters.
- Pruning removes whole filters rather than individual weights, so the gains translate directly into fewer FLOPs and less memory with no architectural changes.
- The method works from both random and pretrained initialization, with pretrained weights giving higher pruned accuracy on the reported benchmarks.
- On ImageNet, the reported $1.34\times$ speedup for ResNet-34 keeps the top-1 drop at $0.19\%$, a level the authors say beats or matches several baselines at larger speedups.
Reading between the lines
- A natural extension is to apply the same charge-and-distance penalty to other structured units—transformer attention heads, MLP neurons, or convolutional blocks—wherever a per-unit $\ell^1$-norm can serve as the charge magnitude.
- The claimed pruning-ratio flexibility suggests a workflow in which one electrostatic-trained model is deployed at different speed/accuracy trade-offs without retraining; this could be tested by training once and evaluating a ladder of pruning ratios on a held-out set.
- Because the force magnitude depends on the difference of filter charges, layers with many filters of similar magnitude may require per-layer tuning of $\alpha_e$; an adaptive scheme that sets $\alpha_e$ from the spread of $\ell^1$-norms is a possible improvement the paper does not explore.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a structured pruning method for deep convolutional neural networks in which an electrostatic-force-inspired regularizer is added to the training loss. The charge of a filter is defined as the sign of the sum of its weights multiplied by the L1 norm of the weights, the source filter is the filter with the largest L1 norm, and the force between filters is defined by Fe = ke |q1||q|/r^2, with r the absolute difference of the two scalar charges. The authors claim that minimizing this regularizer causes filters with like charges to shrink toward zero while filters with opposite charges grow toward non-zero values, allowing filters to be pruned after training without architectural changes or retraining. Experiments are reported on MNIST, CIFAR-10, CIFAR-100, and ImageNet with ResNet and VGG architectures, comparing pruned accuracy and speedup against several prior pruning methods.
Significance. If the proposed mechanism worked as described, the method would be practically attractive: it promises simple structured pruning at arbitrary ratios without fine-tuning and with no architectural modification. The paper also provides an interesting analogy between Coulomb's law and filter importance. However, the central mathematical derivation is incorrect: the gradient of the proposed regularizer is not what the paper claims, and the update rule in Eq. 11 does not realize the advertised attraction/repulsion behavior. Because the pruning mechanism is unsupported and no code or targeted ablations are provided to verify the claimed force dynamics, the empirical results cannot establish the central claim. The paper does include comparisons to several published pruning methods and reports training overhead, which are useful, but these do not compensate for the unsupported mechanism.
major comments (4)
- [Section 3.2, Eqs. (6)-(11)] The derivation from Eq. 6 to Eq. 10 is not a valid gradient computation. From the definition Fe = ke |q1||q|/r^2, with |q| = ||W||_1 and r = |q1 - q|, the partial derivative of Fe with respect to a weight w_i is not proportional to w_i. The derivative of the L1 norm is sign(w_i) (where defined), and the distance r depends on q, so its derivative contributes additional terms through dq/dw_i. Therefore Eq. 10, and consequently the update rule in Eq. 11, do not follow from the stated objective.
- [Section 3.2, Eq. 11] Even if Eq. 10 were taken as the implemented update rather than as a derivative, the force term alpha_e ke |q1|/r^2 (w) is a shrinkage term proportional to w: it pushes all weights toward zero, with the magnitude of the push depending on the distance r. It contains no signed direction that would pull opposite-sign filters toward non-zero weights. The 'attractive' case is at most a weaker shrinkage when r is large, not a force toward non-zero values. Thus the paper's central claim that same-sign filters are repelled to zero while opposite-sign filters are attracted to non-zero values is not supported by the equations as written.
- [Section 6.4 and Table 2] The hyperparameter alpha_e is selected per model and dataset after observing the pruning curves. Section 6.4 states that the 'appropriate' values were determined from Figure 2, and Table 2 uses different alpha_e values for ResNet-56, VGG-19, and ResNet-34. Because alpha_e controls the strength of the alleged force and is tuned to produce good pruning results, the reported comparisons partly demonstrate hyperparameter fitting rather than a validated mechanism. Without an ablation that isolates the claimed attraction/repulsion behavior or code to reproduce the force dynamics, the experiments cannot confirm the mechanism.
- [Section 6.3.1, Table 4] The claim that the method yields 'superior top-1 accuracy after pruning compared to all existing methods' is overstated because the comparison groups methods with different speedups and different baseline accuracies. For example, at 2.17x speedup the electrostatic force (p) model reaches 93.88% pruned accuracy, but Torque at 2.15x reaches 93.76% and ABC Pruner at 2.18x reaches 93.23%; at 2.62x the electrostatic force (r) model drops to 93.04%, which is worse than several methods at similar speedups. A direct comparison under matched speedup and baseline is needed to support the comparative claim.
minor comments (5)
- [Section 1] The sentence beginning 'In the rest of this paper. In Section 2...' contains a period after 'paper' and should be rewritten as a single grammatical sentence.
- [Section 6.1] The value '74,49%' uses a comma as a decimal separator, which is inconsistent with the decimal-point notation used throughout the rest of the manuscript.
- [Algorithm 1] The line 'if n = source_f ilter_index or (nl) = 0then' contains a formatting artifact and should read 'if n = source_filter_index or sign(q_n,l) = 0 then'.
- [Figure 2 caption and Section 6.4] The Figure 2 caption mentions 'four distinct electrostatic force rates', while Section 6.4 reports experiments with three values of alpha_e (10^-11, 10^-12, and 10^-14). The manuscript should reconcile this discrepancy.
- [Author list] The author name 'Y oucef Ferdi' contains a stray space and should be corrected to 'Youcef Ferdi'.
Circularity Check
No significant circularity: the electrostatic-force pruning results are evaluated empirically against external benchmarks; the flawed Eq. 6-to-Eq. 10 gradient step is a mathematical-correctness issue, not a circularity.
full rationale
The paper's derivation chain is not circular: the 'charge' is defined from filter weights (Eqs. 2-4), and the force from that charge (Eq. 6), but the claimed pruning behavior is then tested empirically on MNIST/CIFAR/ImageNet (Tables 4-6) rather than being read off from the definition alone. There are no load-bearing self-citations; the reference list contains no works by the authors. Alpha_e is a tuned hyperparameter (Fig. 2, Table 2), but the evaluated quantities are measured pruned accuracies, not quantities constructed from the fitted values. The serious weakness is that Eq. 10 does not follow from Eq. 6: for |q| = ||W||_1, d|q|/dw_i = sign(w_i), and r in Eq. 5 depends on W, so the gradient is not proportional to w; and Eq. 11's 'attractive' case is at most a weaker shrinkage, not a force toward non-zero weights. That is an unsupported derivation / correctness risk, not a circular equivalence between input and output, so it does not raise the circularity score.
Assumptions & free parameters
free parameters (2)
- alpha_e (electrostatic force rate) =
10^-16 for ResNet-56/CIFAR-10, 10^-11 for VGG-19/CIFAR-100, 10^-17 for ResNet-34/ImageNet
- per-layer pruning ratios =
[0,0.52,0.52,0.52,0], [0,0.6,0.6,0.6,0], [0,0.62,0.63,0.62,0], [0:0,1-15:0.65], [0:0,1-15:0.70], [0,0.5,0.5,0.5,0,0]
assumptions (4)
- domain assumption Filter importance can be ranked by the L1 norm of its weights, and the largest-norm filter can serve as the source filter.
- ad hoc to paper The sign of the sum of the filter weights defines the electrostatic charge polarity of that filter.
- ad hoc to paper The distance between filters can be represented as the absolute difference of their scalar charges.
- ad hoc to paper Minimizing F_e through gradient descent produces the desired weight distribution.
invented entities (2)
-
Filter charge q_n,l
-
Electrostatic force F_e between filters
Cite this review
Pith. "Pith review of Electrostatic Force Regularization for Neural Structured Pruning." pith.science (2026). https://pith.science/paper/XA2R6W6O
@misc{pith2026241111079,
author = {Pith},
title = {Pith review of: Electrostatic Force Regularization for Neural Structured Pruning},
year = {2026},
howpublished = {\url{https://pith.science/paper/XA2R6W6O}},
note = {Machine review of arXiv:2411.11079}
}
read the original abstract
The demand for deploying deep convolutional neural networks (DCNNs) on resource-constrained devices for real-time applications remains substantial. However, existing state-of-the-art structured pruning methods often involve intricate implementations, require modifications to the original network architectures, and necessitate an extensive fine-tuning phase. To overcome these challenges, we propose a novel method that, for the first time, incorporates the concepts of charge and electrostatic force from physics into the training process of DCNNs. The magnitude of this force is directly proportional to the product of the charges of the convolution filter and the source filter, and inversely proportional to the square of the distance between them. We applied this electrostatic-like force to the convolution filters, either attracting filters with opposite charges toward non-zero weights or repelling filters with like charges toward zero weights. Consequently, filters subject to repulsive forces have their weights reduced to zero, enabling their removal, while the attractive forces preserve filters with significant weights that retain information. Unlike conventional methods, our approach is straightforward to implement, does not require any architectural modifications, and simultaneously optimizes weights and ranks filter importance, all without the need for extensive fine-tuning. We validated the efficacy of our method on modern DCNN architectures using the MNIST, CIFAR, and ImageNet datasets, achieving competitive performance compared to existing structured pruning approaches.
Figures
Forward citations
Cited by 2 Pith papers
-
Lightweight G-YOLOv11: Advancing Efficient Fracture Detection in Pediatric Wrist X-rays
G-YOLOv11l, a ghost-convolution and halved-filter YOLOv11 variant, reaches mAP@0.5 of 0.535 at 2.4 ms per image, 68.7% smaller than YOLOv11l but 13.6% less accurate.
-
Deep Convolutional Neural Networks Structured Pruning via Gravity Regularization
A gravity-inspired regularization method for structured pruning is proposed, but its no-retraining results show large accuracy drops and its fine-tuned comparisons use lower baselines than competing methods.
Reference graph
Works this paper leans on
-
[1]
Restructuring the teacher and student in self-distillation
Yujie Zheng, Chong Wang, Chenchen Tao, Sunqi Lin, Jiangbo Qian, and Jiafei Wu. Restructuring the teacher and student in self-distillation. IEEE Transactions on Image Processing, 2024
work page 2024
-
[2]
Low-rank approximation for sparse attention in multi-modal llms
Lin Song, Yukang Chen, Shuai Yang, Xiaohan Ding, Yixiao Ge, Ying-Cong Chen, and Ying Shan. Low-rank approximation for sparse attention in multi-modal llms. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13763–13773, 2024
work page 2024
-
[3]
Quantization via distillation and contrastive learning
Zehua Pei, Xufeng Yao, Wenqian Zhao, and Bei Yu. Quantization via distillation and contrastive learning. IEEE Transactions on Neural Networks and Learning Systems, 2023
2023
-
[4]
Discrimination-aware network pruning for deep model compression
Jing Liu, Bohan Zhuang, Zhuangwei Zhuang, Yong Guo, Junzhou Huang, Jinhui Zhu, and Mingkui Tan. Discrimination-aware network pruning for deep model compression. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(8):4035–4051, 2021
work page 2021
-
[5]
Complexity-driven model compression for resource- constrained deep learning on edge
Muhammad Zawish, Steven Davy, and Lizy Abraham. Complexity-driven model compression for resource- constrained deep learning on edge. IEEE Transactions on Artificial Intelligence, 5(8):3886–3901, 2024
work page 2024
-
[6]
Ganji, Ivan Lazarevich, and Sudhakar Sah
Matteo Grimaldi, Darshan C. Ganji, Ivan Lazarevich, and Sudhakar Sah. Accelerating deep neural networks via semi-structured activation sparsity. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) Workshops, pages 1179–1188, October 2023
work page 2023
-
[7]
Advancing model pruning via bi-level optimization
Yihua Zhang, Yuguang Yao, Parikshit Ram, Pu Zhao, Tianlong Chen, Mingyi Hong, Yanzhi Wang, and Sijia Liu. Advancing model pruning via bi-level optimization. Advances in Neural Information Processing Systems, 35:18309–18326, 2022
work page 2022
-
[8]
Prior gradient mask guided pruning-aware fine-tuning
Linhang Cai, Zhulin An, Chuanguang Yang, Yangchun Yan, and Yongjun Xu. Prior gradient mask guided pruning-aware fine-tuning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pages 140–148, 2022
work page 2022
Show all 38 references
-
[9]
The lottery ticket hypothesis: Finding sparse, trainable neural networks
Jonathan Frankle and Michael Carbin. The lottery ticket hypothesis: Finding sparse, trainable neural networks. In International Conference on Learning Representations, 2019
2019
-
[10]
Rethinking the value of network pruning
Zhuang Liu, Mingjie Sun, Tinghui Zhou, Gao Huang, and Trevor Darrell. Rethinking the value of network pruning. arXiv preprint arXiv:1810.05270, 2018. 11
2018 arXiv
-
[11]
Snip: Single-shot network pruning based on connection sensitivity
Namhoon Lee, Thalaiyasingam Ajanthan, and Philip Torr. Snip: Single-shot network pruning based on connection sensitivity. In International Conference on Learning Representations, 2018
2018
-
[12]
Progressive skeletonization: Trimming more fat from a network at initialization
Pau de Jorge, Amartya Sanyal, Harkirat Behl, Philip Torr, Grégory Rogez, and Puneet K Dokania. Progressive skeletonization: Trimming more fat from a network at initialization. In International Conference on Learning Representations, 2021
2021
-
[13]
Picking winning tickets before training by preserving gradient flow
Chaoqi Wang, Guodong Zhang, and Roger Grosse. Picking winning tickets before training by preserving gradient flow. arXiv preprint arXiv:2002.07376, 2020
2002 arXiv
-
[14]
Linear mode connectivity and the lottery ticket hypothesis
Jonathan Frankle, Gintare Karolina Dziugaite, Daniel Roy, and Michael Carbin. Linear mode connectivity and the lottery ticket hypothesis. In International Conference on Machine Learning, pages 3259–3269. PMLR, 2020
2020
-
[15]
Neural pruning via growing regularization
Huan Wang, Can Qin, Yulun Zhang, and Yun Fu. Neural pruning via growing regularization. In International Conference on Learning Representations (ICLR), 2021
2021
-
[16]
Pruning parameterization with bi-level optimization for efficient semantic segmentation on the edge
Changdi Yang, Pu Zhao, Yanyu Li, Wei Niu, Jiexiong Guan, Hao Tang, Minghai Qin, Bin Ren, Xue Lin, and Yanzhi Wang. Pruning parameterization with bi-level optimization for efficient semantic segmentation on the edge. In Proceedings of the IEEE/CVF Conference on Computer Vision ...
2023
-
[17]
Gradual channel pruning while training using feature relevance scores for convolutional neural networks
Sai Aparna Aketi, Sourjya Roy, Anand Raghunathan, and Kaushik Roy. Gradual channel pruning while training using feature relevance scores for convolutional neural networks. IEEE Access, 8:171924–171932, 2020
2020
-
[18]
Learning filter pruning criteria for deep convolutional neural networks acceleration
Yang He, Yuhang Ding, Ping Liu, Linchao Zhu, Hanwang Zhang, and Yi Yang. Learning filter pruning criteria for deep convolutional neural networks acceleration. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 2009–2018, 2020
2009
-
[19]
Structured compression of deep neural networks with debiased elastic group lasso
Oyebade Oyedotun, Djamila Aouada, and Bjorn Ottersten. Structured compression of deep neural networks with debiased elastic group lasso. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2277–2286, 2020
2020
-
[20]
Rigging the lottery: Making all tickets winners
Utku Evci, Trevor Gale, Jacob Menick, Pablo Samuel Castro, and Erich Elsen. Rigging the lottery: Making all tickets winners. In International Conference on Machine Learning, pages 2943–2952. PMLR, 2020
2020
-
[21]
Efficient joint optimization of layer-adaptive weight pruning in deep neural networks
Kaixin Xu, Zhe Wang, Xue Geng, Min Wu, Xiaoli Li, and Weisi Lin. Efficient joint optimization of layer-adaptive weight pruning in deep neural networks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 17447–17457, 2023
2023
-
[22]
Torque based structured pruning for deep neural network
Arshita Gupta, Tien Bau, Joonsoo Kim, Zhe Zhu, Sumit Jha, and Hrishikesh Garud. Torque based structured pruning for deep neural network. InProceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2711–2720, 2024
2024
-
[23]
Orthcaps: An orthogonal capsnet with sparse attention routing and pruning
Xinyu Geng, Jiaming Wang, Jiawei Gong, Yuerong Xue, Jun Xu, Fanglin Chen, and Xiaolin Huang. Orthcaps: An orthogonal capsnet with sparse attention routing and pruning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6037–6046, 2024
2024
-
[24]
Finding lottery tickets in vision models via data- driven spectral foresight pruning
Leonardo Iurada, Marco Ciccone, and Tatiana Tommasi. Finding lottery tickets in vision models via data- driven spectral foresight pruning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16142–16151, 2024
2024
-
[25]
Bilevelpruning: Unified dynamic and static channel pruning for convolutional neural networks
Shangqian Gao, Yanfu Zhang, Feihu Huang, and Heng Huang. Bilevelpruning: Unified dynamic and static channel pruning for convolutional neural networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16090–16100, 2024
2024
-
[26]
Unipts: A unified framework for proficient post-training sparsity
Jingjing Xie, Yuxin Zhang, Mingbao Lin, Liujuan Cao, and Rongrong Ji. Unipts: A unified framework for proficient post-training sparsity. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5746–5755, 2024
2024
-
[27]
Channel pruning for accelerating very deep neural networks
Yihui He, Xiangyu Zhang, and Jian Sun. Channel pruning for accelerating very deep neural networks. In Proceedings of the IEEE international conference on computer vision, pages 1389–1397, 2017
2017
-
[28]
Amc: Automl for model compression and acceleration on mobile devices
Yihui He, Ji Lin, Zhijian Liu, Hanrui Wang, Li-Jia Li, and Song Han. Amc: Automl for model compression and acceleration on mobile devices. In Proceedings of the European conference on computer vision (ECCV), pages 784–800, 2018
2018
-
[29]
Filter pruning via geometric median for deep convolutional neural networks acceleration
Yang He, Ping Liu, Ziwei Wang, Zhilan Hu, and Yi Yang. Filter pruning via geometric median for deep convolutional neural networks acceleration. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4340–4349, 2019
2019
-
[30]
Soft filter pruning for accelerating deep convolutional neural networks
Yang He, Guoliang Kang, Xuanyi Dong, Yanwei Fu, and Yi Yang. Soft filter pruning for accelerating deep convolutional neural networks. arXiv preprint arXiv:1808.06866, 2018. 12
2018 arXiv
-
[31]
Whc: Weighted hybrid criterion for filter pruning on convolutional neural networks
Shaowu Chen, Weize Sun, and Lei Huang. Whc: Weighted hybrid criterion for filter pruning on convolutional neural networks. In ICASSP 2023-2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 1–5. IEEE, 2023
2023
-
[32]
Channel pruning via automatic structure search
Mingbao Lin, Rongrong Ji, Yuxin Zhang, Baochang Zhang, Yongjian Wu, and Yonghong Tian. Channel pruning via automatic structure search. arXiv preprint arXiv:2001.08565, 2020
2001 arXiv
-
[33]
Channel pruning via lookahead search guided reinforcement learning
Zi Wang and Chengcheng Li. Channel pruning via lookahead search guided reinforcement learning. InProceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2029–2040, 2022
2022
-
[34]
Centripetal sgd for pruning very deep convolu- tional networks with complicated structure
Xiaohan Ding, Guiguang Ding, Yuchen Guo, and Jungong Han. Centripetal sgd for pruning very deep convolu- tional networks with complicated structure. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4943–4953, 2019
2019
-
[35]
Auto-balanced filter pruning for efficient convolutional neural networks
Xiaohan Ding, Guiguang Ding, Jungong Han, and Sheng Tang. Auto-balanced filter pruning for efficient convolutional neural networks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018
2018
-
[36]
Eigendamage: Structured pruning in the kronecker-factored eigenbasis
Chaoqi Wang, Roger Grosse, Sanja Fidler, and Guodong Zhang. Eigendamage: Structured pruning in the kronecker-factored eigenbasis. In International conference on machine learning, pages 6566–6575. PMLR, 2019
2019
-
[37]
Importance estimation for neural network pruning
Pavlo Molchanov, Arun Mallya, Stephen Tyree, Iuri Frosio, and Jan Kautz. Importance estimation for neural network pruning. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 11264–11272, 2019
2019
-
[38]
Pruning filters for efficient convnets
Hao Li, Asim Kadav, Igor Durdanovic, Hanan Samet, and Hans Peter Graf. Pruning filters for efficient convnets. arXiv preprint arXiv:1608.08710, 2016. 13
2016 arXiv
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.