我正在尝试在yolov3中自定义数据集。 我正在使用Google Colab和Google Drive来存储数据和配置文件。
这是文件内容:
classes= 1
train = /content/gdrive/My
Drive/mrcnn_fire/yolo_files/yolo_first_example/data/nfpa/train.txt
valid = /content/gdrive/My Drive/mrcnn_fire/yolo_files/yolo_first_example/data/nfpa/test.txt
names = /content/gdrive/My Drive/mrcnn_fire/yolo_files/yolo_first_example/obj.names
backup = /content/gdrive/My Drive/mrcnn_fire/yolo_files/yolo_first_example/backup/
当我运行以下命令时:
!./darknet detector train /content/gdrive/My\ Drive/mrcnn_fire/yolo_files/yolo_first_example/obj.data cfg/yolov3.cfg yolov3.weights
我收到以下错误:
Couldn't open file: /content/gdrive/MyDrive/mrcnn_fire/yolo_files/yolo_first_example/data/nfpa/train.txt
我认为这与空白解析有关。 我能解决这个问题吗?
答案 0 :(得分:0)
在配置文件中配置路径时必须小心。 obj.data
文件的路径中必须使用进行转义。像这样:/content/gdrive/My\ Drive/darknet/train.txt
。但是,您在文件train.txt和test.txt中定义的路径无法正确转义!
链接:https://colab.research.google.com/drive/1lTGZsfMaGUpBG4inDIQwIJVW476ibXk_#scrollTo=wkzMqLZV-rF5
答案 1 :(得分:0)
尝试使用Simplyfy Path
!ln -s "/content/gdrive/My Drive/darknet" /darknet
并改用/ darknet