inetworkfactory.vb
来自「neural networks applications」· VB 代码 · 共 24 行
VB
24 行
'------------------------------------------------------------------
' License Notice:
'------------------------------------------------------------------
' All Rights Reserved - Anoop Madhusudanan,
' Mail: amazedsaint@gmail.com
' Website: http://amazedsaint.blogspot.com
' See my articles about BrainNet at
' http://amazedsaint-articles.blogspot.com for details
'
' You can use this code (or part of it), for non
' commercial and academic uses, as long as
' - You are keeping this notice along with it
' - You are not making any profit out of this
'------------------------------------------------------------------
'''<summary> An interface for a neural network factory </summary>
Public Interface INetworkFactory
'''<summary> Create a neural Network. </summary>
Function CreateNetwork(ByVal inputneurons As Long, ByVal outputneurons As Long) As INeuralNetwork
End Interface
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?