Model Compression with NNI ========================== .. toctree:: :hidden: :maxdepth: 2 Pruning Quantization Config Specification Advanced Usage .. Using rubric to prevent the section heading to be include into toc .. rubric:: Overview Deep neural networks (DNNs) have achieved great success in many tasks like computer vision, nature launguage processing, speech processing. However, typical neural networks are both computationally expensive and energy-intensive, which can be difficult to be deployed on devices with low computation resources or with strict latency requirements. Therefore, a natural thought is to perform model compression to reduce model size and accelerate model training/inference without losing performance significantly. Model compression techniques can be divided into two categories: pruning and quantization. The pruning methods explore the redundancy in the model weights and try to remove/prune the redundant and uncritical weights. Quantization refers to compress models by reducing the number of bits required to represent weights or activations. We further elaborate on the two methods, pruning and quantization, in the following chapters. Besides, the figure below visualizes the difference between these two methods. .. image:: ../../img/prune_quant.jpg :target: ../../img/prune_quant.jpg :scale: 40% :alt: NNI provides an easy-to-use toolkit to help users design and use model pruning and quantization algorithms. For users to compress their models, they only need to add several lines in their code. There are some popular model compression algorithms built-in in NNI. On the other hand, users could easily customize their new compression algorithms using NNI’s interface. There are several core features supported by NNI model compression: * Support many popular pruning and quantization algorithms. * Automate model pruning and quantization process with state-of-the-art strategies and NNI's auto tuning power. * Speedup a compressed model to make it have lower inference latency and also make it smaller. * Provide friendly and easy-to-use compression utilities for users to dive into the compression process and results. * Concise interface for users to customize their own compression algorithms. .. rubric:: Compression Pipeline .. image:: ../../img/compression_flow.jpg :target: ../../img/compression_flow.jpg :alt: The overall compression pipeline in NNI is shown above. For compressing a pretrained model, pruning and quantization can be used alone or in combination. If users want to apply both, a sequential mode is recommended as common practise. .. note:: Note that NNI pruners or quantizers are not meant to physically compact the model but for simulating the compression effect. Whereas NNI speedup tool can truly compress model by changing the network architecture and therefore reduce latency. To obtain a truly compact model, users should conduct :doc:`pruning speedup <../tutorials/cp_pruning_speedup>` or :doc:`quantizaiton speedup <../tutorials/cp_quantization_speedup>`. The interface and APIs are unified for both PyTorch and TensorFlow. Currently only PyTorch version has been supported, and TensorFlow version will be supported in future. .. rubric:: Supported Pruning Algorithms Pruning algorithms compress the original network by removing redundant weights or channels of layers, which can reduce model complexity and mitigate the over-fitting issue. .. list-table:: :header-rows: 1 :widths: auto * - Name - Brief Introduction of Algorithm * - :ref:`level-pruner` - Pruning the specified ratio on each weight element based on absolute value of weight element * - :ref:`l1-norm-pruner` - Pruning output channels with the smallest L1 norm of weights (Pruning Filters for Efficient Convnets) `Reference Paper `__ * - :ref:`l2-norm-pruner` - Pruning output channels with the smallest L2 norm of weights * - :ref:`fpgm-pruner` - Filter Pruning via Geometric Median for Deep Convolutional Neural Networks Acceleration `Reference Paper `__ * - :ref:`slim-pruner` - Pruning output channels by pruning scaling factors in BN layers(Learning Efficient Convolutional Networks through Network Slimming) `Reference Paper `__ * - :ref:`activation-apoz-rank-pruner` - Pruning output channels based on the metric APoZ (average percentage of zeros) which measures the percentage of zeros in activations of (convolutional) layers. `Reference Paper `__ * - :ref:`activation-mean-rank-pruner` - Pruning output channels based on the metric that calculates the smallest mean value of output activations * - :ref:`taylor-fo-weight-pruner` - Pruning filters based on the first order taylor expansion on weights(Importance Estimation for Neural Network Pruning) `Reference Paper `__ * - :ref:`admm-pruner` - Pruning based on ADMM optimization technique `Reference Paper `__ * - :ref:`linear-pruner` - Sparsity ratio increases linearly during each pruning rounds, in each round, using a basic pruner to prune the model. * - :ref:`agp-pruner` - Automated gradual pruning (To prune, or not to prune: exploring the efficacy of pruning for model compression) `Reference Paper `__ * - :ref:`lottery-ticket-pruner` - The pruning process used by "The Lottery Ticket Hypothesis: Finding Sparse, Trainable Neural Networks". It prunes a model iteratively. `Reference Paper `__ * - :ref:`simulated-annealing-pruner` - Automatic pruning with a guided heuristic search method, Simulated Annealing algorithm `Reference Paper `__ * - :ref:`auto-compress-pruner` - Automatic pruning by iteratively call SimulatedAnnealing Pruner and ADMM Pruner `Reference Paper `__ * - :ref:`amc-pruner` - AMC: AutoML for Model Compression and Acceleration on Mobile Devices `Reference Paper `__ * - :ref:`movement-pruner` - Movement Pruning: Adaptive Sparsity by Fine-Tuning `Reference Paper `__ .. rubric:: Supported Quantization Algorithms Quantization algorithms compress the original network by reducing the number of bits required to represent weights or activations, which can reduce the computations and the inference time. .. list-table:: :header-rows: 1 :widths: auto * - Name - Brief Introduction of Algorithm * - :ref:`naive-quantizer` - Quantize weights to default 8 bits * - :ref:`qat-quantizer` - Quantization and Training of Neural Networks for Efficient Integer-Arithmetic-Only Inference. `Reference Paper `__ * - :ref:`dorefa-quantizer` - DoReFa-Net: Training Low Bitwidth Convolutional Neural Networks with Low Bitwidth Gradients. `Reference Paper `__ * - :ref:`bnn-quantizer` - Binarized Neural Networks: Training Deep Neural Networks with Weights and Activations Constrained to +1 or -1. `Reference Paper `__ * - :ref:`lsq-quantizer` - Learned step size quantization. `Reference Paper `__ * - :ref:`observer-quantizer` - Post training quantizaiton. Collect quantization information during calibration with observers. .. rubric:: Model Speedup The final goal of model compression is to reduce inference latency and model size. However, existing model compression algorithms mainly use simulation to check the performance (e.g., accuracy) of compressed model. For example, using masks for pruning algorithms, and storing quantized values still in float32 for quantization algorithms. Given the output masks and quantization bits produced by those algorithms, NNI can really speedup the model. The following figure shows how NNI prunes and speeds up your models. .. image:: ../../img/pipeline_compress.jpg :target: ../../img/pipeline_compress.jpg :scale: 40% :alt: The detailed tutorial of Speedup Model with Mask can be found :doc:`here <../tutorials/cp_pruning_speedup>`. The detailed tutorial of Speedup Model with Calibration Config can be found :doc:`here <../tutorials/cp_quantization_speedup>`. .. attention:: NNI's model pruning framework has been upgraded to a more powerful version (named pruning v2 before nni v2.6). The old version (`named pruning before nni v2.6 `_) will be out of maintenance. If for some reason you have to use the old pruning, v2.6 is the last nni version to support old pruning version.