Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pruning tutorial #605

Merged
merged 7 commits into from
Feb 19, 2020
Merged

Add pruning tutorial #605

merged 7 commits into from
Feb 19, 2020

Conversation

mickypaganini
Copy link
Contributor

@mickypaganini mickypaganini commented Aug 9, 2019

Add tutorial for pruning functionalities discussed in feature request issue pytorch/pytorch#20402

Depends on: pytorch/pytorch#24076

@netlify
Copy link

netlify bot commented Aug 9, 2019

Deploy preview for pytorch-tutorials-preview ready!

Built with commit 261d093

https://deploy-preview-605--pytorch-tutorials-preview.netlify.com

@SethHWeidman
Copy link
Contributor

@mickypaganini, tutorial looks great. It wasn't building, so I made a tiny change and now it is. @brianjo, is this because @mickypaganini doesn't have write access to the repo? I think that's the issue I was having before.

cc @jlin27 FYI

@brianjo
Copy link
Contributor

brianjo commented Aug 14, 2019

In the build (and when I test this locally), I get the error ModuleNotFoundError: No module named 'torch.nn.utils.prune'. We build on 1.2 release. Update - prune hasn't been merged into core yet, so this is going to be on hold for a bit. Thanks!

@mickypaganini
Copy link
Contributor Author

Thanks for taking a look so quickly, @SethHWeidman @brianjo.

Yep, as Brian said and as I mentioned above, this depends on pruning actually getting merged into PyTorch (PR here: pytorch/pytorch#24076). Until then, it won't build. I will comment here once I have updates on that.

facebook-github-bot pushed a commit to pytorch/pytorch that referenced this pull request Nov 9, 2019
Summary:
Provides implementation for feature request issue #20402.

Adds pruning functionalities (structured and unstructured, local and global, as well as pruning from user-provided mask).

Associated tutorial here: pytorch/tutorials#605

cc: soumith
Pull Request resolved: #24076

Differential Revision: D18400431

Pulled By: mickypaganini

fbshipit-source-id: a97bd6ca61f8600ae411da9ff6533c232aae1a51
@mickypaganini
Copy link
Contributor Author

@SethHWeidman @brianjo if you build off of pytorch master, this tutorial should build fine now.
pytorch/pytorch#24076 was successfully merged 🎉

@cranmer
Copy link

cranmer commented Feb 13, 2020

Hello... I found this tutorial via google search. I think it will be nice to include.

It's not immediately clear to me when the pruning is just an effective pruning implemented with masking and when it leads to a network that actually has a smaller memory footprint.
It seems that the part of the tutorial that uses prune.remove makes the pruning permanent. Should I see smaller memory footprint at that time? Or do I need to serialize it and read then load the model?

Sorry if these are naive questions, but hopefully they are helpful in reaching the audience the tutorial is aimed for.

@mickypaganini
Copy link
Contributor Author

mickypaganini commented Feb 13, 2020

Hi @cranmer,
Hopefully this tutorial will be included soon (cc: @soumith).

As is, this module is not intended (by itself) to help you with memory savings. All that pruning does is to replace some entries with zeroes. This itself doesn't buy you anything, unless you represent the sparse tensor in a smarter way (which this module itself doesn't handle for you). You can, however, rely on torch.sparse and other functionalities there to help you with that. To give you a concrete example:

import torch
import torch.nn.utils.prune as prune

t = torch.randn(100, 100)
torch.save(t, 'full.pth')

p = prune.L1Unstructured(amount=0.9)
pruned = p.prune(t)
torch.save(pruned, 'pruned.pth')

sparsified = pruned.to_sparse()
torch.save(sparsified, 'sparsified.pth')

When I ls, these are the sizes on disk:

21K sparsified.pth
40K pruned.pth
40K full.pth

By the way, before calling prune.remove, you can expect you memory footprint to be a lot higher than what you started out with, because for each pruned parameter you now have: the original parameter, the mask, and the pruned version of the tensor. Calling prune.remove brings you back to only having a single (now pruned) tensor per pruned parameter. Still, if you don't represent these pruned parameters smartly, the memory footprint at this point won't be any lower than what you started out with.

@jlin27 jlin27 merged commit ad3493b into pytorch:master Feb 19, 2020
rodrigo-techera pushed a commit to Experience-Monks/tutorials that referenced this pull request Nov 29, 2021
Add pruning tutorial. Will create another PR to add it into the ToC.
@takshshila
Copy link

The tutorial mentioned pruning only a convolutional layer. Is there any method to prune the complete
BERT model?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants