Skip to content

dowling-john/GopherLearn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gopher Learn

Unit Testing Unit Test Coverage

This repo is purely for me to learn neural networks and how they work, if it helps you or you find it useful then brilliant

Initializing the Neural Network

    network := neural_network.NeuralNetwork{
        Layers: []*neural_network.FullyConnectedLayer{
            neural_network.NewFullyConnectedLayer(4, activation.ReLU),
            neural_network.NewFullyConnectedLayer(20, activation.ReLU),
            neural_network.NewFullyConnectedLayer(20, activation.ReLU),
            neural_network.NewFullyConnectedLayer(3, activation.ReLU),
        },
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages