添加对floor微调

This commit is contained in:
Kevin Wong
2026-01-06 17:10:09 +08:00
parent 2c2798fe04
commit 538f987a10
2 changed files with 41 additions and 0 deletions

30
datasets/floor/data.yaml Normal file
View File

@@ -0,0 +1,30 @@
train: train/images
val: valid/images
test: test/images
nc: 22
names:
- floor
- corridor
- sidewalk
- chair
- table
- sofa_bed
- door
- elevator
- stairs
- wall
- window
- cabinet
- trash_can
- person
- bag
- electronics
- plant
- obstacle
- appliance
- toilet
- sink
- tableware
path: /home/rongye/ProgramFiles/Yolo/datasets/floor

11
floor_finetune.md Normal file
View File

@@ -0,0 +1,11 @@
```bash
yolo segment train \
model=yolo11l-seg-indoor.pt \
data=datasets/floor/data.yaml \
epochs=10 \
freeze=20 \
amp=False \
device=1 \
project=/home/rongye/ProgramFiles/Yolo/blind_guide_project \
name=floor_finetune
```