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

📄 gnaivebayes.h

📁 一个非常有用的开源代码
💻 H
字号:
#ifndef __GNAIVEBAYES_H__#define __GNAIVEBAYES_H__#include "GLearner.h"class GXMLTag;class GPointerArray;struct GNaiveBayesOutputAttr;// A naive Bayes classifierclass GNaiveBayes : public GSupervisedLearner{protected:	int m_nSampleCount;	int m_nOutputs;	GNaiveBayesOutputAttr** m_pOutputs;	int m_nEquivalentSampleSize;	double* m_pDiscretizeMins;	double* m_pDiscretizeRanges;	int m_nDiscretizeBuckets;public:	GNaiveBayes(GArffRelation* pRelation);	GNaiveBayes(GXMLTag* pTag);	virtual ~GNaiveBayes();	// Adds a single training sample to the collection	void AddTrainingSample(double* pRow);	// Train using all the samples in a collection	virtual void Train(GArffData* pData);	// Evaluates and returns the confidence/probability that it is correct	double EvalWithConfidence(double* pRow);	// Evaluates the input values in the provided row and	// deduce the output values	virtual void Eval(double* pRow);	// Serialize the internal representation	GXMLTag* ToXml(GPointerArray* pAttrNames);	void SetEquivalentSampleSize(int n) { m_nEquivalentSampleSize = n; }	void ComputeDiscretizeRanges(GArffData* pData);	void SetDiscretizeBuckets(int n) { m_nDiscretizeBuckets = n; }protected:	void DiscretizeRow(double* pRow);	void UndiscretizeRow(double* pRow);};#endif // __GNAIVEBAYES_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -