generic-github-user / Caesium

General-purpose AI library with NEAT-style genetic algorithm.

Home Page:https://generic-github-user.github.io/Caesium/src/versions/javascript/projects/network-visualization/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add array average function

generic-github-user opened this issue · comments

Needed for network fitness evaluation.

const average = function (array) {
      return sum(array) / array.length;
}