Weekly Report — 2026-W10 (2026-03-02 ~ 2026-03-08)

本周的特点是 robotics (VLA)、bioinformatics (spatial genomics) 以及 macOS desktop ecosystems 领域经历了重大的架构转型和高性能稳定性提升。关键成就包括:通过新的 batched inference server 将 GPU 利用率提高了 60%;通过 ZeRO-2 优化了 LLaVA training,将 ETA 从 13.5 天缩短至 2 天;以及成功将 spatial transcriptomics 工作负载解耦为高效的两阶段 pipeline。此外,通过全局 symlink 移除和 repository refactoring 实现了显著的结构改进,并通过 native window compositing 和 entitlement patching 解决了关键的 macOS sandbox 和 rendering barriers。尽管面临 GPU OOM errors、Docker rendering failures 和网络限制等挑战,本周最终以稳定的 training foundations、改进的 evaluation metric integrity 以及更强大、对 agent 友好的 infrastructure 结束。

Weekly Overview

Metric Value
Date Range 2026-03-02 ~ 2026-03-08
Active Days 7 / 7
Total Conversations 29
Projects 27
Tasks Completed 34
Tasks In Progress 6
Total Tokens 580,063,466
Total Cost $290.85
Claude Code Token 554,458,620
Claude Code Cost $282.81
Codex Token 25,604,846
Codex Cost $8.04
Daily Average Cost $41.55

Project Progress

Error-Recovery VLA Benchmark & Robotics Training (Phoenix/FLARE/CALVIN) (7 days active) — 🔄 active

Accomplishments:

  • 部署了带有 TCP queuing 的 BatchedVLAServer,解决了 GPU starvation 问题并将利用率从 10% 提升至 60%+。
  • 通过 ZeRO-2 和 local weight conversion 优化了 LLaVA training,将 ETA 从 13.5 天缩短至约 2 天。
  • 修正了 MuJoCo cvel memory layout (angular/linear) 以及 physical trigger failures。
  • 对齐了 BC-RNN 和 Pi0.5 policy evaluation 的 observation key mappings,并在九个 MimicGen 任务中执行了 batch evaluations。
  • 开发了多阶段 MimicGen data preparation 和 training orchestration suites。
  • 通过在 NPZ payloads 中持久化 raw state histories,实现了 pre-error trajectory replay。
  • 通过 NVIDIA driver/ICD alignment 解决了 RoboTwin Docker rendering failures。
  • 通过 two-GPU FSDP sharding 解决了 Pi0.5 OOM errors,并映射了隔离的 conda caches 以进行 offline dependency resolution。

Blockers:

  • ⚠️ 初始架构不匹配导致在 perturbed environments 中成功率为零。
  • ⚠️ 集群 proxy/network blockages 阻碍了 remote weight fetching。
  • ⚠️ Slurm environments 中的 MuJoCo/EGL device misalignment。

MIHD Spatial Genomics Pipeline (ContraVAE/STHD) (5 days active) — 🔄 active

Accomplishments:

  • 实现了一个两阶段 pipeline (embedding caching 和 fusion evaluation),减少了 85% 的 compute overhead。
  • 验证了 multi-modal fusion strategies (AdaLN/Q-Former/SCAN) 以及 STAIG fusion 的优越性,准确率达 96%。
  • 在 Visium HD datasets 上执行了 cross-sample RM-IDEAL benchmarks。
  • 修复了 scGPT checkpoint loading failures(ARI 增益 +44.4%)。
  • 执行了六阶段的 repository cleanup,移除了约 250K 行 dead code。

Blockers:

  • ⚠️ 解耦前 Uni2/HIPT 中的 Coordinate mapping failures。
  • ⚠️ 大规模 spatial matrices 的 memory-intensive loading 导致 OOM。

CalendarPro Autonomous Butler System & macOS Desktop Apps (6 days active) — 🔄 active

Accomplishments:

  • 完成了 Phase 1-3 架构大改,包括 session-aware intent classification 和 token-budget context compression。
  • 使用 NSWindow 和 .behindWindow compositing 重构了 screensaver/wallpaper rendering engine。
  • 通过 entitlement patching 和 secure-scoped bookmark lifecycles 解决了 macOS sandbox permission errors 和 network requests 问题。
  • 实现了带有 JSONL persistence 的 periodic background task scheduling。
  • 将 CI coverage 扩展至 360+ 个 passing test cases。
  • 通过 JSON 实现了 semantic routing 的外部化,并结合 mismatch-driven auto-augmentation。
  • 设计了带有 native browse mode 的 dynamic web wallpaper engine。

Blockers:

  • ⚠️ SwiftUI layers 中的 hardware-accelerated transparency regressions。
  • ⚠️ 长周期 multi-session interactions 中的 context degradation。

Gadget CLI & Infrastructure Refactoring (3 days active) — ✅ completed

Accomplishments:

  • 执行了全局 symlink removal,并迁移至 absolute project roots,以确保可预测的 dependency resolution。
  • 使用 atomic file writes 和 intelligent sync-skipping 重构了 reporting CLI。
  • 通过实现 version-tolerant fallback dictionary,修复了 Claude-Opus variants 的 API cost tracking bugs。
  • 自动化了 Hugo Pages deployment pipeline。
  • 标准化了 import paths 并更新了 Makefile/YAML configurations(通过 127+ unit tests 验证)。

Key Tasks

  • 🔄 Pi0.5 VLA Inference & Training Optimization — 部署 BatchedVLAServer 以解决 GPU starvation,并通过 ZeRO-2/FSDP sharding 优化 LLaVA training,以绕过 proxy/memory bottlenecks。
  • MIHD Spatial Transcriptomics Benchmarking & Repair — 将 RM-IDEAL pipeline 适配至 Visium HD,并修复了 scGPT checkpoint Transformer attribute losses 以恢复 metric integrity。
  • CalendarPro Autonomous Architecture & Context Routing — 使用 session-aware signals、token-budget compression 和 dynamic mismatch learning 重新设计了 intent classification。
  • 🔄 Self-Reflection Framework Orchestration — 为 8x A800 deployment 设计六阶段 training blueprint,包括 HDF5 data route synchronization。
  • Global Repository & Symlink Migration — 系统性地从 relative symlinks 迁移至 absolute project roots,以确保可预测的 cross-project dependency resolution。

Problems & Solutions

1. VLA inference pipelines suffered extreme GPU starvation due to Action Chunking idle gaps and WebSocket bottlenecks. [Error-Recovery VLA Benchmark] (2026-03-02)

Solution: 设计了一个带有 timer-based queuing 和 subprocess workers 的 BatchedVLAServer,以掩盖 serialization gaps。

2. MuJoCo simulation instability caused by inverted cvel memory layout and misassigned EEF targets. [Error-Recovery VLA Benchmark] (2026-03-03)

Solution: 将 raw pointer slicing 修正为 [angular(3), linear(3)],并实现了用于 force injection 的 per-step re-application loops。

3. LLaVA/Phoenix training duration overestimated due to ZeRO-3 overhead and network proxy blocks. [Robotics & VLA Training] (2026-03-07)

Solution: 降级至 ZeRO-2 以获得更好的 memory balance,将 weights 转换为 local safetensors,并将 HDF5 预加载到 CPU RAM。

4. Headless Docker container rendering failures caused by Vulkan ABI mismatches. [Robotics & VLA Training] (2026-03-06)

Solution: 使 NVIDIA drivers 与 ICD configurations 对齐,并使用专用的 environment variables 进行 library mapping。

5. macOS sandbox blocking WKWebView network requests and window routing conflicts. [macOS Desktop Apps] (2026-03-07)Solution: 添加了 ’network.client’ entitlements 并将 NSWindow levels 提升至 ‘.normal’ 交互层级。

6. 由于 ’norm_stats’ 中缺失数据键导致的 normalization pipelines 中的 silent failures。[Spatial Transcriptomics] (2026-03-05)

Solution: 修补了 compute scripts,以便动态地将 keys 注入 running statistics,从而防止 scale mismatches。

7. 由于 version suffix 不一致,导致 Automated API cost tracking 对特定 Claude-Opus 变体返回 $0。[Gadget CLI] (2026-03-03)

Solution: 追踪了 LiteLLM mapping 并实现了一个具有 version-tolerant 特性的 fallback pricing dictionary。

Learnings

Architecture (architecture)

  • 将高延迟的 feature extraction 解耦到 cached staging directories 中,并使用带有显式 gates 的 phased architectural specifications,可以防止 circular dependencies 并控制 multi-modal compute costs。

Domain Knowledge (domain)

  • bioinformatics 中的 Foundation models 需要先进的 downstream fusion techniques 和严格的 feature parity;类似地,large-VLA models 需要显式的 model parallelism (ZeRO-2/FSDP) 来克服 memory tiers。

Debugging (debugging)

  • Physics engine 的 memory layouts 经常与 documentation 相矛盾,需要进行直接的 pointer validation;此外,silent observation/key mismatches 可能在得出战略结论之前损坏 evaluation baselines。

Tools (tools)

  • macOS hardware-accelerated layers 需要独立的 NSWindow compositing;对于 infrastructure,虽然 symlinking 可以节省空间,但在 refactoring 后,硬编码 ‘sys.path’ 对于维持可预测的 evaluation trees 至关重要。

AI Usage Notes

Effective Patterns:

  • ✓ 使用 AI 进行深层 structural diagnostics 以及快速执行 boilerplate implementation(例如 JSONL persistence, registry patterns)。
  • ✓ 利用 AI 将战略性的 architectural boundaries 转化为功能性的 Python server logic。
  • ✓ 用于大规模 codebase refactoring (symlink removal) 的 parallel agent orchestration。
  • ✓ 用于 conversational intent training 的 mismatch-driven auto-augmentation。
  • ✓ 用于 architectural optimization 和 SLURM-ready script generation 的 Agentic planning。

Limitations:

  • ✗ Convention bias:除非显式覆盖,否则 AI 默认使用标准的 HPC scheduling/JAX heuristics。
  • ✗ 在 SSH/HPC 环境中存在 relative path blindness,需要频繁进行手动 CWD corrections。
  • ✗ 在处理大规模 sequential CLI/CSV data streams 时,难以维持 long-horizon context 的脆弱性。
  • ✗ 在隔离的 conda runtimes 中过度依赖 standard system paths。
  • ✗ 缺乏对 platform-specific native constraints(macOS sandbox/window tiers)的主动直觉。
  • ✗ 在识别 minimalist/constraint-driven boundaries 之前,倾向于对 infrastructure 进行 over-engineering。

Next Week Outlook

优先进行针对 8x A800 deployment 的 active Self-Reflection Framework orchestration,重点关注 HDF5 data route synchronization 和 checkpoint management。我们将监控优化的 LLaVA training rollouts 并验证新 policy 结果的 generalizability。对于 CalendarPro,重点将转向 long-horizon memory persistence 和 proactive task discovery,而 spatial transcriptomics pipeline 将利用新修复的 scGPT checkpoints 和扩展的数据集进行优化。

Token Usage Statistics

AI Usage · 2026-W10 Claude Code + Codex
Total cost
$290.85
Total tokens
580M
Output tokens
3M
Cache read
92.8%
Cost split Claude Code $283 · Codex $8
Token character Cache reads 92.8% · Active 7.2%

Most token volume came from cache reads; Claude Code drove nearly all cost.

Peak Day: 2026-03-07 — $123.56 / 219.1M tokens

Daily Average: $41.55