增加方法参数注释

This commit is contained in:
李大鹏 2024-05-03 09:33:59 +08:00
parent e7f37822bb
commit 1ff28abe82

View File

@ -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