Implements classification using a probit Bayes Point Machine.
예제 #1
0
파일: Form1.cs 프로젝트: xornand/Infer.Net
		public void ReadData()
		{
			data = ReadVectors(folder + "Features.txt");
			Normalize(data);
			int nFeatures = data[0].Count;
			bpm = new BayesPointMachine(nFeatures, 0.01);
		}
예제 #2
0
파일: Form1.cs 프로젝트: zouwuhe/infer
        public void ReadData()
        {
            data = ReadVectors(folder + "Features.txt");
            Normalize(data);
            int nFeatures = data[0].Count;

            bpm = new BayesPointMachine(nFeatures, 0.01);
        }