meanfield.h
来自「The package includes 3 Matlab-interfaces」· C头文件 代码 · 共 35 行
H
35 行
#include "InferenceAlgorithm.h"#include <math.h>#ifndef __MEAN_FIELD__#define __MEAN_FIELD__class MeanField : public InferenceAlgorithm { /** This class makes inference using mean-field approximation Part of the c_inference package @version November 2004 @author Talya Meltzer */ public: // ctor MeanField(MRF const* mrf, int maxIter = 2000, double th = pow(10.,-8)) : InferenceAlgorithm(mrf), mf_maxIter(maxIter), mf_th(th) {} virtual ~MeanField() {} // dtor virtual double** inference(int* converged); protected: int mf_maxIter; // maximum number of iterations in inference double mf_th; // threshold for convergence };#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?