feat(playground): wire WasmIML methods into debug probe
Add evalLoss, inferBatch, and getLayerStats to the window.__nisps debug probe so Playwright tests and dev console can access the new WasmIML capabilities. InputHeatmap (Phase 3) is not yet wired into a-app.js, so batch inference heatmap integration is deferred.
This commit is contained in:
parent
f225c7c2a6
commit
c646872e42
1 changed files with 3 additions and 0 deletions
|
|
@ -914,6 +914,9 @@ async function init() {
|
||||||
updateStatus();
|
updateStatus();
|
||||||
},
|
},
|
||||||
saveState: () => saveState(),
|
saveState: () => saveState(),
|
||||||
|
evalLoss: () => iml.evalLoss(),
|
||||||
|
inferBatch: (points) => iml.inferBatch(points),
|
||||||
|
getLayerStats:() => iml.getLayerStats(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue