项目作者: sunsided

项目描述 :
Neural network experiments in C#
高级语言: C#
项目地址: git://github.com/sunsided/neural-networks.git
创建时间: 2015-05-31T20:54:24Z
项目社区:https://github.com/sunsided/neural-networks

开源协议:European Union Public License 1.1

下载


Neural Networks Evaluation

This library and set of test programs aim to evaluate the learning and usage of multi-layer perceptron (MLP) networks. The Neural library implements different differentiable and nondifferentiable activation functions and has support for different learning strategies.

Demo programs

  • XOR problem
  • Handwritten digit classification

Transfer/activation functions

  • Linear
  • Sigmoid
  • Tanh
  • Softplus
  • Rectifier
  • Heaviside (Step)

Learning algorithms

  • Momentum-based gradient descent with regularization

Cost functions

  • Logistic
  • Sum of squared errors