Packages

This project allows for Distributed Neuroevolution of Augmenting Topologies. Evolve a population of artificial neural networks on a distributed cluster of devices, using the NEAT algorithm.

Current section

Files

Jump to
dist_neat_ex lib backup_buddy.ex
Raw

lib/backup_buddy.ex

defmodule DistNeatEx.BackupBuddy do
use GenServer
def start_link(arg \\ %{}, opts \\ [name: __MODULE__]) do
GenServer.start_link(__MODULE__, arg, opts)
end
def init(arg) do
{:ok, arg}
end
end