rank.h

来自「一个由Mike Gashler完成的机器学习方面的includes neural」· C头文件 代码 · 共 31 行

H
31
字号
// --------------------------------------------------------
// This demo file is dedicated to the Public Domain. See:
// http://creativecommons.org/licenses/publicdomain
// --------------------------------------------------------

#ifndef __RANK_H__
#define __RANK_H__

#include "Gui.h"

class GArffData;


class RankController : public ControllerBase
{
protected:

public:
	RankController();
	virtual ~RankController();

	void RunModal();

protected:
	void RankLearners(bool bRegression, const char* szFilename, GArffRelation* pRelation, GArffData* pData, double* pScores);
	void RankLearnersAgainstAllDatasets();
};

#endif // __MAINMENU_H__

⌨️ 快捷键说明

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