SnnsRObject$createNet(RSNNS)
SnnsRObject$createNet()所属R语言包:RSNNS
Create a layered network
创建一个分层的网络
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function creates a layered network in the given SnnsR object. This is an SnnsR low-level function. You may want to have a look
此功能将创建分层网络中给定的SnnsR对象。这是一个SnnsR的低级别的功能。您可能要看看
用法----------Usage----------
参数----------Arguments----------
参数:unitsPerLayer
a vector of integers that represents the number of units in each layer, including input and output layer
的整数,表示在每一层中的单元的数目,包括输入和输出层的矢量
参数:fullyConnectedFeedForward
if TRUE, the network is fully connected as a feed-forward network. If FALSE, no connections are created
如果TRUE,网络是完全作为一个前馈网络连接。如果FALSE,没有任何连接创建
参见----------See Also----------
SnnsR-class
SnnsR-class
实例----------Examples----------
obj1$createNet(c(2,2), FALSE)
obj1$getUnitDefinitions()
obj2 <- SnnsRObjectFactory()
obj2$createNet(c(8,5,5,2), TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|