You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
before training ,the user need to generate mask file for each layer, and need to specify the mask file dir when build the network. It is hard to specify the mask path for each layer when the network is large.
Paddle's Python V2 API does not have a clear pruning interface.
There is a need for a document to illustrate the pruning effect and usage.
so, It will have the following improvements:
We only need to provide a sparse degree for each layer with parameters of the network, and The network will automatically calculate the mask.
Improve the interface of python v2 api to pruning.
offer a pruning demo or doucument on cifar10 dataset.
The text was updated successfully, but these errors were encountered:
Pruning is a way of model compression, which is important for embedded deployments. Current paddle has an implementation of the pruning
https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/parameter/ParameterUpdaterHook.cpp#L36
However, there are servel problems:
so, It will have the following improvements:
The text was updated successfully, but these errors were encountered: