33 dataFlow ,
44 producesArtifact ,
55 informational ,
6+ runsOn ,
67} from "../../constants/edgeStyles" ;
78
89const nodes = [
@@ -120,6 +121,46 @@ const nodes = [
120121 ] ,
121122 } ,
122123 } ,
124+ // Under construction stages
125+ {
126+ id : "stage9" ,
127+ type : "under_construction" ,
128+ data : {
129+ label : "Stage 9: OA calibration" ,
130+ subtitle : "Output Area-level calibration (~235K OAs)" ,
131+ details : [
132+ "Clone-and-assign, L0 engine" ,
133+ "Sparse matrix, SQLite targets" ,
134+ "Per-area H5 publishing" ,
135+ ] ,
136+ pr : "#291" ,
137+ } ,
138+ } ,
139+ {
140+ id : "stage10" ,
141+ type : "under_construction" ,
142+ data : {
143+ label : "Stage 10: Weight regularisation" ,
144+ subtitle : "Adversarial diagnostics pipeline" ,
145+ details : [
146+ "Influence detection, TVAE model" ,
147+ "Adversarial loop + recalibration" ,
148+ ] ,
149+ pr : "#296" ,
150+ } ,
151+ } ,
152+
153+ // Under construction infrastructure
154+ {
155+ id : "modal_gpu" ,
156+ type : "under_construction" ,
157+ data : {
158+ label : "Modal (GPU)" ,
159+ subtitle : "T4/A10G containers" ,
160+ details : [ "Offloads calibration to GPU" ] ,
161+ pr : "#279" ,
162+ } ,
163+ } ,
123164] ;
124165
125166const edges = [
@@ -132,6 +173,12 @@ const edges = [
132173 { id : "e-5-6" , source : "stage5" , target : "stage6" , ...dataFlow , label : "target matrix" } ,
133174 { id : "e-6-7" , source : "stage6" , target : "stage7" , ...dataFlow , label : "constituency weights" } ,
134175 { id : "e-7-8" , source : "stage7" , target : "stage8" , ...producesArtifact , label : "calibrated dataset" } ,
176+
177+ // Under construction edges
178+ { id : "e-7-9" , source : "stage7" , target : "stage9" , ...dataFlow , label : "calibrated FRS" } ,
179+ { id : "e-7-10" , source : "stage7" , target : "stage10" , ...dataFlow , label : "calibrated weights" } ,
180+ { id : "e-modal-6" , source : "modal_gpu" , target : "stage6" , ...runsOn } ,
181+ { id : "e-modal-7" , source : "modal_gpu" , target : "stage7" , ...runsOn } ,
135182] ;
136183
137184export default function Overview ( ) {
0 commit comments