yolov3
cococener
这个作者很懒,什么都没留下…
展开
-
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) ...原创 2019-07-02 15:03:10 · 23966 阅读 · 1 评论 -
pythorch yolov3训练问题
TypeError: 'NoneType' object is not subscriptable出现这个问题的原因是你的数据集的格式和datasets.py的代码不同 self.label_files = [ path.replace("JPEGImages", "labels").replace(".png", ".txt").replace(...原创 2019-07-05 11:20:47 · 667 阅读 · 0 评论