The above symbol doesn't seem to exist in either the CPU or the GPU version of python3 TensorFlow (at least the versions available from pip an conda at the time of writing). While I could not find it in the python2 environment's TensorFlow either, the program still runs (maybe the symbol isn't called at all in the python2 version?).
Proposed solution
I have created a pull request to fix the two issues encountered when running setup_training.py: #67
Forcing a fallback to python2 for the problematic scripts allowed me to run the script even in a python3 environment.
Regarding the error in train.py, I'm not 100% sure that the Python version is the culprit. I'm not familiar with the inner workings of TensorFlow, so if you think this is unrelated I'll open a separate issue for this.
My system
The problem
When run in a (conda) python3 environment, some of the scripts execute successfully but some still seem to require python2.
Specifically:
Running train.py within a python3 environment throws the following error:
The above symbol doesn't seem to exist in either the CPU or the GPU version of python3 TensorFlow (at least the versions available from pip an conda at the time of writing). While I could not find it in the python2 environment's TensorFlow either, the program still runs (maybe the symbol isn't called at all in the python2 version?).
Proposed solution
I have created a pull request to fix the two issues encountered when running setup_training.py: #67 Forcing a fallback to python2 for the problematic scripts allowed me to run the script even in a python3 environment.
Regarding the error in train.py, I'm not 100% sure that the Python version is the culprit. I'm not familiar with the inner workings of TensorFlow, so if you think this is unrelated I'll open a separate issue for this.