程式筆記
Tensorflow
辨識錯誤 tensorflow KeyError "The name 'import/input' refers to an Operation not in the graph."
K
kidneyweakx
April 7, 2019 (Updated: December 17, 2025)
# 近期遇到的小錯誤
python
KeyError: "The name 'import/input' refers to an Operation not in the graph."
簡單來解釋就是他的名字你打錯了 所以input才會input錯
我自己爬文去嘗試了各種"Mul" "input"之類的都錯
最後看到這篇文章 link
# 懶人包
先用tensorflow的工具將.pb轉成可以用tensorboard可以觀看的格式,再查出input_layer(我的是placeholder)和output_layer是甚麼名字再重新修正。
這是我的程式碼(再依照個人需求更改)
python
python tensorflow\examples\label_image\label_image.py --graph=tmp\output_graph.pb --label=tmp\output_labels.txt --image=tmp\91076.png --input_layer=Placeholder --output_layer=final_result
輸出
Related Articles
→
LOG-DC6
No File is an Island: Unraveling Swift Dependencies and Architecture
> > In the world of Swift, we are accustomed to the power of Xcode and clean syntax. However, as a project's scale grows, an invisible monster begins to haunt the...
[程式筆記][Swift]
@kidneyweakx→
LOG-FE5
Saved by the Logs: How to Recover a Forgotten Keystore Password via IDE Build Logs.
> > The greatest distance in the world is when the password is right in the IDE, but I can't see it
[程式筆記][Android]
@kidneyweakx→
LOG-912
Hexo升級V5排除疑難雜症
> 因為剛好把電腦重灌,然後這個blog就躺在D槽等著我幫他換新的環境,然後他就被我快樂的升級了。
[程式筆記][Javascript][hexo]
@kidneyweakx