Packages
dist_neat_ex
1.0.0
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
Current section
Files
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