How to use prune for CNNs?

조회 수: 6 (최근 30일)
Nour Mohamed
Nour Mohamed 2021년 1월 12일
답변: Maksym Tymchenko 2023년 11월 2일
I want to prune pretrained CNNs by certain rates (0.1-0.9). But when I try to use the prune function I get the following error:
Check for missing argument or incorrect argument data type in call to function 'prune'.
How can I use this function for CNNs (in this case resnet18) and is there a way to specify the pruning rate?
Thank you,
  댓글 수: 1
Shaw
Shaw 2021년 11월 3일
Did you get any solution for this?

댓글을 달려면 로그인하십시오.

답변 (2개)

Nitin Kapgate
Nitin Kapgate 2021년 1월 15일
Currently the "prune" function does not provide the functionality to prune the network at specified pruninng rate.
The prune function removes zero-sized inputs, layers, and outputs from a network.
This leaves a network which may have fewer inputs and outputs, but which implements the same operations, as zero-sized inputs and outputs do not convey any information.
  댓글 수: 1
Nour Mohamed
Nour Mohamed 2021년 1월 18일
Thank you for your answer. But why can't I use it with CNNs? Why do I get that error?

댓글을 달려면 로그인하십시오.


Maksym Tymchenko
Maksym Tymchenko 2023년 11월 2일
In MATLAB, you can compress deep neural networks by using the Deep Learning Model Quantization Library, which is a free Add-On to the Deep Learning Toolbox.
This library contains a set of different functions that allow you to compress your deep learning network.
You mentioned pruning, this is a type of structural compression where the least important weights in the network are discarded making the network smaller. The "prune" function that you mentioned only accepts "shallow neural networks" as input. That is the reason why it did not work on resnet18. If you want to perform structural compression on a deep neural network like resnet18, you can use either:
Both of these functions work only on dlnetwork objects, so you might need to convert your network to that form in order to use them. For an example of how to prune convolutional filters in a CNN see:

카테고리

Help CenterFile Exchange에서 Get Started with Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by