0

我正在使用 Ocatvian AI Graph ML 工具集设置一个 Graph Machine Learning 应用程序。在这种特殊情况下,我正在尝试设置最短路径库。它因 Tesnforflow 后端错误而失败。

AttributeError: module 'tensorflow_core._api.v2.nn' has no attribute 'rnn_cell'`

请在下面找到详细的错误日志:

文件“/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/runpy.py”,第193行,在_run_module_as_main“main”,mod_spec)文件“/Library/Frameworks/Python.framework/Versions/ 3.6/lib/python3.6/runpy.py”,第 85 行,在 _run_code exec(code, run_globals) 文件“/Users/gokulalex/Apps/graphml_apps/shortest-path/macgraph/predict.py”,第 12 行,在从 .estimator 导入 get_estimator 文件“/Users/gokulalex/Apps/graphml_apps/shortest-path/macgraph/estimator.py”,第 4 行,从 .model 导入 model_fn 文件“/Users/gokulalex/Apps/graphml_apps/shortest-path /macgraph/model.py”,第 6 行,从 .cell 导入 execute_reasoning 文件“/Users/gokulalex/Apps/graphml_apps/shortest-path/macgraph/cell/init.py”,第 2 行,从 .decode 导入 execute_reasoning文件 ”/Users/gokulalex/Apps/graphml_apps/shortest-path/macgraph/cell/decode.py”,第 4 行,从 .mac_cell 导入 * 文件“/Users/gokulalex/Apps/graphml_apps/shortest-path/macgraph/cell/ mac_cell.py”,第 14 行,在 MAC_RNNCell(tf.nn.rnn_cell.RNNCell) 类中:

4

1 回答 1

0

根据Github等网上论坛对Tensorflow库的调查,可以理解为python环境正在寻找Tensorflow 2.0版本。然而 Octavian AI Shortest Path 包似乎在 Tensorflow 1.0 上。这似乎是训练模型时出现此构建错误的原因。

请从 Tensorflow Github 存储库中找到相关线程。

TensorFlow 问题 - #32784

于 2019-11-26T11:41:47.473 回答