File size: 1,002 Bytes
c4c5273 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # toothcanal 复现归档 (pre)
保存日期: 2026-06-28
## 内容
- code/ 所有 Python 模块(Stage1 定位 + Stage2 dual-SDF 重建)
- configs/ default.yaml(定稿) / quick_infer.yaml / retrain_highres.yaml / smoke.yaml
- models/ stage1.pt, stage2.pt ← 训练好的权重,直接评测可复现数字
- metrics/ held-out (031-035) 评测 CSV
- requirements.txt
## 定稿结果 (held-out 031-035, 体素 0.25mm)
- oracle: 牙 Dice 0.937 / 根管 0.751;根尖 signed_RVD -0.008(平衡)
- predicted: 牙 Dice 0.874 / 根管 0.608(GT-wise)
## 关键定稿参数 (configs/default.yaml)
- stage2.roi_mm=24 roi_vox=96 (0.25mm) ← roi_mm 永不放大
- infer.mc_level_tooth=0.0 mc_level_canal=-0.2
- stage1.core_merge_mm=3.0 eval.gt_wise_predicted=true
- label_scheme.pair_mode=geometric split.exclude_cases=[26]
## 如何复现(需另备 data/processed 的 npz)
cd <项目根>
python -m toothcanal.evaluate --config configs/default.yaml --roi_source oracle --tag repro
|