?? binaryprediction.java
字號(hào):
package mulan.evaluation;
/**
* Data holding structure to make evaluation computation a little cleaner.
* Note that the confidence, refers to the confidence of the result being true,
* and not the confidence of the result itself which can be true or false.
*/
public class BinaryPrediction
{
public BinaryPrediction(boolean predicted, boolean actual, double confidenceTrue)
{
this.predicted = predicted;
this.actual = actual;
this.confidenceTrue = confidenceTrue;
}
protected boolean actual;
protected boolean predicted;
protected double confidenceTrue;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -