Skip to content

Commit 3dc1833

Browse files
committed
Fix Windows handoff docs and report asset rebuild command
1 parent e3cfe73 commit 3dc1833

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,13 @@ Get-ChildItem .\analysis_pipeline\reports\ml_results_baseline*.json | ForEach-Ob
8282
}
8383
```
8484

85-
Then regenerate documentation outputs (docx/md):
85+
Then regenerate documentation assets (tables/plots markdown + PNG):
8686

8787
```powershell
88-
python .\scripts\build_coherent_docx.py
88+
python .\analysis_pipeline\stage6_build_report_assets.py `
89+
--results-json-glob "analysis_pipeline/reports/ml_results_baseline*.json" `
90+
--confusion-json-glob "analysis_pipeline/reports/confusion_highlights_baseline*.json" `
91+
--out-dir analysis_pipeline/reports/report_assets_baseline_classic_and_advanced
8992
```
9093

9194
## Output Naming Convention

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,15 @@ Get-ChildItem .\analysis_pipeline\reports\ml_results*.json | ForEach-Object {
126126
}
127127
```
128128

129+
Then rebuild aggregate report tables/plots used in writeups:
130+
131+
```powershell
132+
python .\analysis_pipeline\stage6_build_report_assets.py `
133+
--results-json-glob "analysis_pipeline/reports/ml_results_baseline*.json" `
134+
--confusion-json-glob "analysis_pipeline/reports/confusion_highlights_baseline*.json" `
135+
--out-dir analysis_pipeline/reports/report_assets_baseline_classic_and_advanced
136+
```
137+
129138
Quick check that baseline inputs arrived:
130139

131140
```powershell

0 commit comments

Comments
 (0)