本文整理汇总了C#中VectorGaussian.GetLength方法的典型用法代码示例。如果您正苦于以下问题:C# VectorGaussian.GetLength方法的具体用法?C# VectorGaussian.GetLength怎么用?C# VectorGaussian.GetLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VectorGaussian
的用法示例。
在下文中一共展示了VectorGaussian.GetLength方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Test_BPMIncremental
private static void Test_BPMIncremental(
int nClass, int totalFeatures, double noisePrec, int maxItemsInBatch,
int nChunks, string trainingFile, Vector[] testData)
{
Console.WriteLine("\n------- BPM Train Incremental -------");
VectorGaussian[] wInfer = new VectorGaussian[nClass];
BPM bpmIncremental = new BPM(nClass, totalFeatures, noisePrec);
bpmIncremental.TrainingEngine.ShowProgress = false;
bpmIncremental.TestEngine.ShowProgress = false;
int LocToStart = 0;
for (int c = 0; c < nChunks; c++)
{
List<Vector>[] dataChunks = DataFromFile.Read(trainingFile, nClass, maxItemsInBatch, ref LocToStart);
wInfer = bpmIncremental.TrainIncremental(dataChunks);
}
#if ShowWeights
for (int i = 0; i < wInfer.GetLength(0); i++)
{
Console.WriteLine(wInfer[i].ToString());
}
#endif
Console.WriteLine("\nPredictions:");
Discrete[] predictions = bpmIncremental.Test(testData);
foreach (Discrete pred in predictions)
Console.WriteLine(pred);
Console.WriteLine();
}
示例2: Test_BPM_Shared
private static void Test_BPM_Shared(int nClass, int totalFeatures, double noisePrec, int maxItemsInBatch, int nChunks, string trainingFile, Vector[] testData)
{
Console.WriteLine("\n------- BPM Shared -------");
VectorGaussian[] wInfer = new VectorGaussian[nClass];
BPM_Shared bpmShared = new BPM_Shared(nClass, totalFeatures, noisePrec, nChunks, 1);
bpmShared.TrainingEngine.ShowProgress = false;
bpmShared.TestEngine.ShowProgress = false;
// Several passes to achieve convergence
for (int pass = 0; pass < 15; pass++)
{
int LocToStart = 0;
// Loop over chunks
for (int c = 0; c < nChunks; c++)
{
List<Vector>[] dataChunks = DataFromFile.Read(trainingFile, nClass, maxItemsInBatch, ref LocToStart);
wInfer = bpmShared.Train(dataChunks, c);
}
}
#if ShowWeights
for (int i = 0; i < wInfer.GetLength(0); i++)
{
Console.WriteLine(wInfer[i]);
}
#endif
Console.WriteLine("\nPredictions:");
Discrete[] predictions = bpmShared.Test(testData, 0);
foreach (Discrete pred in predictions)
Console.WriteLine(pred);
Console.WriteLine();
}