doco: ep002全流程完工(P1→C4) + CLAUDE.md收摊更新

ep002(潜艇仿生)全部产物入库:B稿v2(733行)/ASR(411句)/融合B稿/
融合A稿.docx/c4_alignment.csv等。fusion_align.py修复align_batch
崩溃bug。CLAUDE.md更新ep002完工状态、新增分段偏差根因和MiMo批次
失败率两条关键决策。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
simonkoson
2026-06-23 08:15:41 +08:00
parent 010128b123
commit a87f453326
26 changed files with 7296 additions and 33 deletions
@@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
"""轮询等待 C3 fusion 完成"""
import os
import time
from pathlib import Path
ep_dir = Path(r"E:\tps-dashboard\doco\programs\ep002_20260127_qianting_fangsheng")
cache_dir = ep_dir / ".c3_cache"
expected_batches = 21 # 733 / 35
while True:
if not cache_dir.exists():
print("Cache dir not yet created, waiting 30s...")
time.sleep(30)
continue
n = len(list(cache_dir.iterdir()))
print(f"[{time.strftime('%H:%M:%S')}] Cache batches: {n}/{expected_batches}")
# Check if output file exists (fusion complete)
fuse_out = ep_dir / "融合B稿.txt"
if fuse_out.exists():
print(f"\n融合B稿.txt exists! ({fuse_out.stat().st_size} bytes)")
break
# Check if background process log indicates completion
log_dir = Path(r"C:\Users\Lenovo\AppData\Local\Temp\cline")
log_files = sorted(log_dir.glob("background-*.log"), key=lambda f: f.stat().st_mtime, reverse=True)
for lf in log_files[:3]:
content = lf.read_text(encoding="utf-8", errors="replace")
if "[ok] doco fuse" in content or "Exit code" in content:
print(f"\nBackground process completed (found in {lf.name})")
print(content[-1000:])
break
else:
time.sleep(60)
continue
break
print("Done waiting.")