0

使用以下 API Explorer 和正文,我收到错误 {"error": "Error loading the model"}。我打算开始使用https://developers.google.com/resources/api-libraries/documentation/ml/v1beta1/python/latest/ml_v1beta1.projects.html#predict,但想先验证一切正常。

有没有办法查看实际错误?


https://developers.google.com/apis-explorer/?authuser=1#p/ml/v1beta1/ml.projects.predict

发布https://ml.googleapis.com/v1beta1/projects/ {project}/models/{ model_name }/versions/v1:predict?key={YOUR_API_KEY}

{ "httpBody": { "data": "[{\"placeholder_name\": [44, 158, 178, 156, 111, 101, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \ "键\": 1}]" } }

200

缓存控制:私有内容编码:gzip 内容长度:53 内容类型:文本/html;charset=utf-8 日期:2017 年 2 月 22 日星期三 05:25:14 GMT 服务器:ESF 变化:Origin、X-Origin、Referer

{"error": "加载模型时出错"} `

4

1 回答 1

0

我添加了 export.meta、export.index 和重命名的 export.data-00000-of-00001 -> 也导出云存储。

这是基于文档https://cloud.google.com/ml/docs/concepts/deployment-overview#deployment_location的错误猜测。

所以看起来你只需要创建的文件saver.save(sess, os.path.join(FLAGS.model_dir, 'export'))

于 2017-02-23T14:35:14.630 回答