Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

17 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages