-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to transfer the .ckpt to .pb? #389
Comments
@lucky-xu-1994 你好,你这个搞定了嘛?我发现找不到模型的输入输出节点 |
你把ckpt文件的输入输出节点打印出来,如果是这个工程文件的的话, |
可以加qq或微信吗?qq:843783062 微信:tk-conquer |
@lucky-xu-1994 然后我就很迷惑 |
你要打印的是节点名字,试试这个,找一下soft_max输出 with tf.Session() as sess: print('done') |
代码格式是这样的吧 |
你把session下面的代码都放在会话结构中,然后仔细看一下网络的定义,找一下softmax输出 |
好的,谢谢 |
你好,我又来麻烦你了,哈哈,我找到的是六个特征图的输出节点,每个特征图输出一个分类和位置回归,例如:第一个特征图是“ssd_512_vgg/softmax/Softmax”(分类),"ssd_512_vgg/block4_box/Reshape"(位置回归),要是想得到最终的结果,需要将所有层的输出综合一起做非极大值抑制,具体可以参考工程文件中的notebooks/ssd_notebook.ipynb, |
I have learned a lot to how transfer .ckpt to .pb, but it needs the input_tensor_name and output_node_names , in this project I can't find them, so how can I transfer the .ckpt to .pb? please help!
The text was updated successfully, but these errors were encountered: