项目作者: jamiecheng

项目描述 :
Backpropagation in C++11
高级语言: C++
项目地址: git://github.com/jamiecheng/nnet.git
创建时间: 2017-06-30T20:43:19Z
项目社区:https://github.com/jamiecheng/nnet

开源协议:MIT License

下载


A simple neural network

NNet is a simple neural network library implemented in c++. It uses matrix like arrays to train binary input data.
This is inspired by Numpy’s array. A simple version of Numpy array is included to calculate like matrixes. However,
the array included is NOT a matrix class. It only has some features like dot, transponse and exponent from a matrix.

This library is also not intended for professional usage, because it lacks performance and the code is very incomplete.