📄 binaryprediction.java
字号:
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;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -