Python 运行 Cloud ML Engine trainer 在云端时不支持版本 3.6
Python version 3.6 not supported when running Cloud ML Engine trainer in the cloud
我现在可以 运行 我的 TensorFlow 模型的训练器在本地使用 Python 3.6 因为 。但是,如果我尝试 运行 云中与 config.yaml
中的 trainingInput.pythonVersion: "3.6"
相同的模型,我会收到以下错误:
INVALID_ARGUMENT: Field: python_version Error: The specified Python version '3.6' is not supported.
- '@type': type.googleapis.com/google.rpc.BadRequest
fieldViolations:
- description: The specified Python version '3.6' is not supported.
field: python_version
对此可以做些什么?
trainingInput.pythonVersion: "3.5"
(而不是 "3.6"
)显然有效。
我希望我现在在本地运行 Python 3.6 (python -V
),但在云中运行 Python 3.5 不会导致 Cloud ML Engine 出现细微问题路.
我现在可以 运行 我的 TensorFlow 模型的训练器在本地使用 Python 3.6 因为 config.yaml
中的 trainingInput.pythonVersion: "3.6"
相同的模型,我会收到以下错误:
INVALID_ARGUMENT: Field: python_version Error: The specified Python version '3.6' is not supported.
- '@type': type.googleapis.com/google.rpc.BadRequest
fieldViolations:
- description: The specified Python version '3.6' is not supported.
field: python_version
对此可以做些什么?
trainingInput.pythonVersion: "3.5"
(而不是 "3.6"
)显然有效。
我希望我现在在本地运行 Python 3.6 (python -V
),但在云中运行 Python 3.5 不会导致 Cloud ML Engine 出现细微问题路.