Google机器学习引擎的最新运行时版本1.4支持Python 3.5:
https://cloud.google.com/ml-engine/docs/runtime-version-list
如何使用Python3.5在ML引擎中训练模型?
谢谢
发布于 2017-12-21 02:05:54
python_version适用于我。请注意,python_version是一个字符串。而且它只适用于1.4运行时版本。
trainingInput: pythonVersion:'3.5‘scaleTier: BASIC
发布于 2017-12-20 06:41:21
您可以在TrainingInput中将字段pythonVersion设置为3.5。如果使用gCloud,则可以在yaml file中传递此标志,并指定标志--config=config.yaml,假设config.yaml是您的yaml文件名。
https://stackoverflow.com/questions/47895709
复制相似问题