Neataptic 介绍
该库为浏览器和Node.js提供 快速 神经进化和反向传播,其中 包括 一些内置网络, 包括 感知器 ,LSTM,GRU,Nark等。 ?Neataptic提供灵活的神经网络;?可以用一行 代码 去除 神经元和突触。神经网络根本不需要固定的架构。这种灵活性允许通过神经演化为您的数据集塑造网络,这是通过多线程完成的。
// this network learns the XOR gate (through neuro-evolution)
var network = new Network(2,1);
var trainingSet = [
{ input: [0,0],output: [0] },
{ input: [0,1],output: [1] },
{ input: [1,output: [0] }
];
await network.evolve(trainingSet,{
equal: true,
error: 0.03
});
网站地址 : https://wagenaartje.github.io/neataptic/
GitHub: https://github.com/wagenaartje/neataptic
网站描述: 为浏览器和Node.js提供 快速 的神经进化和反向传播
Neataptic官方网站
官方网站: https://wagenaartje.github.io/neataptic/
如果觉得 网站内容还不错,欢迎将 网站 推荐给程序员好友。
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did175704