This repository contains model artifacts and reference implementations for AdaMCF,
an adaptive multi-criteria fusion framework for structured neural network pruning.
AdaMCF targets the two coupled decisions in structured pruning:
What to prune: dependency-group importance is estimated by fusing multiple
criteria with loss-guided adaptive weights.
When to prune: a cosine-front sparsification schedule allocates more pruning
budget to earlier and middle training stages, where networks are generally more
plastic.
The method is designed for practical structured compression across CNNs, vision
Transformers, object detectors, and pretrained language models.
Adaptive multi-criteria fusion: combines multiple importance criteria instead
of relying on a fixed single heuristic.
Loss-guided online update: learns fusion weights through a soft-mask proxy and
zeroth-order finite-difference estimation.
Dependency-group pruning: removes structurally coupled groups such as filters,
channels, attention-related units, and model-specific dependency groups.
Cosine-front scheduling: progressively assigns pruning budget according to
training-stage sensitivity.
Broad evaluation: includes CIFAR-10, CIFAR-100, ImageNet-1K, COCO2017, and
SQuAD v1.1 experiments.
Without Git LFS, large files such as .pt, .pth, .bin, and .th will be
checked out as pointer files rather than full model weights.
Method Overview
AdaMCF models structured pruning as a spatio-temporal optimization problem.
In the spatial dimension, each dependency group receives multiple importance
signals. The method adaptively fuses these criteria with weights updated by
task-loss feedback, allowing the pruning criterion to change as the model becomes
sparser.
In the temporal dimension, AdaMCF uses a cosine-front sparsification schedule
to avoid rigid uniform pruning. This schedule assigns a larger share of pruning
to earlier and middle stages and reduces disruptive structural changes later in
training.
Citation
If this repository is useful for your work, please cite:
bibtex
1@article{adamcf2026,
2 title = {AdaMCF: Spatio-Temporal Collaborative Structured Pruning via Adaptive Multi-Criteria Fusion},
3 author = {AXAIIT},
4 year = {2026}
5}
License
This project is released under the MIT License. See LICENSE for
details.