regressionmodel.java
来自「该原代码是实现机器学习中条件随机场模型的Java代码」· Java 代码 · 共 25 行
JAVA
25 行
/**
*
*/
package lcrf.regression;
/**
* @author Bernd Gutmann
*
*/
public interface RegressionModel<T> {
/**
* Returns the numerical value for the example.
*
* @param example
* @return
*/
public double getValueFor(T example);
/**
*
* @return the number of parameters of the model
*/
public int getParameterCount();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?