Papers › Towards Efficient Model Compression via Learned Global Ranking

Towards Efficient Model Compression via Learned Global Ranking

28 Apr 2019CVPR 2020 6arXiv:1904.12368archive 2025-07-28

Ting-Wu Chin, Ruizhou Ding, Cha Zhang, Diana Marculescu

Pruning convolutional filters has demonstrated its effectiveness in compressing ConvNets. Prior art in filter pruning requires users to specify a target model complexity (e.g., model size or FLOP count) for the resulting architecture. However, determining a target model complexity can be difficult for optimizing various embodied AI applications such as autonomous robots, drones, and user-facing applications. First, both the accuracy and the speed of ConvNets can affect the performance of the application. Second, the performance of the application can be hard to assess without evaluating ConvNets during inference. As a consequence, finding a sweet-spot between the accuracy and speed via filter pruning, which needs to be done in a trial-and-error fashion, can be time-consuming. This work takes a first step toward making this process more efficient by altering the goal of model compression to producing a set of ConvNets with various accuracy and latency trade-offs instead of producing one ConvNet targeting some pre-defined latency constraint. To this end, we propose to learn a global ranking of the filters across different layers of the ConvNet, which is used to obtain a set of ConvNet architectures that have different accuracy/latency trade-offs by pruning the bottom-ranked filters. Our proposed algorithm, LeGR, is shown to be 2x to 3x faster than prior work while having comparable or better performance when targeting seven pruned ResNet-56 with different accuracy/FLOPs profiles on the CIFAR-100 dataset. Additionally, we have evaluated LeGR on ImageNet and Bird-200 with ResNet-50 and MobileNetV2 to demonstrate its effectiveness. Code available at https://github.com/cmu-enyac/LeGR.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="1904.12368")

Code

Syntology Ran 3 of 13 code samples harvested from 1 repository linked to this paper; 10 have no recorded run. Of those that ran: 3 ran · our draft was wrong.

By repository: official repository: 13 samples from 1 repository, 3 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

cmu-enyac/LeGR officialmentioned in papermentioned on GitHubpytorchApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

13 samples harvested; 3 ran; 0 honoured the contract we drafted; 10 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

3ran · our draft was wrong
10unverified

Licence: 0 of the 13 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from cmu-enyac/LeGR. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

conv_1x1_bn cmu-enyac/LeGR/model/MobileNetV2.py official repository ran · our draft was wrong Apache-2.0 (permissive) · a0131fb70c267a9e · report
conv_bn cmu-enyac/LeGR/model/resnet_cifar10.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 2f7853ff01cbbc29 · report
conv_bn cmu-enyac/LeGR/model/MobileNetV2.py official repository ran · our draft was wrong Apache-2.0 (permissive) · e087cbfa1e53486d · report
ResNet20 cmu-enyac/LeGR/model/resnet_cifar10.py official repository unverified Apache-2.0 (permissive) · 787156d2c8e61d4a · report
ResNet32 cmu-enyac/LeGR/model/resnet_cifar10.py official repository unverified Apache-2.0 (permissive) · 2dcb962bd5f3dc20 · report
barlist cmu-enyac/LeGR/utils/plot_search_progress.py official repository unverified Apache-2.0 (permissive) · 0c4b994d94c12add · report
get_cbns cmu-enyac/LeGR/morphnet.py official repository unverified Apache-2.0 (permissive) · 6bb05854b757bc51 · report
get_dataloader cmu-enyac/LeGR/utils/drivers.py official repository unverified Apache-2.0 (permissive) · 8f0028eb801c9d11 · report
get_num_gen cmu-enyac/LeGR/pruner/fp_resnet.py official repository unverified Apache-2.0 (permissive) · 76cc74efee42ba21 · report
is_leaf cmu-enyac/LeGR/pruner/fp_resnet.py official repository unverified Apache-2.0 (permissive) · 26ff085b343fa39e · report
measure_model cmu-enyac/LeGR/morphnet.py official repository unverified Apache-2.0 (permissive) · a32f4a1cdd0866ba · report
test cmu-enyac/LeGR/utils/drivers.py official repository unverified Apache-2.0 (permissive) · a5658e5e4ec22f8c · report
train_epoch cmu-enyac/LeGR/utils/drivers.py official repository unverified Apache-2.0 (permissive) · 9f133990fe32defc · report

Tasks

Model Compression

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

1x1 ConvolutionAverage PoolingBatch NormalizationConvolutionDepthwise ConvolutionDepthwise Separable ConvolutionInverted Residual BlockPointwise ConvolutionPruningSPEED

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections