-
Hi, I'm a beginner of Infer.NET. I've got a problem when trying to model a multinomial distribution with Infer.NET: I cannot find multinomial distribution neither in Infer.Distributions nor in any documents. Is multinomial distribution not a built-in one? If not, it seems I have to manully realize...
-
Hi Laura You could make the Dirichlet itself a variable. For example: Variable < Dirichlet > vPrior = Variable .Observed< Dirichlet >( Dirichlet .Uniform(1)); Variable < Vector > vocabDistr = Variable < Vector >.Random(vPrior); Then, when you're ready to infer, set the observed...