我想使用 Tensorflow 创建一个聊天机器人。我正在使用“github.com/tensorflow/models/tree/master/tutorials/rnn/translate”中的代码。在 google-cloud-ml-engine 中运行代码时,我得到了异常“/usr/bin/python:没有名为 data_utils 的模块”,作业失败。这是我使用的命令,
gcloud ml-engine jobs submit training ${JOB_NAME} \
--package-path=. \
--module-name=translate.translate \
--staging-bucket="${TRAIN_BUCKET}" \
--region=us-central1 \
-- \
--from_train_data=${INPUT_TRAIN_DATA_A} \
--to_train_data=${INPUT_TRAIN_DATA_B} \
--from_dev_data=${INPUT_TEST_DATA_A} \
--to_dev_data=${INPUT_TEST_DATA_B} \
--train_dir="${TRAIN_PATH}" \
--data_dir="${TRAIN_PATH}" \
--steps_per_checkpoint=5 \
--from_vocab_size=45000 \
--to_vocab_size=45000
是 ml_engine 还是 tensorflow 的问题?
我关注了博客'blog.kovalevskyi.com/how-to-train-a-chatbot-with-the-tensorflow-and-google-cloud-ml-3a5617289032'并最初使用'github.com/b0noI/models/tree /translate_tutorial_supports_google_cloud_ml/tutorials/rnn/translate'。它也给出了同样的错误。