function RecomputeLayerValues2(input){
let nodes = [];
let links = [];
let connected = [];
for (let i=0; i<NN['weights'][0].length; i++){
let node = {'id': i, 'LayerNum': 0, 'NodeNum': InputNames[i], 'value': input[i], 'valueScaled': input[i]}
document.getElementById("node_"+i).setAttribute("r",Math.abs(2*input[i])*10+3);
document.getElementById("node_"+i).setAttribute("fill" , input[i]>0? "#FF8C00":"#00CED1");
document.getElementById("title_"+i).textContent ='layer: 0, node: '+ InputNames[i] + ', value: '+ input[i];
nodes.push(node)
}
let currentLayer = [].concat(input)
for (let l=0; l<NN['weights'].length; l++){
const weight = NN['weights'][l]
let bias = [].concat(NN['bias'][l])
let nextLayer =[].concat(bias)
for (let i=0; i<weight.length; i++){
for (let j=0; j<weight[i].length; j++){
nextLayer[j] += weight[i][j]*currentLayer[i]
let link = {'source': l*NN['WidthLimit']+i, 'target': (l+1)*NN['WidthLimit']+j, 'weight': weight[i][j]}
if (Math.abs(link.weight) > 0.001 || NN.WidthLimit<=100){
links.push(link)
if (!connected.includes(link.source)){
connected.push(link.source)
}
if (!connected.includes(link.target)){
connected.push(link.target)
}
}
}
}
for (let k=0; k<nextLayer.length; k++){
let v = nextLayer[k]
if (l !== NN['weights'].length-1){
v = Math.tanh(nextLayer[k]) // apply activation function
let node = {'id': (l+1)*NN['WidthLimit']+k, 'LayerNum': l+1, 'NodeNum': k, 'value': v, 'valueScaled': v}
var temp = (l+1)*NN['WidthLimit']+k
document.getElementById("node_"+temp.toString()).setAttribute("r" , Math.abs(Math.tanh(nextLayer[k]))*10+3);
document.getElementById("node_"+temp.toString()).setAttribute("fill" , v>0? "#FF8C00":"#00CED1");
document.getElementById("title_"+temp.toString()).textContent ="layer: "+ l+1 +", node: " + k + ', value: '+ Math.tanh(nextLayer[k]);
nodes.push(node)
nextLayer[k] = v
}
if (l === NN['weights'].length-1){
let node = {'id': (l+1)*NN['WidthLimit']+k, 'LayerNum': l+1, 'NodeNum': OutputNames[k], 'value': v, 'valueScaled': Math.tanh(v)}
var temp = (l+1)*NN['WidthLimit']+k
document.getElementById("node_"+temp.toString()).setAttribute("r" , Math.abs(Math.tanh(nextLayer[k]))*10+3);
document.getElementById("node_"+temp.toString()).setAttribute("fill" , v>0? "#FF8C00":"#00CED1");
document.getElementById("title_"+temp.toString()).textContent ="layer: "+ l+1 +", node: " + OutputNames[k] + ', value: '+ Math.tanh(nextLayer[k]);
nodes.push(node)
}
}
currentLayer = [].concat(nextLayer)
}
let nodesConnect = []
for (let n=0; n<nodes.length; n++){
if (connected.includes(nodes[n].id)){
nodesConnect.push(nodes[n])
}
}
return {"nodes": nodesConnect, "links": links};
}