ffnn 0.1.0

A very simple feedfoward neural network library
Documentation
  • Coverage
  • 100%
    10 out of 10 items documented0 out of 0 items with examples
  • Size
  • Source code size: 27.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 562.07 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 55s Average build duration of successful builds.
  • all releases: 55s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Callum-Irving/ffnn
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Callum-Irving

FFNN - a very simple feedforward neural network library

CI License

Not useful yet, still a WIP.

TODO

  • Add documentation

  • Backward propagation

  • Batched backprop

  • Adam optimizer

  • Softmax activation

  • Dropout

  • Genetic algorithm utils?

  • Multiple cost functions

    • Binary cross entropy
    • Categorical cross entropy
    • Mean squared error
  • Maybe multiple optimization methods (not just gradient descent)

  • Thread pool to increase performance

  • Use GPU

Create some examples

  • MNIST digits
  • XOR function
  • Sine wave

Done

  • Forward propagation
  • Add bias nodes
  • Move initialization to the builder
  • Multiple activation functions

References