Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Machine Learning Engine Python 3

the latest runtime version 1.4 of the Google machine learning engine supports Python 3.5:

https://cloud.google.com/ml-engine/docs/runtime-version-list

How do I use Python 3.5 for training models in the ML engine?

Thanks

like image 576
GRW Avatar asked Oct 29 '22 21:10

GRW


1 Answers

The python_version works for me. Please note that python_version is a string. And also it only works with 1.4 runtime version.

trainingInput: pythonVersion: '3.5' scaleTier: BASIC

like image 117
Jiaxun Wu Avatar answered Jan 02 '23 20:01

Jiaxun Wu