文件名称:gonets:在 Go 中运行神经网络
文件大小:8KB
文件格式:ZIP
更新时间:2024-07-04 03:23:52
Go
GoNets 在 Go 中运行神经网络 GoNets 允许您指定和运行前馈神经网络。 它不支持培训,我也没有计划在不久的将来实施。 这个包的目标是将在其他地方训练的网络集成到 golang 项目中。 指定网络非常简单: biases := [] float64 { 0.0 , 0.1 , - 0.3 } weights := [][] float64 { { 0.3 , 0.4 , - 0.1 }, { - 0.1 , 0.1 , 0.0 }, { - 0.3 , 0.0 , 0.0 }, } net , err := SoftmaxLayer ( InputLayer ( 3 ), biases , weights ) predictions , err := net . GetOutput ([] float64 { 3 , 2 , 1 })
【文件预览】:
gonets-master
----utils.go(459B)
----gonets_test.go(9KB)
----LICENSE(1KB)
----README.md(572B)
----gonets.go(3KB)
----.gitignore(266B)
----api.go(1KB)