bayerj / arac

C++ library for neural networks.
Other
39 stars 57 forks source link

Multi-Activation of networks #7

Open bayerj opened 15 years ago

bayerj commented 15 years ago

In order to increase performance (runtime wise), it makes sense to forward minibatches through a network. By this, multiple matrix/vector products can be turned into a single matrix/matrix product which results into a significant speedup, as shown by other libraries.

This would be a nice-to-have but would introduce major changes.