mxnet-memonger
mxnet-memonger copied to clipboard
how to install memonger
is memonger installed by default with mxnet ?
i can't import
>>> import mxnet
>>> import memonger
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named memonger
You need to clone this repo and put it under your env variable python path
I am using colab and I found that appending the memonger repository path to sys.path works for me:
import sys sys.path.append("/path/to/mxnet-memonger")
@tqchen Does your implementation include the Alg.2 of your original paper?