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

📄 buildex.h

📁 计算机人工智能方面的决策树方法 c4.5
💻 H
字号:
#ifndef _NEWSTAR_BUILDEX_H_1999_12_23_11_24_34_OLDMOON_
#define _NEWSTAR_BUILDEX_H_1999_12_23_11_24_34_OLDMOON_

/*************************************************************************/
/*                                                                       */
/*        Global data for C4.5 used for building decision trees          */
/*        -----------------------------------------------------          */
/*                                                                       */
/*************************************************************************/

#include "defns.h"
#include "c45types.h"
#include "extern.h"


extern ItemCount
	*Weight,        /* Weight[i]  = current fraction of item i */
	**Freq,         /* Freq[x][c] = no. items of class c with outcome x */
	*ValFreq;       /* ValFreq[x] = no. items with att value v */

extern double
	*Gain,          /* Gain[a] = info gain by split on att a */
	*Info,          /* Info[a] = potential info from split on att a */
	*Bar,           /* Bar[a]  = best threshold for contin att a */
	*UnknownRate;   /* UnknownRate[a] = current unknown rate for att a */

extern char
	*Tested;        /* Tested[a] = true if att a already tested */

#endif

⌨️ 快捷键说明

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