GCMLE模型运行时版本

时间:2018-06-05 19:45:45

标签: google-cloud-ml

有没有办法检查GCMLE预测服务模型的运行时版本?在UI中,我可以看到模型和模型位置,但我不记得模型是否按1.6,1.7或1.8推送并且想要确认。

1 个答案:

答案 0 :(得分:1)

您可以使用gcloud CLI工具中的gcloud ml-engine models describe command获取有关模型及其当前默认版本的更多详细信息。

运行此命令将返回类似:

的内容
$ gcloud ml-engine models describe census
defaultVersion:
  createTime: '2018-06-05T11:54:35Z'
  deploymentUri: gs://GCS/model/location
  framework: TENSORFLOW
  isDefault: true
  name: projects/PROJECT_ID/models/MODEL_NAME/versions/VERSION_NAME
  pythonVersion: '2.7'
  runtimeVersion: '1.7'    <---- This is what you are interested in
  state: READY
name: projects/PROJECT_ID/models/MODEL_NAME
regions:
- us-central1

否则,您也可以使用gcloud ml-engine versions describe command找到有关特定ML Engine模型版本的更多详细信息。