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
How long should I expect one pruning iteration to take? I'm talking about one iteration in this loop:
for layer_index, filter_index in prune_targets:
model = prune_vgg16_conv_layer(model, layer_index, filter_index)
It takes just over a second for me per iteration, is this normal? Can I move this process to the GPU since it seems idle at this stage?
The text was updated successfully, but these errors were encountered:
Hi,
How long should I expect one pruning iteration to take? I'm talking about one iteration in this loop:
for layer_index, filter_index in prune_targets:
model = prune_vgg16_conv_layer(model, layer_index, filter_index)
It takes just over a second for me per iteration, is this normal? Can I move this process to the GPU since it seems idle at this stage?
The text was updated successfully, but these errors were encountered: