- 授权协议: CPOL
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://www.codeproject.com/Articles/793251/Neuronal-NET-An-Easy-Implementation-of-Neuronal-Ne
软件介绍
Neuronal.NET 是神经元网络的简单实现,示例代码:
using Brains;
Brain ANN = new Brain(5, 4, 3);
ANN.SetInput(List<double> traindata);
while (ANN.score<10)
{
ANN.score=grade(ANN.Outputs);
}
Bitmap finish=ANN.ToBitmap();
HTTP Essentials
Stephen A. Thomas、Stephen Thomas / Wiley / 2001-03-08 / USD 34.99
The first complete reference guide to the essential Web protocol As applications and services converge and Web technologies not only assume HTTP but require developers to manipulate it, it is be......一起来看看 《HTTP Essentials》 这本书的介绍吧!
