Calculate Comirva GaussianComponent Class' weight
I am writing an audio recognition program. How can I find double array's weights in Java? I am using comirva.audio.util.gmm.GaussianComponent
. To create Gaussi开发者_开发技巧anComponent
object, I have to find the weights.
before creating a gmm you have to initialize it. so you'll use the kmeansClustering (you found it on comirva too,) and this will give you the weight, the mean, and the covariance of each cluster . . so a cluster represent a gaussian component & god help u.
精彩评论