RuntimeError: The Session graph is empty. Add operations to the graph before calling run().

运行keras版本的yolo.py时遇到这个错误,已解决

          在报错的第45行self.sess.get改为

                    g=tf.Graph()
                  with g.as_default():
                         self.sess = tf.Session(graph=g)
                         self.sess.run   灵感来源于https://www.jianshu.com/p/fd02aca9e8f4

同时,运行该代码是一直提醒我无name dog.jpg,这里出现的问题是python2中的input输入需要加上“”“”,它才能认定你这是str型数据,而python3中不需要

                  

你可能感兴趣的:(yolov3)