From 3b0b005b952b1092404fdd5ae1732ec9561794af Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 11 Jun 2023 22:20:04 -0500 Subject: add basic computations --- src/mind/topology.js | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) (limited to 'src/mind/topology.js') diff --git a/src/mind/topology.js b/src/mind/topology.js index 755fe4a..1cd52d3 100644 --- a/src/mind/topology.js +++ b/src/mind/topology.js @@ -8,6 +8,9 @@ const graph_proto = { connect: function(source, sink, weight) { return network_connect(this, source, sink, weight); }, + compute: function(inputs, state) { + return network_compute(this, inputs, state); + }, }; export function network(input_count, internal_count, output_count, weight_max = 4) { @@ -58,3 +61,56 @@ function network_connect(n, source, sink, weight) { return Object.freeze(nn); } + + +function incident_edges(n, adj) { + const incident = adj + .map((edge, index) => edge < 0 ? index : null) + .filter(index => index !== null); + + return incident; +} + + +function edge_ends(n, edge) { + const ends = n.adjacency + .map((adj, index) => adj[edge] !== 0 ? index : null) + .filter(index => index != null); + + ends.sort((a, b) => n.adjacency[a][edge] < n.adjacency[b][edge] ? -1 : 1); + + return ends; +} + + +function get_value(n, index, input) { + if (is_input(n, index)) { + return input[index]; + } + const adj = n.adjacency[index]; + const incident = incident_edges(n, adj); + const weight = incident.map(x => n.weight[x]); + const sources = incident + .map(x => edge_ends(n, x)) + .map(x => x.length === 2 ? x[1] : x[0]); + + const sum = sources + .reduce((acc, x, i) => acc + (weight[i] * get_value(n, x, input)), 0); + + return Math.tanh(sum); +} + + +function network_compute(n, input, state) { + const outputs = n.adjacency + .map((x, i) => is_output(n, i) ? i : null) + .filter(i => i !== null); + + const output = Object.freeze( + outputs.map(x => get_value(n, x, input)) + ); + + const newstate = Object.freeze([]); + + return Object.freeze([output, newstate]); +} -- cgit v1.2.1