rebuild hotspot tiles for full semantic audit

This commit is contained in:
OpenAI Codex
2026-04-18 14:17:34 +08:00
parent d50b127eae
commit b0f68dbe39
6 changed files with 530 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
# 项目步骤记录
最后更新:`2026-04-18 10:08`
最后更新:`2026-04-18 14:18`
仓库:`/root/sourceserver/pbf`
远端:`ssh://git@nas:2222/tei/pbf.git`
@@ -128,6 +128,96 @@
从语义版专项问题中剥离出来
3. 每修一类问题后,直接复跑同一组 AOI 截图,直到 diff 明显收敛
## 2026-04-18 全国热点 AOI 旧坏 tile 重建修复
### 1. 这轮补充确认
- 用户指出唐津热点截图右侧仍有明显大片空白
- 继续下钻后确认:
- 上一轮修掉的只是 `extent = 4096` 错退片
- 但当前全国 `full / semantic` 热点里还有另一类更深的问题:
- 几何坐标本身被旧构建产物写坏
### 2. 已定位到的根因
- 在问题 tile 例如:
- `12/3526/1643.pbf`
上:
- 原始 `newpec` 的正常 buffer 只约为 `±20480`
- 但当前 delivery 旧 tile 的多层几何 `min_y` 已被写到约 `-1064960`
- 这不是 source 原始 PBF 自带的问题
- 因为用当前 builder 对同一 tile 临时重建后:
- 几何最大 overflow 可回到正常的 `20480`
- 因此当前判断为:
- 线上全国 `full / semantic` 里混有一批旧坏 tile
- 需要直接按当前 builder 重建
### 3. 本轮新增重建脚本
- 已新增:
- [`navsea_rebuild_hotspot_tiles.py`](/root/sourceserver/pbf/navsea_rebuild_hotspot_tiles.py)
- 用途:
- 按全国固定 AOI 热点枚举 tile
- 先用当前 builder 重建 `full`
- 再以重建后的 full tile 为底稿刷新 `semantic`
- 同时生成备份和修复报告
### 4. 本轮实际修复
- 已对当前固定 AOI 热点 tile 做一次重建修复:
- 博多港中心 `10nm`
- 东京湾 `10nm`
- 大阪 `10nm`
- 冲绳 `10nm`
- 唐津 `5nm`
- 覆盖 zoom
- `10`
- `12`
- 实际重建并部署:
- `154` 张热点 tile 到 `full`
- `154` 张热点 tile 到 `semantic`
- 备份目录:
- `/tmp/navsea_hotspot_rebuild/backup_full`
- `/tmp/navsea_hotspot_rebuild/backup_semantic`
- 修复报告:
- [`report/full_hotspot_rebuild_2026-04-18/full_hotspot_rebuild.md`](/root/sourceserver/pbf/report/full_hotspot_rebuild_2026-04-18/full_hotspot_rebuild.md)
- [`report/full_hotspot_rebuild_2026-04-18/full_hotspot_rebuild.json`](/root/sourceserver/pbf/report/full_hotspot_rebuild_2026-04-18/full_hotspot_rebuild.json)
### 5. 当前复核
- 已再次复核问题 tile
- `/home/wwwroot/pbf-delivery-full-20260415/12/3526/1643.pbf`
- `/home/wwwroot/pbf-delivery-full-semantic-20260416/12/3526/1643.pbf`
- 当前两边都已从:
- `max_overflow = 1064960`
修回到:
- `max_overflow = 20480`
### 6. 唐津 z12 单点复跑结果
- 已单独复跑:
- [`report/karatsu_hotspot_verify_2026-04-18/full_aoi_visual_audit.md`](/root/sourceserver/pbf/report/karatsu_hotspot_verify_2026-04-18/full_aoi_visual_audit.md)
- [`report/karatsu_hotspot_verify_2026-04-18/full_aoi_visual_audit.json`](/root/sourceserver/pbf/report/karatsu_hotspot_verify_2026-04-18/full_aoi_visual_audit.json)
- 结果:
- `karatsu full z12`
- 修前 `0.859021`
- 修后 `0.761277`
- `karatsu semantic z12`
- 修前 `0.847223`
- 修后 `0.751505`
- 说明:
- 右侧大片空白已明显收敛
- 但当前视觉 diff 仍偏高,表示主线风格 / 文本 / 细节匹配仍未收口
### 7. 当前下一步
1. 继续对:
- `唐津 z12`
- `冲绳 z12`
做第二轮逐层定位
2. 先把“旧坏 tile”与“主线 style 差异”两类问题彻底拆开
3. 之后再决定是否把这套 rebuild 从热点 AOI 扩到全国更大范围
## 2026-04-17 Karatsu 20nm final Native ParseTile 异常定位
### 1. 用户现象