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
But isn't the goal of pruning produce a smaller network with nearly the same capabilities as the original?
I don't see anything in the tutorial about checking the performance of the new network, or how to intelligently prune the network in order to achieve the goal of pruning. The tutorial takes a randomly-initialized network, randomly prunes it, and then...
...it just suddenly ends...?
Is the idea that we're supposed to just keep iteratively trying random pruning until something finally works ok? That sounds unbearably undirected and inefficient. Did I miss something crucial while reading the tutorial?
Requesting: Clarification on how to achieve the "goal" of pruning: intelligently pruning the network to achieve comparable capabilities.
Just telling me I can define my own pruning function isn't enough, because...it's a tutorial, I don't know what such a function should entail.
"In this example, we will prune at random 30% of the connections "
Why/how will that help achieve the goal of pruning? Won't it just randomly turn off parts of the network with no regard to its effect on performance? (This application seems more like Dropout than actual pruning.)
The text was updated successfully, but these errors were encountered:
🚀 Describe the improvement or the new tutorial
In the pruning tutorial https://pytorch.org/tutorials/intermediate/pruning_tutorial.html,
the method of pruning that is implemented appears to be completely random. "In this example, we will prune at random 30% of the connections..."
But isn't the goal of pruning produce a smaller network with nearly the same capabilities as the original?
I don't see anything in the tutorial about checking the performance of the new network, or how to intelligently prune the network in order to achieve the goal of pruning. The tutorial takes a randomly-initialized network, randomly prunes it, and then...
...it just suddenly ends...?
Is the idea that we're supposed to just keep iteratively trying random pruning until something finally works ok? That sounds unbearably undirected and inefficient. Did I miss something crucial while reading the tutorial?
Requesting: Clarification on how to achieve the "goal" of pruning: intelligently pruning the network to achieve comparable capabilities.
Just telling me I can define my own pruning function isn't enough, because...it's a tutorial, I don't know what such a function should entail.
Existing tutorials on this topic
https://pytorch.org/tutorials/intermediate/pruning_tutorial.html
Additional context
"In this example, we will prune at random 30% of the connections "
Why/how will that help achieve the goal of pruning? Won't it just randomly turn off parts of the network with no regard to its effect on performance? (This application seems more like Dropout than actual pruning.)
The text was updated successfully, but these errors were encountered: