我是靠谱客的博主 直率身影,最近开发中收集的这篇文章主要介绍tensorflow模型冻结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

查看模型输入输出节点名称

saved_model_cli show --dir ./xxx --all
如:
在这里插入图片描述

冻结模型

freeze_graph --input_saved_model_dir --output_node_names --output_graph
在这里插入图片描述

问题

模型冻结时出现的BUG:
tensorflow.python.framework.errors_impl.InternalError: Dst tensor is not initialized.
[[{{node save/RestoreV2/_379}} = _Recvclient_terminated=false, recv_device="/job:localhost/replica:0/task:0/device:GPU:0", send_device="/job:localhost/replica:0/task:0/device:CPU:0", send_device_incarnation=1, tensor_name=“edge_383_save/RestoreV2”, tensor_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/device:GPU:0"]]
[[{{node save/RestoreV2/_226}} = _SendT=DT_FLOAT, client_terminated=false, recv_device="/job:localhost/replica:0/task:0/device:GPU:0", send_device="/job:localhost/replica:0/task:0/device:CPU:0", send_device_incarnation=1, tensor_name=“edge_231_save/RestoreV2”, _device="/job:localhost/replica:0/task:0/device:CPU:0"]]

经查,据说是超出显存,所以命令前限制GPU解决此问题:CUDA_VISIBLE_DEVICES=’’

最后

以上就是直率身影为你收集整理的tensorflow模型冻结的全部内容,希望文章能够帮你解决tensorflow模型冻结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部