Skip to content

Demonstration of a neural network built in C# using no neural network libraries.

Notifications You must be signed in to change notification settings

JuanARoig/NeuralN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

NeuralN: A Basic FeedForward Neural Network

Abstract

This demonstrates a basic neural network taking data from two generic lists of input arrays. The first generic list contains input data. The second contains output decisions. Lines 28 - 103 take care of initializing weights, biases, and holder variables for those weights and biases to hold updates from gradient optimizers before they can be assigned to their respective weights and biases. Optimization happens to the error function defined on line 237. Gradient opimization is done in pieces.

About

Demonstration of a neural network built in C# using no neural network libraries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages