フィルタプルーニングは、実用的な高速化が可能であるため、ニューラルネットワークの圧縮に広く使用されています。現在まで、既存のフィルタープルーニング作業のほとんどは、チャネル内情報を使用してフィルターの重要性を調査しています。この論文では、チャネル間の観点から始めて、異なる特徴マップ間の相関を測定するメトリックであるチャネル独立性を使用して効率的なフィルタープルーニングを実行することを提案します。独立性の低い特徴マップは、有用性の低い情報/知識を含むと解釈されるため、モデルの容量に影響を与えることなく、対応するフィルターを削除できます。フィルターの剪定のコンテキストで、定量化メトリック、測定スキーム、およびチャネルの独立性の感度/信頼性を体系的に調査します。さまざまなデータセットのさまざまなモデルに対する評価結果は、私たちのアプローチの優れたパフォーマンスを示しています。特に、CIFAR-10データセットでは、私たちのソリューションはベースラインのResNet-56モデルとResNet-110モデルに比べてそれぞれ0.75%と0.94%の精度向上をもたらし、その一方でモデルサイズとFLOPは42.8%と47.4%削減されます(ResNet-の場合) 56)および48.3%および52.1%(ResNet-110の場合)。 ImageNetデータセットでは、私たちのアプローチにより、ベースラインのResNet-50モデルよりも0.15%高い精度で、それぞれ40.8%と44.8%のストレージと計算の削減を達成できます。コードはhttps://github.com/Eclipsess/CHIP_NeurIPS2021で入手できます。
Filter pruning has been widely used for neural network compression because of its enabled practical acceleration. To date, most of the existing filter pruning works explore the importance of filters via using intra-channel information. In this paper, starting from an inter-channel perspective, we propose to perform efficient filter pruning using Channel Independence, a metric that measures the correlations among different feature maps. The less independent feature map is interpreted as containing less useful information/knowledge, and hence its corresponding filter can be pruned without affecting model capacity. We systematically investigate the quantification metric, measuring scheme and sensitiveness/reliability of channel independence in the context of filter pruning. Our evaluation results for different models on various datasets show the superior performance of our approach. Notably, on CIFAR-10 dataset our solution can bring 0.75% and 0.94% accuracy increase over baseline ResNet-56 and ResNet-110 models, respectively, and meanwhile the model size and FLOPs are reduced by 42.8% and 47.4% (for ResNet-56) and 48.3% and 52.1% (for ResNet-110), respectively. On ImageNet dataset, our approach can achieve 40.8% and 44.8% storage and computation reductions, respectively, with 0.15% accuracy increase over the baseline ResNet-50 model. The code is available at https://github.com/Eclipsess/CHIP_NeurIPS2021.