This commit is contained in:
2025-09-04 14:09:26 +08:00
parent fa0443deb2
commit 16b1fdb848

View File

@@ -0,0 +1,12 @@
package org.dromara.easyai.i;
/**
* @author lidapeng
* @description 激活函数接口
* @date 8:52 上午 2020/1/11
*/
public interface ActiveFunction {
float function(float x);//激活函数
float functionG(float out);//激活函数的导函数
}