Tensorflow serving: “No assets to save/writes” when exporting models

≡放荡痞女 提交于 2019-12-21 07:06:17

问题


Recently I am trying to deploy deep learning services using tensorflow serving. But I got the following infos when exporting my model:

  INFO:tensorflow: No assets to save
  INFO:tensorflow: No assets to write
  INFO:tensorflow: SavedModel written to: b'./models/1/saved_model.pb'

I don't really understand what happening here. What does "No assets to save/write" mean? Is everthing goes well? btw,by running the official example Serving a tensorflow model, I got the same infos.


回答1:


Assets mean any external files that are needed for you model. Common examples are vocabularies and embedding matrices. If your model does not have any external dependencies, these messages are expected. Note that they are logged at "INFO" level.



来源:https://stackoverflow.com/questions/47027870/tensorflow-serving-no-assets-to-save-writes-when-exporting-models

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!