Jacob Rafati

Results 2 comments of Jacob Rafati

I am using ipython, and I had the same problem. I noticed that ipython didn't belong to the Anaconda pkg. So I installed ipython for my anaconda environment `pip install...

If you want to load the weights after `DataParallel` use: `net.module.load_state_dict(pertained_weights)` If you want to load the weights before `DataParallel` use: `net.load_state_dict(pertained_weights)`