(snapshot)
| 309 | |
| 310 | const timelineController = setupTimelineSlider(timelineSnapshots, { |
| 311 | async onSnapshotChange(snapshot) { |
| 312 | if (!snapshot) return; |
| 313 | const layers = await snapshot.loadLayers(); |
| 314 | neuralModel.updateLayers(layers); |
| 315 | neuralScene.updateNetworkWeights(); |
| 316 | networkInfoPanel?.update(neuralModel); |
| 317 | refreshNetworkState(); |
| 318 | }, |
| 319 | }); |
| 320 | |
| 321 | digitCanvas.setChangeHandler(() => refreshNetworkState()); |
nothing calls this directly
no test coverage detected