9 lines
417 B
YAML
9 lines
417 B
YAML
# 数据集路径设置
|
||
# '.' 表示相对于yolo命令运行的目录,这里假设你会从 innovate_project 根目录运行
|
||
path: ../train_data # 数据集根目录
|
||
train: images/train # 训练图片文件夹 (相对于 path)
|
||
val: images/val # 验证图片文件夹 (相对于 path)
|
||
|
||
# 类别信息
|
||
nc: 1 # number of classes: 类别数量
|
||
names: ['Space weld workpiece'] # class names: 类别名称列表 |