📄 predictor.java
字号:
package jboost;import jboost.booster.Prediction;import jboost.examples.Instance;import jboost.learner.IncompAttException;/** * An object that can classify <code>Instance</code>s */public interface Predictor { /** * Given an <code>Instance</code>, generate a <code>Prediction<\code> */ public abstract Prediction predict(Instance instance) throws IncompAttException; /** * Given an <code>Instance</code>, generate a <code>Prediction<\code>. */ public abstract Prediction predict(Instance instance, int numIters) throws IncompAttException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -