Getting error AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'
My TF is 1.13.1 and CUDA is 10.1
Guessing this is b/c of incompatibility b/w my version of TF and the presumed 1.0.0 version. However, I do not want to downgrade my CUDA from 10 to 8 just to use TF 1.0.0.
To fix this, I:
- Made the minor code change suggested in this closed PR
- Downloaded the current seq2seq, unzipped into the dependencies directory, and installed
- Recompiled using build.sh as described in the README
- Replaced the install/g2p-seq2seq-cmudict directory with one matching the seq2seq version
This seems to be working with my configuration. Since the aforementioned PR was declined, I'm documenting this only as an issue.
Getting error
AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'My TF is 1.13.1 and CUDA is 10.1
Guessing this is b/c of incompatibility b/w my version of TF and the presumed 1.0.0 version. However, I do not want to downgrade my CUDA from 10 to 8 just to use TF 1.0.0.
To fix this, I:
This seems to be working with my configuration. Since the aforementioned PR was declined, I'm documenting this only as an issue.