Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 397 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 397 Bytes

Anneal

A simple Artificial neurla network library written in go

Setting up a neural net

weights := [][][]ann.StandardUnit{
    // Layers
    {
        // Nodes
        {
            // Input Weights
            1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
        },
    },
}

network, err := anneal.NewNetwork(weights)

TODO:

  • package to prepare default weights a lot easier
  • training package