Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
133 lines
3.0 KiB
YAML
133 lines
3.0 KiB
YAML
# 任务定义 + 训练超参。数据包路径见 data_packs.yaml;训练用哪些包见 workflow.registry.yaml active_packs
|
||
# domain: dms=舱内驾驶员监控 | forward=前向交通标志(检测+细分类合一任务)
|
||
|
||
version: 3
|
||
dataset_root: .
|
||
|
||
split:
|
||
val_ratio: 0.1
|
||
seed: 42
|
||
resplit_after_ingest: true
|
||
min_val_per_class: 1
|
||
min_train_per_class: 1
|
||
rare_class_train_floor: 5
|
||
|
||
ingest:
|
||
sources_subdir: sources
|
||
ingested_subdir: sources/_ingested
|
||
|
||
train:
|
||
mode: full
|
||
|
||
detect:
|
||
model: yolo26n.pt
|
||
epochs: 100
|
||
lr0: 0.01
|
||
imgsz: 640
|
||
warm_start: null
|
||
epochs_continue: 50
|
||
lr0_continue: 0.001
|
||
|
||
pose:
|
||
model: yolo26n-pose.pt
|
||
epochs: 100
|
||
lr0: 0.01
|
||
imgsz: 640
|
||
warm_start: null
|
||
epochs_continue: 50
|
||
lr0_continue: 0.001
|
||
|
||
classify:
|
||
model: yolo26n-cls.pt
|
||
epochs: 50
|
||
lr0: 0.01
|
||
imgsz: 224
|
||
warm_start: null
|
||
epochs_continue: 30
|
||
lr0_continue: 0.001
|
||
|
||
tasks:
|
||
ddaw:
|
||
domain: dms
|
||
label: DDAW 疲劳检测
|
||
type: detect
|
||
task_dir: ddaw
|
||
nc: 9
|
||
names: [face, eye_open, eye_partially_open, eye_close, mouth_open, mouth_partially_open, mouth_close, side_face, nod_face]
|
||
inbox: inbox/ddaw
|
||
extra_train: []
|
||
|
||
addw:
|
||
domain: dms
|
||
label: ADDW 分心检测
|
||
type: detect
|
||
task_dir: addw
|
||
nc: 4
|
||
names: [face, eye_open, nod_face, nod_eye]
|
||
inbox: inbox/addw
|
||
extra_train: []
|
||
|
||
addw_face:
|
||
domain: dms
|
||
label: ADDW 人脸关键点
|
||
type: pose
|
||
task_dir: addw_face
|
||
kpt_shape: [37, 3]
|
||
names: {0: face}
|
||
inbox: inbox/addw_face
|
||
extra_train: []
|
||
|
||
dam:
|
||
domain: dms
|
||
label: DAM 驾驶员监控
|
||
type: multi
|
||
task_dir: dam
|
||
modes:
|
||
batch_0516:
|
||
label: 0516 批次
|
||
type: detect
|
||
subdir: batch_0516
|
||
nc: 15
|
||
names: [face, eye_open, eye_partially_open, eye_close, mouth_open, mouth_partially_open, mouth_close, side_face, nod_face, glasses, sunglasses, smoke, phone, driver, rise_face]
|
||
inbox: inbox/dam/batch_0516
|
||
extra_train: []
|
||
batch_0417:
|
||
label: 0417 批次
|
||
type: detect
|
||
subdir: batch_0417
|
||
nc: 15
|
||
names: [face, eye_open, eye_partially_open, eye_close, mouth_open, mouth_partially_open, mouth_close, side_face, nod_face, glasses, sunglasses, smoke, phone, driver, rise_face]
|
||
inbox: inbox/dam/batch_0417
|
||
extra_train: []
|
||
|
||
forward:
|
||
domain: forward
|
||
label: 前向·交通标志
|
||
type: multi
|
||
task_dir: forward
|
||
modes:
|
||
detect:
|
||
label: 粗检测(4 类)
|
||
type: detect
|
||
subdir: detect
|
||
nc: 4
|
||
names: [indicative, prohibitory, warning, vehicle]
|
||
inbox: inbox/forward/detect
|
||
extra_train: []
|
||
classify:
|
||
label: 细分类
|
||
type: classify
|
||
subdir: classify
|
||
inbox: inbox/forward/classify
|
||
extra_train: []
|
||
|
||
adas:
|
||
domain: forward
|
||
label: 前向·ADAS 7 类检测
|
||
type: detect
|
||
task_dir: adas
|
||
nc: 7
|
||
names: [Pedestrain, Car, Truck, Bus, Motor-vehicles, Tricycle, cones]
|
||
mode: detect
|
||
inbox: inbox/adas
|