MCPcopy
hub / github.com/tensorflow/playground / updateBiasesUI

Function updateBiasesUI

src/playground.ts:397–401  ·  view source on GitHub ↗
(network: nn.Node[][])

Source from the content-addressed store, hash-verified

395}
396
397function updateBiasesUI(network: nn.Node[][]) {
398 nn.forEachNode(network, true, node => {
399 d3.select(`rect#bias-${node.id}`).style("fill", colorScale(node.bias));
400 });
401}
402
403function updateWeightsUI(network: nn.Node[][], container) {
404 for (let layerIdx = 1; layerIdx < network.length; layerIdx++) {

Callers 1

updateUIFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…