mirror of
https://gitee.com/dromara/easyAi.git
synced 2024-11-29 18:27:37 +08:00
增加方法参数注释
This commit is contained in:
parent
e7f37822bb
commit
1ff28abe82
@ -269,7 +269,18 @@ public class NerveManager {
|
||||
}
|
||||
return x;
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化卷积层神经网络
|
||||
*
|
||||
* @param step 卷积步长 建议为2
|
||||
* @param kernLen 卷积核大小 建议为3
|
||||
* @param xSize 检测窗口行高
|
||||
* @param ySize 检测窗口行宽
|
||||
* @param convStudyPoint 卷积层学习率
|
||||
* @param convFunction 卷积层激活函数
|
||||
* @param isShowLog 是否打印学习参数
|
||||
* @param isSoftMax 最后一层是否用softMax激活
|
||||
*/
|
||||
public void initImageNet(int step, int kernLen, int xSize, int ySize, boolean isSoftMax
|
||||
, boolean isShowLog, double convStudyPoint, ActiveFunction convFunction) throws Exception {
|
||||
this.initPower = true;//convDepthNerves
|
||||
|
Loading…
Reference in New Issue
Block a user