文件名称:nn:用于node.js的快速简单的神经网络
文件大小:9KB
文件格式:ZIP
更新时间:2024-03-21 22:40:38
JavaScript
nn 适用于node.js的快速简单的神经网络 nn是为提高性能和易用性而构建的神经网络库。 它易于配置,并且具有合理的默认值。 您可以将其用于诸如模式识别和函数逼近之类的任务。 安装 npm install nn 用法 var nn = require ( 'nn' ) var net = nn ( ) // this example shows how we could train it to approximate sin(x) // from a random set of input/output data. net . train ( [ { input : [ 0.5248588903807104 ] , output : [ 0.5010908941521808 ] } , { input : [ 0 ] , o
【文件预览】:
nn-master
----.gitignore(26B)
----package.json(524B)
----README.md(5KB)
----lib()
--------nn.js(14KB)
--------activation.js(785B)
----test()
--------nn.js(7KB)