我有一个 TensorFlow 模型来测试一个宽 n 深的神经网络,但由于 TensorFlow 库中的一个错误,我无法让它在我的 Windows 机器上运行。现在我不得不求助于谷歌云平台。我在 python 文件处理输入的地方设置了所有内容,但是当我通过控制台运行代码时,我收到以下消息:
$ python -m widendeep.py -h
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE3 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
在 Windows 上运行时不会显示这些消息。这是因为我不能以这种方式通过云运行吗?我是否必须使用gcloud ml-engine local train或gcloud ml-engine jobs submit training my_job?任何有关正确方法的指导都会很棒。