我正在尝试通过可执行文件运行代码并出现错误
发生异常:NewRandomAccessFile创建/打开失败:
E:\Projects\abc/inference_graph/frozen_inference_graph.pb
: 系统找不到指定的路径
。
Inference_Graph = os.getcwd() + '/inference_graph/frozen_inference_graph.pb'
Label_Map = os.getcwd() + 'logo-detection/labelmap.pbtxt'
detection_graph = tf.Graph()
with detection_graph.as_default():
od_graph_def = tf.GraphDef()
with tf.gfile.GFile(Inference_Graph, 'rb') as fid:
serialized_graph = fid.read()
od_graph_def.ParseFromString(serialized_graph)
tf.import_graph_def(od_graph_def, name='')
任何想法或帮助将不胜感激。
答案 0 :(得分:0)
我解决了。这是因为路径错误和斜杠混合。用过的replace()