lisa-groundhog / GroundHog

Library for implementing RNNs with Theano
BSD 3-Clause "New" or "Revised" License
598 stars 229 forks source link

ImportError: No module named groundhog.trainer.SGD_adadelta #52

Open Devadath opened 8 years ago

Devadath commented 8 years ago

I am trying to train a translation model for English and French. When I run train.py, it gives the error

Traceback (most recent call last): File "train.py", line 8, in from groundhog.trainer.SGD_adadelta import SGD as SGD_adadelta ImportError: No module named groundhog.trainer.SGD_adadelta

Any help is appreciated.

nouiz commented 8 years ago

GroundHog isn't supported anymore. Maybe there is some other user that can help you.

You probably have an installation problem or using a different version of GroundHog then what the code used.

GroundHog morfed/was continued in the software Blocks.

On Mon, Jul 18, 2016 at 5:06 AM, Devadath V V notifications@github.com wrote:

I am trying to train a translation model for English and French. When I run train.py, it gives the error

Traceback (most recent call last): File "train.py", line 8, in from groundhog.trainer.SGD_adadelta import SGD as SGD_adadelta ImportError: No module named groundhog.trainer.SGD_adadelta

Any help is appreciated.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lisa-groundhog/GroundHog/issues/52, or mute the thread https://github.com/notifications/unsubscribe-auth/AALC-8QQMbQQ27DhXd9Vq4oSYQ36tL-Bks5qW0H4gaJpZM4JOhoo .

Lotemp commented 8 years ago

Hello Devadath, I have encountered the same problem today, and the solution that worked for me was changing the PYTHONPATH. I used this command: export PYTHONPATH=/home/WRITE-YOUR-PATH-TO-GROUNDHOG/GroundHog . hope this helps :)