JonathanRaiman / theano_lstm

:microscope: Nano size Theano LSTM module
Other
304 stars 111 forks source link

super() syntax for python 2 #2

Closed o1lo01ol1o closed 9 years ago

o1lo01ol1o commented 9 years ago

super needs args in python 2. eg:

super().init(*args)

becomes:

super(RNN, self).init(*args)

JonathanRaiman commented 9 years ago

Thanks ! Just made this modification.