LiberAI / NSpM

🤖 Neural SPARQL Machines for Knowledge Graph Question Answering.
http://aksw.org/Projects/NeuralSPARQLMachines
MIT License
223 stars 87 forks source link

fault in tensorflow version check #16

Closed ghost closed 5 years ago

ghost commented 5 years ago

wrong output of tensorflow version check in NSpM/nmt/nmt/utils/misc_utils.py EnvironmentError: Tensorflow version must >= 1.2.1

changes to be made from

if tf.__version__ < “1.2.1”:
    raise EnvironmentError("Tensorflow version must >= 1.2.1”)

to

if tf.__version__ < "1.02.1":
    raise EnvironmentError("Tensorflow version must >= 1.02.1")
wannabeOG commented 5 years ago

A duplicate issue, it has already been opened, the changes need to be incorporated in nmt implemented by TF, which has been linked to in the repository Check issue #15