赞
踩
在kaggle上训练VGG网络,为了实现一个可视化算法,运用了pytorch中的hook机制。 但是在训练中出现了爆内存的现象,总结一下几种解决办法:
import gc del variables gc.collect()
handle = model.register_forward_hook(fn) handle.remove()