我是机器学习的新手,我读过关于机器学习的文章,但我仍然有几个问题:
- I know that there are three problems in a HMM (ForwardBackward, Baum-Welch, and Viterbi), but what should I do with my data?
- number of states
- Probability Distribution Function factory
- Constructor Description: Creates a new HMM. Each state has the same pi value and the transition probabilities are all equal. Parameters: nbStates The (strictly positive) number of states of the HMM. opdfFactory A pdf generator that is used to build the pdfs associated to each state.
这是用来做什么的?我该怎么用呢?
谢谢
发布于 2013-03-21 17:12:49
您必须以某种方式建模和学习初始的、发送的和转移的概率,以便它们代表您的数据。在离散分布且变量/状态不多的情况下,可以通过极大似然拟合得到它们,或者训练一个判别分类器,给出像随机森林或朴素Bayes这样的概率估计。对于连续分布,请查看高斯过程或任何其他回归方法,如高斯混合模型或回归林。
关于你的第二和第三条问题:它们是一般的和模糊的,在这里需要回答。请参阅以下书籍:毕晓普的“模式识别和机器学习”和科勒/弗里德曼的“概率图形模型”。
https://stackoverflow.com/questions/15553664
复制相似问题