文件名称:NerVe:V中的简单神经网络库
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-12 18:03:09
V
神经 V中的简单神经网络库 文件 // Creates a new NeuralNetwork instance following the layer scheme fn new (layer [] int ) & NeuralNetwork // Creates a new NeuralNetwork instance of 4 layers, with 4 input neurons and 1 output neurons n := nerve. new ( [ 4 , 8 , 6 , 1 ] ) // Teaches the NeuralNetwork instance fn (n & NeuralNetwork) teach (inputs, excepted [] f64 ) // Teaches the NeuralNetwork instance to output [
【文件预览】:
NerVe-master
----example.v(1KB)
----LICENCE(1KB)
----README.md(2KB)
----nerve()
--------nerve.v(3KB)