gconfsearch.h

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

H
36
字号
#ifndef __GCONFSEARCH_H__#define __GCONFSEARCH_H__#include "GSearch.h"class GStringHeap;class GAVLTree;class GMatrix;// This is still an experimental algorithm. It's designed to search complex// hypersurfaces by optimizing between exploration and exploitation using// the intersection of Gaussians extending from known points as a guideclass GConfidenceSearch : public GRealVectorSearch{protected:	int m_nDimensions;	GStringHeap* m_pHeap;	GAVLTree* m_pPriorityQueue;	GMatrix* m_pMatrix;	double m_dThoroughness;public:	GConfidenceSearch(GRealVectorCritic* pCritic, double dMin, double dRange, double dThoroughness);	~GConfidenceSearch();	void Iterate();protected:	double* AddPoint(double* pPoint);	double MeasureDistanceSquared(double* pPoint1, double* pPoint2);	void AddSearchArea(double** ppNeighbors);	double ComputeOptimisticSearchPointError(double* pSearchPoint, double* pNeighbor);};#endif // __GCONFSEARCH_H__

⌨️ 快捷键说明

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