Hello, I have been struggling to run a demo of this project for a few hours now because it lacks a requirements.txt that allows everyone to download and run this project.
I am currently using a docker container with python 3.6 image with the following dependencies:
gives me:
AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'
even tho I am using TF version 0.12.1 as described in the README.
Does anyone have a dockerfile or a config file to run this project that actually works on everyone's machine? It seems that everyone needs to figure out their own and be changing a few lines of code to make it work...
Hello, I have been struggling to run a demo of this project for a few hours now because it lacks a
requirements.txt
that allows everyone to download and run this project.I am currently using a docker container with python 3.6 image with the following dependencies:
and running the line:
python src/launcher.py --phase=train --data-path=sample/sample.txt --data-base-dir=sample --log-path=log.txt --no-load-model
gives me:
AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'
even tho I am using TF version 0.12.1 as described in the README.
Does anyone have a dockerfile or a config file to run this project that actually works on everyone's machine? It seems that everyone needs to figure out their own and be changing a few lines of code to make it work...