notnormalizedpredexception.java
来自「Boosting算法软件包」· Java 代码 · 共 19 行
JAVA
19 行
package jboost.booster;/** * This exception gets thrown if a prediction that is supposed to be * normalized, becomes unnormalized. * @author Aaron Arvey */public class NotNormalizedPredException extends RuntimeException { NotNormalizedPredException (String m) { message = m; } public String getMessage() { return(message); } private String message;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?