donghyunlee / dtp

34 stars 16 forks source link

Code gives out the error "ImportError: No module named python2x" #1

Open abhijeetg12 opened 5 years ago

abhijeetg12 commented 5 years ago

RMS prop function is using OrderedDict, but the import for that gives out the following error.

Traceback (most recent call last): File "conti_dtp.py", line 4, in from util import * File "/home/abhijeet/Desktop/Theory of DL/Project/dtp/util.py", line 5, in from theano.compat.python2x import OrderedDict ImportError: No module named python2x

XDUSPONGE commented 5 years ago

RMS prop function is using OrderedDict, but the import for that gives out the following error.

Traceback (most recent call last): File "conti_dtp.py", line 4, in from util import * File "/home/abhijeet/Desktop/Theory of DL/Project/dtp/util.py", line 5, in from theano.compat.python2x import OrderedDict ImportError: No module named python2x Hello, I think you can change the code into from collections import OrderedDict and I have test it