/neural_net

This is the new hip coding project, right?

Primary LanguageRust

The Cool Project of the decade - Neural Networks!

This is a simple one, done in Rust (because how dare you ask for any other language)

THINGS DONE

  • forward propagation

THINGS LEFT TO DO:

  • back propagation
  • actual learning

QUESTIONS

  • Where is the bias applied? Is it per node? Is it on the input nodes?
  • If the bias weight is 1, then a node would have a value of 6+1=7, right? 6 being the value of all the previous nodes and their weights and whatnot, and then you add the bias? That seems to stack up quickly.