赞
踩
YOLO的配置文件和数据集不是放在同个目录下
1、配置文件目录
我们运行一下python代码获取配置文件的目录:
- from pathlib import Path
-
- sub_dir='Ultralytics'
-
- #Windows目录
- path = Path.home() / 'AppData' / 'Roaming' / sub_dir
-
- #MACOS目录
- #path = Path.home() / 'Library' / 'Application Support' / sub_dir
-
- #LINUX目录
- #path = Path.home() / '.config' / sub_dir
-
- print(path)
在Windows下,结果如下:
2、数据集文件目录
打开AppData\Roaming\Ultralytics目录下的settings.yaml,里面指定了 数据集目录:datasets_dir;权重目录:weights_dir;运行结果目录:runs_dir
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。