Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (50.2k points)

Which libraries/plugins are the best(fast/well-documented/etc) for designing and creating neural nets with backpropagation? Googling Ai4r Ai-Appp

1 Answer

0 votes
by (108k points)

A feedforward neural network with resilient backpropagation (Rprop), with no external dependencies

This implementation trains significantly faster than ai4r's backpropagation neural network, mainly because the Rprop training algorithm implemented here is much faster than the non-batch backpropagation algorithm used in ai4r.

However, this implementation is slower than ruby-fann, which wraps the FANN library, written in C. If you're looking for something production-ready, check out ruby-fann.

Browse Categories

...