在tensorflow
进入我的系统并最终v1.4.1出现了各种问题。尝试运行此命令:https://github.com/sherjilozair/char-rnn-tensorflow
SystemError: built-in function AppendInt32ArrayToTensorProto returned NULL without setting an error
搜索并且找不到具有相同问题的较新版本的此特定问题或任何修补程序。
答案 0 :(得分:3)
您使用的是 Tensorflow较旧的版本,该版本可能与您当前的python版本不兼容。
当我尝试运行Tensorflow图像重新训练脚本时,我遇到了类似的问题:https://github.com/tensorflow/hub/raw/master/examples/image_retraining/retrain.py
在我的情况下,问题是由 Tensorflow 1.11.0与python 3.7.0不兼容引起的。
为我解决问题的步骤:
希望它会开始:)