// get an array of pitch probabilities for the feature array batch public float[][] predictBatchProb(float[][] featureBatch) { float[][] tmp = new float[w2Dims[0]][]; foreach (float[] features in featureBatch) { tmp.Append(predictProb(features)); } return(tmp); }