⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 binaryprediction.java

📁 Multi-label classification 和weka集成
💻 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 + -