Skip to content

Code & experiments

Design notes, runnable outlines, and ablation checklists.

Repository layout (site)

src/
  components/...
  pages/
    pipelines/
      live/
      sim/
        architecture.astro
        math.astro
        code.astro
public/
  data/
    daily/<date>/*.json
    models/eqx-m1/**/*.json

Publisher outline

# 1) compute artifacts
artifacts = run_pipeline()
# 2) write JSON
write("public/data/models/eqx-m1/...", artifacts.model)
write("public/data/daily/<date>/model_selection.json", artifacts.daily)
# 3) bump latest
write("public/data/daily/latest.json", {"date": "<date>"})
# 4) build & deploy (GitHub Pages)

Experiment template

exp:
  id: 2025-09-19-eqx-ablation-01
  data: universe_v1
  target: 5d return, cls
  model: EQX-M1
  cv: regime-stratified K=5
  metrics: AUC, ECE, stability
  notes: "remove sector block, compare"

Ablation checklist

Diagnostics to track

Notes

Keep short conclusions here and push longer write-ups to the blog. Link key artifacts from Compare or the model card.