我想知道是否有人知道一个实现MLE来估计Dirichlet分布参数的python包。
最佳答案
Eric Suh有一个软件包here。
$ pip install git+https://github.com/ericsuh/dirichlet.git
然后:
import numpy
import dirichlet
a0 = numpy.array([100, 299, 100])
D0 = numpy.random.dirichlet(a0, 1000)
dirichlet.mle(D0)
关于python - Python软件包:用于Dirichlet分发的MLE,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29108612/